RPLERODA 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 RPLERODA 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!
HR_DISPLAY_ERROR_LIST * call function 'HR_DISPLAY_ERROR_LIST'.
HR_DISPLAY_ERROR_LIST * call function 'HR_DISPLAY_ERROR_LIST' * exporting * no_popup = 'X' * no_print = ' '.
OPEN_FORM call function 'OPEN_FORM' exporting dialog = ' ' form = form options = printoptions exceptions canceled = 1 device = 2 form = 3 options = 4 unclosed = 5 mail_options = 6 archive_error = 7 invalid_fax_number = 8 more_params_needed_in_batch = 9 others = 10.
CLOSE_FORM call function 'CLOSE_FORM' importing result = spool exceptions unopened = 1 bad_pageformat_for_print = 2 send_error = 3 others = 4.
WRITE_FORM call function 'WRITE_FORM' exporting element = element exceptions element = 1 function = 2 type = 3 unopened = 4 unstarted = 5 window = 6 bad_pageformat_for_print = 7 others = 8.
FP_FUNCTION_MODULE_NAME call function 'FP_FUNCTION_MODULE_NAME' exporting i_name = $form_name importing e_funcname = g_fb_name.
H99B_OPEN_LFORM_JOB call function 'H99B_OPEN_LFORM_JOB' exporting i_molga = molga_de i_fogroup = 'HR_DE_G131' i_folname = $form_name i_fotype = $form_type dialog = space options = printoptions exceptions fotype_invalid = 1 others = 2.
H99B_CLOSE_LFORM_JOB call function 'H99B_CLOSE_LFORM_JOB' exceptions fotype_invalid = 1 others = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.