RPDFLSD0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use program RPDFLSD0 to display a clear overview of a schema, which will run several times in payroll for the various fictitious runs of a
If you would like to execute this report or see the full code listing simply enter RPDFLSD0 into the relevant SAP transactions such as SE38 or SE80
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.
Selection Text: P_5D0I = Display Wage Type Assignment
Selection Text: P_COLS = Col. Width per Fict. Run
Selection Text: P_FLST = Fictitious Run Control
Selection Text: P_NOTEXT = Multicolumn Display
Selection Text: P_ROWS = No. of Fictit. Runs per Page
Selection Text: P_SCHEMA = Schema To Be Displayed
Selection Text: P_STAND = Use standard schema
Selection Text: P_TEXT = One-Column Display with Texts
Title: Overview Display for Fictitious Runs
Text Symbol: B01 = Selection of Fict.Runs
Text Symbol: B02 = Output Options
Text Symbol: E01 = Schema
Text Symbol: E02 = Does Not Exist
Text Symbol: E03 = Schema
Text Symbol: E04 = Does Not Use Fictitious Run Control
Text Symbol: E05 = Fictit. Run Control
Text Symbol: E06 = Does Not Exist
Text Symbol: T01 = Schema:
Text Symbol: T02 = Fictit. Run Control:
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'SCHEM' dynpprog = l_repid dynpnr = l_dynnr dynprofield = 'P_SCHEMA' value_org = 'S' tables value_tab = gt_schemen exceptions parameter_error = 1 no_values_found = 2 others = 3.
AUTHORITY_CHECK_TCODE call function 'AUTHORITY_CHECK_TCODE' "c exporting tcode = 'PE01' exceptions ok = 1 not_ok = 2 others = 3.
AUTHORITY_CHECK_TCODE call function 'AUTHORITY_CHECK_TCODE' "c exporting tcode = 'PE02' exceptions ok = 1 not_ok = 2 others = 3.
GET_PRINT_PARAMETERS call function 'GET_PRINT_PARAMETERS' exporting line_size = g_linesize line_count = 80 importing out_parameters = pripar out_archive_parameters = arcpar valid = l_valid exceptions others = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.