SAP VBXI_SET_MULTIPLE_SELECTION Function Module for NOTRANSL: Setzen und transformieren in interne Selektionen
VBXI_SET_MULTIPLE_SELECTION is a standard vbxi set multiple selection SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Setzen und transformieren in interne Selektionen 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 vbxi set multiple selection FM, simply by entering the name VBXI_SET_MULTIPLE_SELECTION into the relevant SAP transaction such as SE37 or SE38.
Function Group: VBXI
Program Name: SAPLVBXI
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function VBXI_SET_MULTIPLE_SELECTION 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 'VBXI_SET_MULTIPLE_SELECTION'"NOTRANSL: Setzen und transformieren in interne Selektionen.
TABLES
I_TAB_HEAD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
I_TAB_SELECTION = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_SELECTION = "VBX: Internal Selection Data for Header
EXCEPTIONS
NO_VALUATION = 1 CHARACTERISTIC_NOT_FOUND = 2 INTERNAL_ERROR = 3
TABLES Parameters details for VBXI_SET_MULTIPLE_SELECTION
I_TAB_HEAD - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: VBX_S_HEADOptional: No
Call by Reference: Yes
I_TAB_SELECTION - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: VBX_S_DATAOptional: No
Call by Reference: Yes
E_SELECTION - VBX: Internal Selection Data for Header
Data type: VBX_BDINTOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_VALUATION -
Data type:Optional: No
Call by Reference: Yes
CHARACTERISTIC_NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for VBXI_SET_MULTIPLE_SELECTION 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_i_tab_head | TYPE STANDARD TABLE OF VBX_S_HEAD, " | |||
| lv_no_valuation | TYPE VBX_S_HEAD, " | |||
| lt_i_tab_selection | TYPE STANDARD TABLE OF VBX_S_DATA, " | |||
| lv_characteristic_not_found | TYPE VBX_S_DATA, " | |||
| lt_e_selection | TYPE STANDARD TABLE OF VBX_BDINT, " | |||
| lv_internal_error | TYPE VBX_BDINT. " |
|   CALL FUNCTION 'VBXI_SET_MULTIPLE_SELECTION' "NOTRANSL: Setzen und transformieren in interne Selektionen |
| TABLES | ||
| I_TAB_HEAD | = lt_i_tab_head | |
| I_TAB_SELECTION | = lt_i_tab_selection | |
| E_SELECTION | = lt_e_selection | |
| EXCEPTIONS | ||
| NO_VALUATION = 1 | ||
| CHARACTERISTIC_NOT_FOUND = 2 | ||
| INTERNAL_ERROR = 3 | ||
| . " VBXI_SET_MULTIPLE_SELECTION | ||
ABAP code using 7.40 inline data declarations to call FM VBXI_SET_MULTIPLE_SELECTION
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.Search for further information about these or an SAP related objects