SAP G_GLX_MASTERDATA_MODIFY Function Module for Write GLX master data
G_GLX_MASTERDATA_MODIFY is a standard g glx masterdata modify SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Write GLX master data 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 g glx masterdata modify FM, simply by entering the name G_GLX_MASTERDATA_MODIFY into the relevant SAP transaction such as SE37 or SE38.
Function Group: GUMM
Program Name: SAPLGUMM
Main Program: SAPLGUMM
Appliation area: G
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function G_GLX_MASTERDATA_MODIFY 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_GLX_MASTERDATA_MODIFY'"Write GLX master data.
EXPORTING
RFIELD = "
TABELLE = "Name of master data table
TABLES
IT830 = "Table with GLX master data values
IT831 = "Table with GLX master data texts
IMPORTING Parameters details for G_GLX_MASTERDATA_MODIFY
RFIELD -
Data type: T800D-RFIELD1Optional: No
Call by Reference: No ( called with pass by value option)
TABELLE - Name of master data table
Data type: T800D-TABOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for G_GLX_MASTERDATA_MODIFY
IT830 - Table with GLX master data values
Data type: T830AOptional: No
Call by Reference: No ( called with pass by value option)
IT831 - Table with GLX master data texts
Data type: T831AOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for G_GLX_MASTERDATA_MODIFY 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_it830 | TYPE STANDARD TABLE OF T830A, " | |||
| lv_rfield | TYPE T800D-RFIELD1, " | |||
| lt_it831 | TYPE STANDARD TABLE OF T831A, " | |||
| lv_tabelle | TYPE T800D-TAB. " |
|   CALL FUNCTION 'G_GLX_MASTERDATA_MODIFY' "Write GLX master data |
| EXPORTING | ||
| RFIELD | = lv_rfield | |
| TABELLE | = lv_tabelle | |
| TABLES | ||
| IT830 | = lt_it830 | |
| IT831 | = lt_it831 | |
| . " G_GLX_MASTERDATA_MODIFY | ||
ABAP code using 7.40 inline data declarations to call FM G_GLX_MASTERDATA_MODIFY
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 RFIELD1 FROM T800D INTO @DATA(ld_rfield). | ||||
| "SELECT single TAB FROM T800D INTO @DATA(ld_tabelle). | ||||
Search for further information about these or an SAP related objects