SAP G_INDEX_ENTRY_CREATE Function Module for
G_INDEX_ENTRY_CREATE is a standard g index entry create 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 g index entry create FM, simply by entering the name G_INDEX_ENTRY_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: GRIX
Program Name: SAPLGRIX
Main Program: SAPLGRIX
Appliation area: G
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function G_INDEX_ENTRY_CREATE 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 'G_INDEX_ENTRY_CREATE'".
EXPORTING
IN_DATA = "
* DESCRIPTION = "Extract Description
* VALDATE = "
IMPORTING
HASHV = "
COUNTERV = "
HASH = "Hash Code
COUNTER = "
TABLES
SELECTIONS = "Table of selection criteria
* SELECTIONS_VAR = "
GRIX_LIST = "
GRIX_TXT_LIST = "
EXCEPTIONS
SELECTIONS_EMPTY = 1 NO_VERSN_FOUND = 2
IMPORTING Parameters details for G_INDEX_ENTRY_CREATE
IN_DATA -
Data type: GRIXOptional: No
Call by Reference: No ( called with pass by value option)
DESCRIPTION - Extract Description
Data type: GRIX_TXT-LTEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
VALDATE -
Data type: GREP_PARAM-VALDATEOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for G_INDEX_ENTRY_CREATE
HASHV -
Data type: GRIX-HASHVOptional: No
Call by Reference: No ( called with pass by value option)
COUNTERV -
Data type: GRIX-COUNTERVOptional: No
Call by Reference: No ( called with pass by value option)
HASH - Hash Code
Data type: GRIX-HASHOptional: No
Call by Reference: No ( called with pass by value option)
COUNTER -
Data type: GRIX-COUNTEROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for G_INDEX_ENTRY_CREATE
SELECTIONS - Table of selection criteria
Data type: GRIX_SELPOptional: No
Call by Reference: No ( called with pass by value option)
SELECTIONS_VAR -
Data type: GRIX_SELPOptional: Yes
Call by Reference: No ( called with pass by value option)
GRIX_LIST -
Data type: GRIXOptional: No
Call by Reference: No ( called with pass by value option)
GRIX_TXT_LIST -
Data type: GRIX_TXTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
SELECTIONS_EMPTY - No Selection Criteria
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_VERSN_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for G_INDEX_ENTRY_CREATE 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_hashv | TYPE GRIX-HASHV, " | |||
| lv_in_data | TYPE GRIX, " | |||
| lt_selections | TYPE STANDARD TABLE OF GRIX_SELP, " | |||
| lv_selections_empty | TYPE GRIX_SELP, " | |||
| lv_counterv | TYPE GRIX-COUNTERV, " | |||
| lv_description | TYPE GRIX_TXT-LTEXT, " | |||
| lv_no_versn_found | TYPE GRIX_TXT, " | |||
| lt_selections_var | TYPE STANDARD TABLE OF GRIX_SELP, " | |||
| lv_hash | TYPE GRIX-HASH, " | |||
| lv_valdate | TYPE GREP_PARAM-VALDATE, " | |||
| lt_grix_list | TYPE STANDARD TABLE OF GRIX, " | |||
| lv_counter | TYPE GRIX-COUNTER, " | |||
| lt_grix_txt_list | TYPE STANDARD TABLE OF GRIX_TXT. " |
|   CALL FUNCTION 'G_INDEX_ENTRY_CREATE' " |
| EXPORTING | ||
| IN_DATA | = lv_in_data | |
| DESCRIPTION | = lv_description | |
| VALDATE | = lv_valdate | |
| IMPORTING | ||
| HASHV | = lv_hashv | |
| COUNTERV | = lv_counterv | |
| HASH | = lv_hash | |
| COUNTER | = lv_counter | |
| TABLES | ||
| SELECTIONS | = lt_selections | |
| SELECTIONS_VAR | = lt_selections_var | |
| GRIX_LIST | = lt_grix_list | |
| GRIX_TXT_LIST | = lt_grix_txt_list | |
| EXCEPTIONS | ||
| SELECTIONS_EMPTY = 1 | ||
| NO_VERSN_FOUND = 2 | ||
| . " G_INDEX_ENTRY_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM G_INDEX_ENTRY_CREATE
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 HASHV FROM GRIX INTO @DATA(ld_hashv). | ||||
| "SELECT single COUNTERV FROM GRIX INTO @DATA(ld_counterv). | ||||
| "SELECT single LTEXT FROM GRIX_TXT INTO @DATA(ld_description). | ||||
| "SELECT single HASH FROM GRIX INTO @DATA(ld_hash). | ||||
| "SELECT single VALDATE FROM GREP_PARAM INTO @DATA(ld_valdate). | ||||
| "SELECT single COUNTER FROM GRIX INTO @DATA(ld_counter). | ||||
Search for further information about these or an SAP related objects