PL1DFUAP 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 PL1DFUAP 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.
Title: Include PL1DFUAP
INCLUDE PL1DFUAP_CE IF FOUND.
No SAP DATABASE tables are accessed within this REPORT code!
SDIXML_DOM_TO_SCREEN CALL FUNCTION 'SDIXML_DOM_TO_SCREEN' EXPORTING document = lo_ixml_document.
HR_99S_COPY_STRUC1_STRUC2 CALL FUNCTION 'HR_99S_COPY_STRUC1_STRUC2' EXPORTING p_struct1 =
-data IMPORTING p_struct2 = .
HR_99S_COPY_STRUC1_STRUC2 CALL FUNCTION 'HR_99S_COPY_STRUC1_STRUC2' EXPORTING p_struct1 =
-data IMPORTING p_struct2 = .
SCP_CODEPAGE_BY_EXTERNAL_NAME CALL FUNCTION 'SCP_CODEPAGE_BY_EXTERNAL_NAME' EXPORTING external_name = 'windows-1251' IMPORTING sap_codepage = lv_codepage EXCEPTIONS not_found = 1 OTHERS = 2.
HR_PAD_UA_GUI_DOWNLOAD CALL FUNCTION 'HR_PAD_UA_GUI_DOWNLOAD' EXPORTING filename = ip_file_name filetype = gc_dbf append = ' ' codepage = lv_codepage2 TABLES data_tab =
fieldnames = lt_fieldnames EXCEPTIONS file_write_error = 1 no_batch = 2 gui_refuse_filetransfer = 3 invalid_type = 4 no_authority = 5 unknown_error = 6 header_not_allowed = 7 separator_not_allowed = 8 filesize_not_allowed = 9 header_too_long = 10 dp_error_create = 11 dp_error_send = 12 dp_error_write = 13 unknown_dp_error = 14 access_denied = 15 dp_out_of_memory = 16 disk_full = 17 dp_timeout = 18 file_not_found = 19 dataprovider_exception = 20 control_flush_error = 21 OTHERS = 22.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = ip_strucrure CHANGING ct_fieldcat = lt_fieldcat[] EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name =
-structname CHANGING ct_fieldcat = lt_fieldcat[] EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = lv_currentreport it_fieldcat = lt_fieldcat is_layout = ls_layout i_callback_user_command = 'USER_COMMAND' i_callback_pf_status_set = 'SET_PF_STATUS' * i_structure_name =
-structname i_save = 'A' TABLES t_outtab = EXCEPTIONS program_error = 1 OTHERS = 2.
HR_99S_COPY_STRUC1_STRUC2 CALL FUNCTION 'HR_99S_COPY_STRUC1_STRUC2' EXPORTING p_struct1 =
-data IMPORTING p_struct2 = .
HR_99S_COPY_TABLE1_TABLE2 CALL FUNCTION 'HR_99S_COPY_TABLE1_TABLE2' EXPORTING TABLE1 = IT_TABLE TABLES TABLE2 = CT_TABLE .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.