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

EFG_CREATE_LINKS SAP ABAP Report - Create Links (Mass Creation)







EFG_CREATE_LINKS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The program creates links in the system from any clients to any other clients...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter EFG_CREATE_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_CREATE_LINKS. "Basic submit
SUBMIT EFG_CREATE_LINKS AND RETURN. "Return to original report after report execution complete
SUBMIT EFG_CREATE_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_DEL = Generic Deletion of Targt Area
Selection Text: P_DLG = Dialog for Overwrite
Selection Text: P_SOURCE = Client with Application Forms
Selection Text: R_TARG = Client for Links
Selection Text: R_FKEY = D .
Title: Create Links (Mass Creation)
Text Symbol: 001 = No Application Forms Found
Text Symbol: 002 = Target Client Specification Incorrect
Text Symbol: H01 = Client
Text Symbol: H02 = Name
Text Symbol: H03 = Description
Text Symbol: O10 = Application Form
Text Symbol: O11 = Link
Text Symbol: S11 = &1 application forms selected from client &2
Text Symbol: T01 = Create Links
Text Symbol: T05 = Following objects will be overwritten or deleted


INCLUDES used within this REPORT EFG_CREATE_LINKS

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_source x_no_links = 'X' TABLES yt_efrm = l_tab_efrmsrc EXCEPTIONS not_found = 1 OTHERS = 3.

EFG_DB_FORM_SELECT CALL FUNCTION 'EFG_DB_FORM_SELECT' EXPORTING x_client = l_str_t000-mandt x_formkey = l_str_efrm-formkey x_actual = 'X' x_no_formclass = 'X' x_flg_get_link = '' x_flg_only_header = 'X' IMPORTING * Y_FORM = y_efrm = l_str_efrmtarg * Y_FLG_LINK = * y_formlog = exceptions not_qualified = 1 not_found = 2 failed = 3 OTHERS = 4.

EFG_DB_EFRM_CLIENT_SELECT CALL FUNCTION 'EFG_DB_EFRM_CLIENT_SELECT' EXPORTING x_client = l_str_t000-mandt * X_ACTUAL = x_langu = sy-langu * X_NO_LINKS = x_tab_rng_formkey = l_tab_rng_fkey[] * X_TAB_RNG_FORMCLASS = * x_tab_rng_formtype = tables yt_efrm = l_tab_efrmdel EXCEPTIONS not_found = 1 OTHERS = 2.

EFG_DB_FORM_DELETE CALL FUNCTION 'EFG_DB_FORM_DELETE' EXPORTING x_formkey = l_str_efrm-formkey x_client = l_str_efrm-client.

EFG_DB_FORM_DELETE CALL FUNCTION 'EFG_DB_FORM_DELETE' EXPORTING x_formkey = l_str_efrm-formkey x_client = l_str_efrm-client.

EFG_DB_FORM_CREATE_LINK CALL FUNCTION 'EFG_DB_FORM_CREATE_LINK' EXPORTING x_client_from = l_str_efrm-client x_client_to = p_source x_formkey = l_str_efrm-formkey x_flg_overwrite = '' IMPORTING y_msg = l_msg EXCEPTIONS not_qualified = 1 not_found = 2 failed = 3 existing = 4 OTHERS = 5.

EFG_SELECTION_LISTX CALL FUNCTION 'EFG_SELECTION_LISTX' EXPORTING x_title = text-t01 * X_POPUP = 'X' x_select_mode = 'M' * X_HOTSPOT = x_comment1 = text-t05 * X_COMMENT2 = x_suppress_type = '' x_suppress_key = '' x_str_header = l_str_header x_flg_alv = 'X' * IMPORTING * Y_SELECTIND = TABLES t_selectlist = l_tab_sellist EXCEPTIONS cancelled = 1 OTHERS = 2.



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