SAP RS_EU_CROSS_BATCH Function Module for
RS_EU_CROSS_BATCH is a standard rs eu cross batch 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 cross batch FM, simply by entering the name RS_EU_CROSS_BATCH into the relevant SAP transaction such as SE37 or SE38.
Function Group: SEUA
Program Name: SAPLSEUA
Main Program: SAPLSEUA
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RS_EU_CROSS_BATCH 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_CROSS_BATCH'".
EXPORTING
I_FIND_OBJ_CLS = "Class of objects to be searched
* CONTROL_STRING = "
* RESTRICT_SOURCE_STRING = "
* TABFIELDS_TOO = 'J' "
TABLES
I_FINDSTRINGS = "
* I_SCOPE_OBJECTS = "
* I_SCOPE_OBJECT_CLS = "
* DEVCLASS = "
* OBJKEY = "
* KEYWORDS = "
EXCEPTIONS
WRONG_TYPE = 1
IMPORTING Parameters details for RS_EU_CROSS_BATCH
I_FIND_OBJ_CLS - Class of objects to be searched
Data type: EUOBJ-IDOptional: No
Call by Reference: No ( called with pass by value option)
CONTROL_STRING -
Data type: SINFO_NAVIGATIONOptional: Yes
Call by Reference: No ( called with pass by value option)
RESTRICT_SOURCE_STRING -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
TABFIELDS_TOO -
Data type:Default: 'J'
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RS_EU_CROSS_BATCH
I_FINDSTRINGS -
Data type: RSFINDOptional: No
Call by Reference: No ( called with pass by value option)
I_SCOPE_OBJECTS -
Data type: RSFINDOptional: Yes
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)
DEVCLASS -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
OBJKEY -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
KEYWORDS -
Data type:Optional: Yes
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 RS_EU_CROSS_BATCH 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_wrong_type | TYPE STRING, " | |||
| lt_i_findstrings | TYPE STANDARD TABLE OF RSFIND, " | |||
| lv_i_find_obj_cls | TYPE EUOBJ-ID, " | |||
| lv_control_string | TYPE SINFO_NAVIGATION, " | |||
| lt_i_scope_objects | TYPE STANDARD TABLE OF RSFIND, " | |||
| lt_i_scope_object_cls | TYPE STANDARD TABLE OF RSFIND, " | |||
| lv_restrict_source_string | TYPE RSFIND, " | |||
| lt_devclass | TYPE STANDARD TABLE OF RSFIND, " | |||
| lv_tabfields_too | TYPE RSFIND, " 'J' | |||
| lt_objkey | TYPE STANDARD TABLE OF RSFIND, " | |||
| lt_keywords | TYPE STANDARD TABLE OF RSFIND. " |
|   CALL FUNCTION 'RS_EU_CROSS_BATCH' " |
| EXPORTING | ||
| I_FIND_OBJ_CLS | = lv_i_find_obj_cls | |
| CONTROL_STRING | = lv_control_string | |
| RESTRICT_SOURCE_STRING | = lv_restrict_source_string | |
| TABFIELDS_TOO | = lv_tabfields_too | |
| TABLES | ||
| I_FINDSTRINGS | = lt_i_findstrings | |
| I_SCOPE_OBJECTS | = lt_i_scope_objects | |
| I_SCOPE_OBJECT_CLS | = lt_i_scope_object_cls | |
| DEVCLASS | = lt_devclass | |
| OBJKEY | = lt_objkey | |
| KEYWORDS | = lt_keywords | |
| EXCEPTIONS | ||
| WRONG_TYPE = 1 | ||
| . " RS_EU_CROSS_BATCH | ||
ABAP code using 7.40 inline data declarations to call FM RS_EU_CROSS_BATCH
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_i_find_obj_cls). | ||||
| DATA(ld_tabfields_too) | = 'J'. | |||
Search for further information about these or an SAP related objects