SAP RS_EU_CROSSREF_LIST Function Module for









RS_EU_CROSSREF_LIST is a standard rs eu crossref list SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 rs eu crossref list FM, simply by entering the name RS_EU_CROSSREF_LIST into the relevant SAP transaction such as SE37 or SE38.

Function Group: SEUA
Program Name: SAPLSEUA
Main Program: SAPLSEUA
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RS_EU_CROSSREF_LIST 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 'RS_EU_CROSSREF_LIST'"
EXPORTING
I_FIND_OBJ_CLS = "Class of objects to be searched
* I_SCOPE_OBJ_CLS = "Object class of search area
* I_FINDSTRING = "Search string
* MONITOR_ACTIVATION = 'X' "
* TITEL = "
* IS_BATCH_MODE_SAVE_LIST = ' ' "
* IS_BATCH_MODE_SEND_END_MASSAGE = ' ' "

IMPORTING
O_FCODE = "Last function code

TABLES
I_FOUNDS = "Table of usages to be displayed
* I_SCOPE_OBJECT_CLS = "
* I_FINDSTRINGS = "Table of objects selected in list

EXCEPTIONS
NOT_FOUND = 1 OBJECT_NOT_EXIST = 2
.



IMPORTING Parameters details for RS_EU_CROSSREF_LIST

I_FIND_OBJ_CLS - Class of objects to be searched

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

I_SCOPE_OBJ_CLS - Object class of search area

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

I_FINDSTRING - Search string

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

MONITOR_ACTIVATION -

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

TITEL -

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

IS_BATCH_MODE_SAVE_LIST -

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

IS_BATCH_MODE_SEND_END_MASSAGE -

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

EXPORTING Parameters details for RS_EU_CROSSREF_LIST

O_FCODE - Last function code

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

TABLES Parameters details for RS_EU_CROSSREF_LIST

I_FOUNDS - Table of usages to be displayed

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

I_SCOPE_OBJECT_CLS -

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

I_FINDSTRINGS - Table of objects selected in list

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

EXCEPTIONS details

NOT_FOUND -

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

OBJECT_NOT_EXIST -

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

Copy and paste ABAP code example for RS_EU_CROSSREF_LIST 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_o_fcode  TYPE SY-TCODE, "   
lt_i_founds  TYPE STANDARD TABLE OF RSFINDLST, "   
lv_not_found  TYPE RSFINDLST, "   
lv_i_find_obj_cls  TYPE EUOBJ-ID, "   
lv_i_scope_obj_cls  TYPE EUOBJ-ID, "   
lv_object_not_exist  TYPE EUOBJ, "   
lt_i_scope_object_cls  TYPE STANDARD TABLE OF EUOBJ, "   
lv_i_findstring  TYPE EUOBJ, "   
lt_i_findstrings  TYPE STANDARD TABLE OF RSFIND, "   
lv_monitor_activation  TYPE RSFIND, "   'X'
lv_titel  TYPE RSFIND, "   
lv_is_batch_mode_save_list  TYPE RSFIND, "   ' '
lv_is_batch_mode_send_end_massage  TYPE RSFIND. "   ' '

  CALL FUNCTION 'RS_EU_CROSSREF_LIST'  "
    EXPORTING
         I_FIND_OBJ_CLS = lv_i_find_obj_cls
         I_SCOPE_OBJ_CLS = lv_i_scope_obj_cls
         I_FINDSTRING = lv_i_findstring
         MONITOR_ACTIVATION = lv_monitor_activation
         TITEL = lv_titel
         IS_BATCH_MODE_SAVE_LIST = lv_is_batch_mode_save_list
         IS_BATCH_MODE_SEND_END_MASSAGE = lv_is_batch_mode_send_end_massage
    IMPORTING
         O_FCODE = lv_o_fcode
    TABLES
         I_FOUNDS = lt_i_founds
         I_SCOPE_OBJECT_CLS = lt_i_scope_object_cls
         I_FINDSTRINGS = lt_i_findstrings
    EXCEPTIONS
        NOT_FOUND = 1
        OBJECT_NOT_EXIST = 2
. " RS_EU_CROSSREF_LIST




ABAP code using 7.40 inline data declarations to call FM RS_EU_CROSSREF_LIST

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 TCODE FROM SY INTO @DATA(ld_o_fcode).
 
 
 
"SELECT single ID FROM EUOBJ INTO @DATA(ld_i_find_obj_cls).
 
"SELECT single ID FROM EUOBJ INTO @DATA(ld_i_scope_obj_cls).
 
 
 
 
 
DATA(ld_monitor_activation) = 'X'.
 
 
DATA(ld_is_batch_mode_save_list) = ' '.
 
DATA(ld_is_batch_mode_send_end_massage) = ' '.
 


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!