RPTDSH20 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report creates an overview of daily work schedules that reflect certain criteria...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 RPTDSH20 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: MOTPR = Personnel subarea grouping
Selection Text: TPROG = Daily work schedule
Title: Daily Work Schedule
Text Symbol: 001 = Selection
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
VIEW_MAINTENANCE_CALL CALL FUNCTION 'VIEW_MAINTENANCE_CALL' EXPORTING ACTION = 'S' VIEW_NAME = 'V_T550A' COMPLEX_SELCONDS_USED = 'X' "XAYP30K127599 TABLES DBA_SELLIST = DBA_SELLIST EXCL_CUA_FUNCT = EXCL_CUAFUNCT.
VIEW_RANGETAB_TO_SELLIST CALL FUNCTION 'VIEW_RANGETAB_TO_SELLIST' "XAYP30K127599 EXPORTING "XAYP30K127599 FIELDNAME = 'MOTPR' "XAYP30K127599 TABLES "XAYP30K127599 SELLIST = dba_sellist "XAYP30K127599 RANGETAB = motpr "XAYP30K127599 EXCEPTIONS "XAYP30K127599 OTHERS = 1. "XAYP30K127599
VIEW_RANGETAB_TO_SELLIST CALL FUNCTION 'VIEW_RANGETAB_TO_SELLIST' "XAYP30K127599 EXPORTING "XAYP30K127599 FIELDNAME = 'TPROG' "XAYP30K127599 APPEND_CONJUNCTION = 'AND' "XAYP30K127599 TABLES "XAYP30K127599 SELLIST = dba_sellist "XAYP30K127599 RANGETAB = tprog "XAYP30K127599 EXCEPTIONS "XAYP30K127599 OTHERS = 1. "XAYP30K127599
HELP_VALUES_GET CALL FUNCTION 'HELP_VALUES_GET' EXPORTING FIELDNAME = 'TPROG' TABNAME = 'T550A' IMPORTING SELECT_VALUE = TPROG SELECT_INDEX = INDEX EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.