SAP Reports / Programs

EFG_RESOLVE_LINKS SAP ABAP Report - Print Workbench: Replacement of Links with Originals







EFG_RESOLVE_LINKS 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_RESOLVE_LINKS 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_RESOLVE_LINKS. "Basic submit
SUBMIT EFG_RESOLVE_LINKS AND RETURN. "Return to original report after report execution complete
SUBMIT EFG_RESOLVE_LINKS 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_CONF = Confirmation Dialog Box
Selection Text: P_TRANSP = Create Transport Requests
Selection Text: SO_FKEY = Link/Application Form
Title: Print Workbench: Replacement of Links with Originals
Text Symbol: F01 = Application Form
Text Symbol: T01 = Resolve Links
Text Symbol: T02 = Link
Text Symbol: T03 = Description


INCLUDES used within this REPORT EFG_RESOLVE_LINKS

No INCLUDES are used within this REPORT code!


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 = sy-mandt x_no_links = '' x_tab_rng_formkey = l_tab_rng_fkey TABLES yt_efrm = l_tab_efrm EXCEPTIONS OTHERS = 0.

EFG_DB_FORM_SELECT CALL FUNCTION 'EFG_DB_FORM_SELECT' EXPORTING x_client = l_str_efrm-client x_formkey = l_str_efrm-formkey x_no_formclass = 'X' x_flg_get_link = '' IMPORTING y_form = l_form EXCEPTIONS not_qualified = 1 not_found = 2 failed = 3 OTHERS = 4.

EFG_FORM_TRANSPORT CALL FUNCTION 'EFG_FORM_TRANSPORT' EXPORTING x_formkey = l_str_efrm-formkey x_request = l_request EXCEPTIONS not_qualified = 1 cancelled = 2 failed = 3 OTHERS = 4.

EFG_DB_FORM_UPDATE CALL FUNCTION 'EFG_DB_FORM_UPDATE' EXPORTING x_form = l_form x_upd_mode = 'I'.

EFG_SELECTION_LISTX CALL FUNCTION 'EFG_SELECTION_LISTX' EXPORTING x_title = text-t01 x_popup = 'X' x_select_mode = 'M' x_str_header = l_str_header TABLES t_selectlist = l_tab_sellist EXCEPTIONS cancelled = 1 OTHERS = 2.

EFG_TRANSPORT_OBJ CALL FUNCTION 'EFG_TRANSPORT_OBJ' EXPORTING i_objtype = con_objtype_formkey i_flg_automatic_transport = '' i_flg_no_dialog = '' IMPORTING e_request = c_request EXCEPTIONS cancelled = 1 failed = 2 OTHERS = 3.



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_RESOLVE_LINKS or its description.