EFG_EXECUTE_TRANSPORT_METHODS is a standard Executable ABAP Report 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 EFG_EXECUTE_TRANSPORT_METHODS 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_AIM = After Import Method
Selection Text: P_BEM = Before Export Method
Selection Text: P_CLT = Client
Selection Text: P_KORR = D Request/Task
Selection Text: R_FKEY = D Application Form
Title: Print Workbench: Execute Before Export/After Import Methods
INCLUDE EFG_GEN.
INCLUDE EFG_MSGX.
No SAP DATABASE tables are accessed within this REPORT code!
EFG_DB_EFRM_CLIENT_SELECT CALL FUNCTION 'EFG_DB_EFRM_CLIENT_SELECT' EXPORTING x_client = p_clt x_actual = 'X' * X_LANGU = SY-LANGU x_no_links = 'X' x_tab_rng_formkey = lr_tab_fkey[] * X_TAB_RNG_FORMCLASS = * X_TAB_RNG_FORMTYPE = TABLES yt_efrm = e_tab_efrm[] EXCEPTIONS not_found = 1 OTHERS = 2.
EFG_FORM_BEFORE_EXPORT_METHOD CALL FUNCTION 'EFG_FORM_BEFORE_EXPORT_METHOD' EXPORTING iv_client = p_clt TABLES tt_e071 = l_tab_e071 tt_e071k = l_tab_e071k e_tab_xmsg = l_tab_xmsg.
EFG_FORM_AFTER_IMPORT_METHOD CALL FUNCTION 'EFG_FORM_AFTER_IMPORT_METHOD' EXPORTING iv_tarclient = p_clt iv_is_upgrade = '' TABLES tt_e071 = l_tab_e071 tt_e071k = l_tab_e071k e_tab_xmsg = l_tab_xmsg.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
EFG_EXECUTE_TRANSPORT_METHODS - Print Workbench: Execute Before Export/After Import Methods EFG_EXECUTE_TRANSPORT_METHODS - Print Workbench: Execute Before Export/After Import Methods EFG_EMSG_REPLACE_PRINT - EFGEMSGREPLACEPRINT EFG_DOWNLOAD_SPOOLDATA - Print Workbench: Download of Spool Files EFG_DOWNLOAD_SPOOLDATA - Print Workbench: Download of Spool Files EFG_DOWNLOAD_DATATYPE - DDIC - Download Data Type as Flat File