RPCEUDIH is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RPCEUDIH 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
START_FORM CALL FUNCTION 'START_FORM' EXPORTING FORM = MODUL STARTPAGE = P_PAGE "'PAGE1' * language = sy-langu EXCEPTIONS FORM = 1 FORMAT = 2 UNENDED = 3 UNOPENED = 4 UNUSED = 5 OTHERS = 6.
WRITE_FORM CALL FUNCTION 'WRITE_FORM' * exporting * element = 'PAGE1' EXCEPTIONS OTHERS = 1.
END_FORM CALL FUNCTION 'END_FORM' EXCEPTIONS UNOPENED = 1 BAD_PAGEFORMAT_FOR_PRINT = 2 OTHERS = 3.
OPEN_FORM CALL FUNCTION 'OPEN_FORM' EXPORTING * APPLICATION = 'TX' * ARCHIVE_INDEX = ' ' * ARCHIVE_PARAMS = ' ' DEVICE = 'PRINTER' DIALOG = CHECK_BATCH * form = 'HR_IT_CUD' * LANGUAGE = SY-LANGU * OPTIONS = ' ' * MAIL_SENDER = ' ' * MAIL_RECIPIENT = ' ' * MAIL_APPL_OBJECT = ' ' * RAW_DATA_INTERFACE = '*' * IMPORTING * LANGUAGE = * NEW_ARCHIVE_PARAMS = * RESULT = EXCEPTIONS CANCELED = 1 DEVICE = 2 FORM = 3 OPTIONS = 4 UNCLOSED = 5 * MAIL_OPTIONS = 6 * ARCHIVE_ERROR = 7 * MORE_PARAMS_NEEDED_IN_BATCH = 8 OTHERS = 9 .
CLOSE_FORM CALL FUNCTION 'CLOSE_FORM' * IMPORTING * RESULT = * RDI_RESULT = * TABLES * OTFDATA = EXCEPTIONS UNOPENED = 1 * BAD_PAGEFORMAT_FOR_PRINT = 2 OTHERS = 3 .
START_FORM CALL FUNCTION 'START_FORM' EXPORTING * ARCHIVE_INDEX = ' ' FORM = MODUL * LANGUAGE = ' ' * STARTPAGE = ' ' * PROGRAM = ' ' * MAIL_APPL_OBJECT = ' ' * importing * LANGUAGE = EXCEPTIONS FORM = 1 FORMAT = 2 UNENDED = 3 UNOPENED = 4 UNUSED = 5 OTHERS = 6 .
END_FORM CALL FUNCTION 'END_FORM' * IMPORTING * RESULT = EXCEPTIONS UNOPENED = 1 * BAD_PAGEFORMAT_FOR_PRINT = 2 OTHERS = 3 .
WRITE_FORM CALL FUNCTION 'WRITE_FORM' EXPORTING * element = * FUNCTION = 'SET' * type = 'BODY' WINDOW = P_WINDOW_NAME * IMPORTING * PENDING_LINES = EXCEPTIONS * ELEMENT = 1 * FUNCTION = 2 * TYPE = 3 UNOPENED = 4 UNSTARTED = 5 WINDOW = 6 BAD_PAGEFORMAT_FOR_PRINT = 7 OTHERS = 8 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.