SAP REPOSITORY_F4_SH_EXIT_RFC Function Module for Repository Info System F4









REPOSITORY_F4_SH_EXIT_RFC is a standard repository f4 sh exit rfc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Repository Info System F4 processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for repository f4 sh exit rfc FM, simply by entering the name REPOSITORY_F4_SH_EXIT_RFC into the relevant SAP transaction such as SE37 or SE38.

Function Group: SMUD_RFC_SH_EXIT_API
Program Name: SAPLSMUD_RFC_SH_EXIT_API
Main Program: SAPLSMUD_RFC_SH_EXIT_API
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function REPOSITORY_F4_SH_EXIT_RFC pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'REPOSITORY_F4_SH_EXIT_RFC'"Repository Info System F4
EXPORTING
IV_OBJTYPE = "
* IV_SELECT_ALL_FIELDS = 'X' "
IT_SELECTION_PARAMS = "
* IV_VARIANT = "Variant name
* IV_LIMIT = "max. entries that ar read

IMPORTING
EV_STRUCINF = "

TABLES
ET_RECORD_TAB = "

EXCEPTIONS
WRONG_TYPE = 1
.



IMPORTING Parameters details for REPOSITORY_F4_SH_EXIT_RFC

IV_OBJTYPE -

Data type: EUOBJ-ID
Optional: No
Call by Reference: No ( called with pass by value option)

IV_SELECT_ALL_FIELDS -

Data type: FLAG
Default: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)

IT_SELECTION_PARAMS -

Data type: RSPARAMS_TT
Optional: No
Call by Reference: No ( called with pass by value option)

IV_VARIANT - Variant name

Data type: RSVAR-VARIANT
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_LIMIT - max. entries that ar read

Data type: I
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for REPOSITORY_F4_SH_EXIT_RFC

EV_STRUCINF -

Data type: DD02L-TABNAME
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for REPOSITORY_F4_SH_EXIT_RFC

ET_RECORD_TAB -

Data type: SEAHLPRES
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

WRONG_TYPE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for REPOSITORY_F4_SH_EXIT_RFC Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_iv_objtype  TYPE EUOBJ-ID, "   
lv_wrong_type  TYPE EUOBJ, "   
lv_ev_strucinf  TYPE DD02L-TABNAME, "   
lt_et_record_tab  TYPE STANDARD TABLE OF SEAHLPRES, "   
lv_iv_select_all_fields  TYPE FLAG, "   'X'
lv_it_selection_params  TYPE RSPARAMS_TT, "   
lv_iv_variant  TYPE RSVAR-VARIANT, "   
lv_iv_limit  TYPE I. "   

  CALL FUNCTION 'REPOSITORY_F4_SH_EXIT_RFC'  "Repository Info System F4
    EXPORTING
         IV_OBJTYPE = lv_iv_objtype
         IV_SELECT_ALL_FIELDS = lv_iv_select_all_fields
         IT_SELECTION_PARAMS = lv_it_selection_params
         IV_VARIANT = lv_iv_variant
         IV_LIMIT = lv_iv_limit
    IMPORTING
         EV_STRUCINF = lv_ev_strucinf
    TABLES
         ET_RECORD_TAB = lt_et_record_tab
    EXCEPTIONS
        WRONG_TYPE = 1
. " REPOSITORY_F4_SH_EXIT_RFC




ABAP code using 7.40 inline data declarations to call FM REPOSITORY_F4_SH_EXIT_RFC

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

"SELECT single ID FROM EUOBJ INTO @DATA(ld_iv_objtype).
 
 
"SELECT single TABNAME FROM DD02L INTO @DATA(ld_ev_strucinf).
 
 
DATA(ld_iv_select_all_fields) = 'X'.
 
 
"SELECT single VARIANT FROM RSVAR INTO @DATA(ld_iv_variant).
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!