SAP VBHT_INDEX_READ Function Module for READ INDEX
VBHT_INDEX_READ is a standard vbht index read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for READ INDEX 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 vbht index read FM, simply by entering the name VBHT_INDEX_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: VBHT
Program Name: SAPLVBHT
Main Program: SAPLVBHT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function VBHT_INDEX_READ 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 'VBHT_INDEX_READ'"READ INDEX.
EXPORTING
* IR_WERKS = "Plant
IV_CHARG = "Batch Number
* IT_OBJ_LIST = "Batch History : BRO Types
* IR_SELDATE = "Date
* IR_BWART = "Movement type (inventory management)
IV_MATNR = "Material Number
IMPORTING
ET_OBJ_DETAIL = "Index Table - Object Types
IMPORTING Parameters details for VBHT_INDEX_READ
IR_WERKS - Plant
Data type: WERKS_T_RANGEOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_CHARG - Batch Number
Data type: CHARG_DOptional: No
Call by Reference: No ( called with pass by value option)
IT_OBJ_LIST - Batch History : BRO Types
Data type: BICBH_T_TYPEOptional: Yes
Call by Reference: No ( called with pass by value option)
IR_SELDATE - Date
Data type: DATE_T_RANGEOptional: Yes
Call by Reference: No ( called with pass by value option)
IR_BWART - Movement type (inventory management)
Data type: BWART_T_RANGEOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_MATNR - Material Number
Data type: MATNROptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for VBHT_INDEX_READ
ET_OBJ_DETAIL - Index Table - Object Types
Data type: TOBJ_T_INDEXOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for VBHT_INDEX_READ 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_ir_werks | TYPE WERKS_T_RANGE, " | |||
| lv_et_obj_detail | TYPE TOBJ_T_INDEX, " | |||
| lv_iv_charg | TYPE CHARG_D, " | |||
| lv_it_obj_list | TYPE BICBH_T_TYPE, " | |||
| lv_ir_seldate | TYPE DATE_T_RANGE, " | |||
| lv_ir_bwart | TYPE BWART_T_RANGE, " | |||
| lv_iv_matnr | TYPE MATNR. " |
|   CALL FUNCTION 'VBHT_INDEX_READ' "READ INDEX |
| EXPORTING | ||
| IR_WERKS | = lv_ir_werks | |
| IV_CHARG | = lv_iv_charg | |
| IT_OBJ_LIST | = lv_it_obj_list | |
| IR_SELDATE | = lv_ir_seldate | |
| IR_BWART | = lv_ir_bwart | |
| IV_MATNR | = lv_iv_matnr | |
| IMPORTING | ||
| ET_OBJ_DETAIL | = lv_et_obj_detail | |
| . " VBHT_INDEX_READ | ||
ABAP code using 7.40 inline data declarations to call FM VBHT_INDEX_READ
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