SAP Reports / Programs | Cross-Application Components | General Application Functions | Print Workbench(CA-GTF-PWB) SAP CA

EFG_EXECUTE_TRANSPORT_METHODS SAP ABAP Report - Print Workbench: Execute Before Export/After Import Methods







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT EFG_EXECUTE_TRANSPORT_METHODS. "Basic submit
SUBMIT EFG_EXECUTE_TRANSPORT_METHODS AND RETURN. "Return to original report after report execution complete
SUBMIT EFG_EXECUTE_TRANSPORT_METHODS VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT EFG_EXECUTE_TRANSPORT_METHODS

INCLUDE EFG_GEN.
INCLUDE EFG_MSGX.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name EFG_EXECUTE_TRANSPORT_METHODS or its description.