PFO_TRCOMPLETE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program transports
If you would like to execute this report or see the full code listing simply enter PFO_TRCOMPLETE 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: P_CNTRL = Transport Control Tables
Selection Text: P_CUST = Transport Customizing
Title: PFO: Create Complete Transport Customizing
Text Symbol: 001 = Table &1 included in transport request
Text Symbol: 002 = Transport of Control Tables
Text Symbol: 003 = Transport of Customizing (Versioned)
Text Symbol: 004 = Table &1 included in transport request &2
Text Symbol: 005 = Unknown table &1
Text Symbol: 006 = Table &1 must not be transported (see Customizing settings)
Text Symbol: 007 = Transport of Customizing (Unversioned)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CACS_MAINTAIN_CHECK_CLIENT CALL FUNCTION 'CACS_MAINTAIN_CHECK_CLIENT' EXPORTING id_tabname = ls_table-tabname IMPORTING eb_transport = lb_transport EXCEPTIONS table_not_found = 1 OTHERS = 2.
PFO_CREATE_TR CALL FUNCTION 'PFO_CREATE_TR' EXPORTING id_tabname = ls_table-tabname CHANGING ct_e071k = lt_e071k EXCEPTIONS processing_error = 1 OTHERS = 2.
CACS_VTR_TRANSPORT_TABLE CALL FUNCTION 'CACS_VTR_TRANSPORT_TABLE' EXPORTING i_tabname = ls_table-tabname i_request = gd_request_customizing IMPORTING e_request = ld_request_tmp EXCEPTIONS failure = 1 OTHERS = 2.
PFO_CREATE_TR CALL FUNCTION 'PFO_CREATE_TR' EXPORTING id_tabname = ls_table-tabname IMPORTING ed_trkorr = ld_request_tmp CHANGING ct_e071k = lt_e071k EXCEPTIONS processing_error = 1 OTHERS = 2.
ENQUEUE_E_TABLEE CALL FUNCTION 'ENQUEUE_E_TABLEE' EXPORTING mode_rstable = 'E' tabname = ls_table-tabname varkey = ls_varkey EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_E_TABLEE CALL FUNCTION 'DEQUEUE_E_TABLEE' EXPORTING mode_rstable = 'E' tabname = ls_table-tabname varkey = ls_varkey.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
PFO_TRCOMPLETE - PFO: Create Complete Transport Customizing PFO_TRCOMPLETE - PFO: Create Complete Transport Customizing PFO_TEST_PM_INTERFACE - HR SE Employer contribution calculation PFO_TEST_PM_INTERFACE - HR SE Employer contribution calculation PFO_TEST_CREATE_OBJECT - Test Program for Generating Bus.Objects and Assigment Objects in PFO PFO_TEST_CREATE_OBJECT - Test Program for Generating Bus.Objects and Assigment Objects in PFO