SAP RS_INFOSYSTEM_CREATE_REQUEST Function Module for
RS_INFOSYSTEM_CREATE_REQUEST is a standard rs infosystem create request 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 infosystem create request FM, simply by entering the name RS_INFOSYSTEM_CREATE_REQUEST 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_INFOSYSTEM_CREATE_REQUEST 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_INFOSYSTEM_CREATE_REQUEST'".
EXPORTING
OBJTYPE = "
* FULL_NAME = "
ACTION = "
* SUPPRESS_SELECTION = "
* VARIANT = "
* SHOW_AS_POPUP = "
* APPLICATION_HIERARCHY = "
* FIRST = "
* EXTERN = "External infosystem call
* WITH_GENERATED_OBJECTS = ' ' "
IMPORTING
INFOSYSTEM_REQUEST = "
TABLES
* OBJLIST = "
* DEVCLASS = "
* OBJKEY = "
* I_SCOPE_OBJECT_CLS = "
* I_SCOPE_OBJECTS = "
* DEVCLASS_APPL_HIRA = "
* EDITOR_SOURCE = "ABAP Source
EXCEPTIONS
NOT_EXECUTED = 1 WRONG_TYPE = 2 BATCH = 3
IMPORTING Parameters details for RS_INFOSYSTEM_CREATE_REQUEST
OBJTYPE -
Data type: EUOBJ-IDOptional: No
Call by Reference: No ( called with pass by value option)
FULL_NAME -
Data type: STRINGOptional: Yes
Call by Reference: No ( called with pass by value option)
ACTION -
Data type: SEU_ACTIONOptional: No
Call by Reference: No ( called with pass by value option)
SUPPRESS_SELECTION -
Data type: SEU_BOOLOptional: Yes
Call by Reference: No ( called with pass by value option)
VARIANT -
Data type: RSVAR-VARIANTOptional: Yes
Call by Reference: No ( called with pass by value option)
SHOW_AS_POPUP -
Data type: SEU_BOOLOptional: Yes
Call by Reference: No ( called with pass by value option)
APPLICATION_HIERARCHY -
Data type: SEU_BOOLOptional: Yes
Call by Reference: No ( called with pass by value option)
FIRST -
Data type: SEU_BOOLOptional: Yes
Call by Reference: No ( called with pass by value option)
EXTERN - External infosystem call
Data type: SEU_BOOLOptional: Yes
Call by Reference: No ( called with pass by value option)
WITH_GENERATED_OBJECTS -
Data type: SEU_BOOLDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RS_INFOSYSTEM_CREATE_REQUEST
INFOSYSTEM_REQUEST -
Data type: CL_WB_REQUESTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RS_INFOSYSTEM_CREATE_REQUEST
OBJLIST -
Data type: RSFINDOptional: 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)
I_SCOPE_OBJECT_CLS -
Data type:Optional: Yes
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)
DEVCLASS_APPL_HIRA -
Data type: SINFO_DEVCLASSOptional: Yes
Call by Reference: Yes
EDITOR_SOURCE - ABAP Source
Data type: RSWSOURCETOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NOT_EXECUTED - Action canceled
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRONG_TYPE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
BATCH - Background job has been started
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RS_INFOSYSTEM_CREATE_REQUEST 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: | ||||
| lt_objlist | TYPE STANDARD TABLE OF RSFIND, " | |||
| lv_objtype | TYPE EUOBJ-ID, " | |||
| lv_not_executed | TYPE EUOBJ, " | |||
| lv_infosystem_request | TYPE CL_WB_REQUEST, " | |||
| lv_full_name | TYPE STRING, " | |||
| lv_action | TYPE SEU_ACTION, " | |||
| lt_devclass | TYPE STANDARD TABLE OF SEU_ACTION, " | |||
| lv_wrong_type | TYPE SEU_ACTION, " | |||
| lv_batch | TYPE SEU_ACTION, " | |||
| lt_objkey | TYPE STANDARD TABLE OF SEU_ACTION, " | |||
| lv_suppress_selection | TYPE SEU_BOOL, " | |||
| lv_variant | TYPE RSVAR-VARIANT, " | |||
| lt_i_scope_object_cls | TYPE STANDARD TABLE OF RSVAR, " | |||
| lv_show_as_popup | TYPE SEU_BOOL, " | |||
| lt_i_scope_objects | TYPE STANDARD TABLE OF RSFIND, " | |||
| lt_devclass_appl_hira | TYPE STANDARD TABLE OF SINFO_DEVCLASS, " | |||
| lv_application_hierarchy | TYPE SEU_BOOL, " | |||
| lv_first | TYPE SEU_BOOL, " | |||
| lt_editor_source | TYPE STANDARD TABLE OF RSWSOURCET, " | |||
| lv_extern | TYPE SEU_BOOL, " | |||
| lv_with_generated_objects | TYPE SEU_BOOL. " ' ' |
|   CALL FUNCTION 'RS_INFOSYSTEM_CREATE_REQUEST' " |
| EXPORTING | ||
| OBJTYPE | = lv_objtype | |
| FULL_NAME | = lv_full_name | |
| ACTION | = lv_action | |
| SUPPRESS_SELECTION | = lv_suppress_selection | |
| VARIANT | = lv_variant | |
| SHOW_AS_POPUP | = lv_show_as_popup | |
| APPLICATION_HIERARCHY | = lv_application_hierarchy | |
| FIRST | = lv_first | |
| EXTERN | = lv_extern | |
| WITH_GENERATED_OBJECTS | = lv_with_generated_objects | |
| IMPORTING | ||
| INFOSYSTEM_REQUEST | = lv_infosystem_request | |
| TABLES | ||
| OBJLIST | = lt_objlist | |
| DEVCLASS | = lt_devclass | |
| OBJKEY | = lt_objkey | |
| I_SCOPE_OBJECT_CLS | = lt_i_scope_object_cls | |
| I_SCOPE_OBJECTS | = lt_i_scope_objects | |
| DEVCLASS_APPL_HIRA | = lt_devclass_appl_hira | |
| EDITOR_SOURCE | = lt_editor_source | |
| EXCEPTIONS | ||
| NOT_EXECUTED = 1 | ||
| WRONG_TYPE = 2 | ||
| BATCH = 3 | ||
| . " RS_INFOSYSTEM_CREATE_REQUEST | ||
ABAP code using 7.40 inline data declarations to call FM RS_INFOSYSTEM_CREATE_REQUEST
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_objtype). | ||||
| "SELECT single VARIANT FROM RSVAR INTO @DATA(ld_variant). | ||||
| DATA(ld_with_generated_objects) | = ' '. | |||
Search for further information about these or an SAP related objects