SAP VBXI_FILL_SINGLE_SELECTION Function Module for NOTRANSL: Setzen der internen Selektion









VBXI_FILL_SINGLE_SELECTION is a standard vbxi fill single 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 der internen Selektion 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 fill single selection FM, simply by entering the name VBXI_FILL_SINGLE_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_FILL_SINGLE_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_FILL_SINGLE_SELECTION'"NOTRANSL: Setzen der internen Selektion
EXPORTING
I_SEL_INSTANCE = "Configuration (Internal Object Number)
* I_BDCOM_DELPS = "MRP element item
* I_SELID = "Selection ID (Persistent)
* I_CLASS = "Class Number

TABLES
I_TAB_SELECTION = "Communication for Characteristics/Values
* I_TAB_ATTRIBUTES = "Attributes of Characteristics
.



IMPORTING Parameters details for VBXI_FILL_SINGLE_SELECTION

I_SEL_INSTANCE - Configuration (Internal Object Number)

Data type: INOB-CUOBJ
Optional: No
Call by Reference: Yes

I_BDCOM_DELPS - MRP element item

Data type: BDCOM-DELPS
Optional: Yes
Call by Reference: Yes

I_SELID - Selection ID (Persistent)

Data type: VBX_SEL_ID
Optional: Yes
Call by Reference: Yes

I_CLASS - Class Number

Data type: KLAH-CLASS
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for VBXI_FILL_SINGLE_SELECTION

I_TAB_SELECTION - Communication for Characteristics/Values

Data type: COMW
Optional: No
Call by Reference: Yes

I_TAB_ATTRIBUTES - Attributes of Characteristics

Data type: API_CH_ATT
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for VBXI_FILL_SINGLE_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:
lv_i_sel_instance  TYPE INOB-CUOBJ, "   
lt_i_tab_selection  TYPE STANDARD TABLE OF COMW, "   
lv_i_bdcom_delps  TYPE BDCOM-DELPS, "   
lt_i_tab_attributes  TYPE STANDARD TABLE OF API_CH_ATT, "   
lv_i_selid  TYPE VBX_SEL_ID, "   
lv_i_class  TYPE KLAH-CLASS. "   

  CALL FUNCTION 'VBXI_FILL_SINGLE_SELECTION'  "NOTRANSL: Setzen der internen Selektion
    EXPORTING
         I_SEL_INSTANCE = lv_i_sel_instance
         I_BDCOM_DELPS = lv_i_bdcom_delps
         I_SELID = lv_i_selid
         I_CLASS = lv_i_class
    TABLES
         I_TAB_SELECTION = lt_i_tab_selection
         I_TAB_ATTRIBUTES = lt_i_tab_attributes
. " VBXI_FILL_SINGLE_SELECTION




ABAP code using 7.40 inline data declarations to call FM VBXI_FILL_SINGLE_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.

"SELECT single CUOBJ FROM INOB INTO @DATA(ld_i_sel_instance).
 
 
"SELECT single DELPS FROM BDCOM INTO @DATA(ld_i_bdcom_delps).
 
 
 
"SELECT single CLASS FROM KLAH INTO @DATA(ld_i_class).
 


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!