PDC_GM_CUST_OUTBOUND_F01 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 PDC_GM_CUST_OUTBOUND_F01 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 PDC_GM_CUST_OUTBOUND_F01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SRS_PDC_APPLICATION_LOG CALL FUNCTION 'SRS_PDC_APPLICATION_LOG' " EXPORTING " * PLANT = " appl_object = 'W_SRS' " appl_subobject = 'PDC_GM' " srs_app_log_id = 'U' " log_message = px_s_balmi " appl_insert = 'I' " EXCEPTIONS " error = 1 " OTHERS = 2. "
SRS_PDC_APPLICATION_LOG CALL FUNCTION 'SRS_PDC_APPLICATION_LOG' " EXPORTING " * PLANT = " appl_object = 'W_SRS' " appl_subobject = 'PDC_GM' " srs_app_log_id = 'U' " log_message = px_s_balmi " appl_insert = 'I' " EXCEPTIONS " error = 1 " OTHERS = 2. "
SRS_PDC_APPLICATION_LOG * CALL FUNCTION 'SRS_PDC_APPLICATION_LOG' " * EXPORTING " ** PLANT = " * APPL_OBJECT = 'W_SRS' " * APPL_SUBOBJECT = 'PDC_GM' " * SRS_APP_LOG_ID = 'U' " * LOG_MESSAGE = PX_S_BALMI " * APPL_INSERT = 'I' " * EXCEPTIONS " * ERROR = 1 " * OTHERS = 2. "
APPL_LOG_INIT CALL FUNCTION 'APPL_LOG_INIT' EXPORTING object = g_c_application subobject = g_c_subobject EXCEPTIONS object_not_found = 01 subobject_not_found = 02.
APPL_LOG_WRITE_HEADER CALL FUNCTION 'APPL_LOG_WRITE_HEADER' EXPORTING header = pe_s_log_header EXCEPTIONS object_not_found = 01 subobject_not_found = 02.
APPL_LOG_WRITE_DB CALL FUNCTION 'APPL_LOG_WRITE_DB' EXPORTING object = g_c_application subobject = g_c_subobject TABLES object_with_lognumber = t_balnri EXCEPTIONS object_not_found = 1 subobject_not_found = 2 internal_error = 3 OTHERS = 4.
SRS_PDC_APPLICATION_LOG CALL FUNCTION 'SRS_PDC_APPLICATION_LOG' EXPORTING * PLANT = appl_object = g_c_application appl_subobject = g_c_subobject * EXTNUMBER = srs_app_log_id = 'U' log_message = i_s_log_message appl_insert = i_c_insert EXCEPTIONS error = 1 OTHERS = 2.
APPL_LOG_WRITE_SINGLE_MESSAGE * CALL FUNCTION 'APPL_LOG_WRITE_SINGLE_MESSAGE' * EXPORTING * OBJECT = G_C_APPLICATION * SUBOBJECT = G_C_SUBOBJECT * MESSAGE = I_S_LOG_MESSAGE * update_or_insert = I_C_INSERT * EXCEPTIONS * object_not_found = 01 * subobject_not_found = 02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.