SAP KGAL_MOD_FIELD Function Module for
KGAL_MOD_FIELD is a standard kgal mod field 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 kgal mod field FM, simply by entering the name KGAL_MOD_FIELD into the relevant SAP transaction such as SE37 or SE38.
Function Group: KGAL
Program Name: SAPLKGAL
Main Program: SAPLKGAL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function KGAL_MOD_FIELD 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 'KGAL_MOD_FIELD'".
EXPORTING
* IM_KGALK = KGALK "KGALK entry which is changed in ke
* POSITION = 0 "Item of the field in the table key
IMPORTING
EX_STATUS = "new status of the cycle after chan
EXCEPTIONS
FIELD_NOT_MODIFIED = 1 NO_FIELDS = 2 SET_NOT_FOUND = 3 SET_WRONG = 4
IMPORTING Parameters details for KGAL_MOD_FIELD
IM_KGALK - KGALK entry which is changed in ke
Data type: KGALKDefault: KGALK
Optional: Yes
Call by Reference: No ( called with pass by value option)
POSITION - Item of the field in the table key
Data type: SY-TABIXOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for KGAL_MOD_FIELD
EX_STATUS - new status of the cycle after chan
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
FIELD_NOT_MODIFIED - no modification of the field
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_FIELDS - current sequence number has no fie
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SET_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SET_WRONG - Set specification in the field not
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for KGAL_MOD_FIELD 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_im_kgalk | TYPE KGALK, " KGALK | |||
| lv_ex_status | TYPE KGALK, " | |||
| lv_field_not_modified | TYPE KGALK, " | |||
| lv_position | TYPE SY-TABIX, " 0 | |||
| lv_no_fields | TYPE SY, " | |||
| lv_set_not_found | TYPE SY, " | |||
| lv_set_wrong | TYPE SY. " |
|   CALL FUNCTION 'KGAL_MOD_FIELD' " |
| EXPORTING | ||
| IM_KGALK | = lv_im_kgalk | |
| POSITION | = lv_position | |
| IMPORTING | ||
| EX_STATUS | = lv_ex_status | |
| EXCEPTIONS | ||
| FIELD_NOT_MODIFIED = 1 | ||
| NO_FIELDS = 2 | ||
| SET_NOT_FOUND = 3 | ||
| SET_WRONG = 4 | ||
| . " KGAL_MOD_FIELD | ||
ABAP code using 7.40 inline data declarations to call FM KGAL_MOD_FIELD
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.| DATA(ld_im_kgalk) | = KGALK. | |||
| "SELECT single TABIX FROM SY INTO @DATA(ld_position). | ||||
Search for further information about these or an SAP related objects