SAP Reports / Programs

RPUTSVD2 SAP ABAP Report - Display of Contribution Statements for Reporting







RPUTSVD2 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report displays TemSe objects that were created by report RPCSVBD0 (SI Contribution Statement) or report RPCSVKD2 (Contribution Statement for Miners' Insurance) for the notification procedure...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RPUTSVD2 into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

PC00_M01_UTSVD2 - Display Contrib. Statemt Data by EDI


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT RPUTSVD2. "Basic submit
SUBMIT RPUTSVD2 AND RETURN. "Return to original report after report execution complete
SUBMIT RPUTSVD2 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: TSOBJ = Evaluation Data Contained In
Title: Display of Contribution Statements for Reporting
Text Symbol: E13 = Read Error in Dataset
Text Symbol: FR1 = Program selections
Text Symbol: N01 = 1000
Text Symbol: N02 = 2000
Text Symbol: N03 = 3000
Text Symbol: N04 = 6000
Text Symbol: N05 = 0100
Text Symbol: N06 = 0200
Text Symbol: N07 = 0300
Text Symbol: N08 = 0400
Text Symbol: N09 = 0500
Text Symbol: N10 = 0600
Text Symbol: N11 = 0010
Text Symbol: N12 = 0020
Text Symbol: N13 = 0001
Text Symbol: N14 = U1
Text Symbol: N15 = U2
Text Symbol: N16 = Of.
Text Symbol: N17 = 0050
Text Symbol: N18 = 1000 w/o SI Adj.
Text Symbol: N19 = 3000 w/o SI Adj.
Text Symbol: N20 = Vol. HI w/o SI Adj.
Text Symbol: U01 = EDI Payee Fund
Text Symbol: U02 = Employer
Text Symbol: U03 = Fund
Text Symbol: U05 = from
Text Symbol: U06 = to
Text Symbol: U07 = EDI Typ
Text Symbol: U10 = Employer
Text Symbol: U11 = HI Fund
Text Symbol: U12 = Indicator: Cont. Statement
Text Symbol: U13 = Contributions
Text Symbol: E12 = No List Authorization
Text Symbol: B01 = Personnel area
Text Symbol: B02 = Personnel subarea
Text Symbol: B03 = Company number





Text Symbol: B04 = HI Fund
Text Symbol: B05 = Branch office
Text Symbol: B06 = Company number
Text Symbol: B07 = Duration
Text Symbol: B08 = Correction
Text Symbol: B09 = DisrEvnt
Text Symbol: B10 = G/100
Text Symbol: B11 = H/200
Text Symbol: B12 = F/300
Text Symbol: B13 = P/006
Text Symbol: B14 = K/010
Text Symbol: B15 = L/020
Text Symbol: B16 = M/001
Text Symbol: B17 = 1/2K/030
Text Symbol: B18 = 1/2L/040
Text Symbol: B19 = 1/2M/002
Text Symbol: B20 = U1/000
Text Symbol: B21 = U2/000
Text Symbol: B22 = Total cost
Text Symbol: B23 = Voluntary HI
Text Symbol: B24 = Voluntary CI
Text Symbol: B25 = Refund S10 LFZG
Text Symbol: B26 = Paymt Amt/Credit
Text Symbol: B30 = Legal Area
Text Symbol: B31 = Account No.
Text Symbol: B32 = Pay.Office No
Text Symbol: B33 = Currcy
Text Symbol: B34 = Tax Number
Text Symbol: E01 = Enter Spool Number
Text Symbol: E03 = Limit Dataset, Many Records
Text Symbol: E08 = Spool Number Does Not Exist


INCLUDES used within this REPORT RPUTSVD2

INCLUDE RPCSV2D0. "DATENBESCHREIBUNG CLS


TABLES used within REPORT and the associated SELECT statement:

No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

RP_TS_HELPVIEW call function 'RP_TS_HELPVIEW' exporting repid = 'RPCSVGD0' importing tsobj = tsobj exceptions "VUUP40K003161 no_entries_found = 1 "! helpview_not_installed = 2 "! no_value_request_for_molga = 3 "! others = 0. "!

RP_TS_OPEN call function 'RP_TS_OPEN' exporting tsobj = tsobj empfg = 'RPCSVGD0' versn = space "YCTN1148020 importing "YCTN1148020 versn = g_ts_versn. " TemSe-Version "YCTN1148020

RSTS_READ





call function 'RSTS_READ' tables datatab = cls_temse_09 exceptions fb_call_handle = 01 fb_error = 02 fb_rsts_noconv = 03 fb_rsts_other = 04.

RSTS_READ call function 'RSTS_READ' " tables " datatab = cls_temse " exceptions " fb_call_handle = 01 " fb_error = 02 " fb_rsts_noconv = 03 " fb_rsts_other = 04. "

RSTS_READ call function 'RSTS_READ' tables datatab = cls_08 "QFLN1585445 exceptions fb_call_handle = 01 fb_error = 02 fb_rsts_noconv = 03 fb_rsts_other = 04.

RSTS_CLOSE call function 'RSTS_CLOSE' exceptions fb_call_handle = 01 fb_error = 02 fb_rsts_other = 03.

REUSE_ALV_GRID_DISPLAY call function 'REUSE_ALV_GRID_DISPLAY' exporting i_callback_program = sy-repid i_structure_name = c_alv_struc_main is_layout = l_layout it_fieldcat = p_feldtab[] it_events = p_eventtab[] tables t_outtab = alv_tab_main exceptions others = 1.

REUSE_ALV_EVENTS_GET call function 'REUSE_ALV_EVENTS_GET' exporting i_list_type = 0 importing et_events = p_eventtab[] exceptions others = 1.

REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' exporting i_structure_name = c_alv_struc_main changing ct_fieldcat = p_feldtab[] exceptions others = 1.

HR_APPEND_ALV call function 'HR_APPEND_ALV' exporting tables_and_infos = lt_append_alv_tab exceptions call_error = 1 others = 2.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.

The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RPUTSVD2 or its description.