SAP SET_GA_CHANGE_FLAGS Function Module for NOTRANSL: GA_CHANGE_FLAGS in CJGR setzen









SET_GA_CHANGE_FLAGS is a standard set ga change flags 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: GA_CHANGE_FLAGS in CJGR setzen 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 set ga change flags FM, simply by entering the name SET_GA_CHANGE_FLAGS into the relevant SAP transaction such as SE37 or SE38.

Function Group: CJGR
Program Name: SAPLCJGR
Main Program: SAPLCJGR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function SET_GA_CHANGE_FLAGS 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 'SET_GA_CHANGE_FLAGS'"NOTRANSL: GA_CHANGE_FLAGS in CJGR setzen
EXPORTING
* PPT = '-' "Single-Character Indicator
* TIME_MAT = '-' "Single-Character Indicator
* TIME_COST = '-' "Single-Character Indicator
* PPT_WIZ = '-' "Single-Character Indicator
* FAW_PLAN = '-' "Single-Character Indicator
* FAW_CAPA = '-' "Single-Character Indicator
* FAW_MAT = '-' "Single-Character Indicator
* FAW_COST = '-' "Single-Character Indicator
* FAW_ORDER = '-' "Single-Character Indicator
* FAW_PRINT = '-' "Single-Character Indicator
* TIME_PLAN = '-' "Single-Character Indicator
* TIME_CAPA = '-' "Single-Character Indicator
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLCJGR_001 PS: Plnning Board: Change Chart Titles

IMPORTING Parameters details for SET_GA_CHANGE_FLAGS

PPT - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

TIME_MAT - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

TIME_COST - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

PPT_WIZ - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

FAW_PLAN - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

FAW_CAPA - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

FAW_MAT - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

FAW_COST - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

FAW_ORDER - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

FAW_PRINT - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

TIME_PLAN - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

TIME_CAPA - Single-Character Indicator

Data type: CHAR1
Default: '-'
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for SET_GA_CHANGE_FLAGS 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_ppt  TYPE CHAR1, "   '-'
lv_time_mat  TYPE CHAR1, "   '-'
lv_time_cost  TYPE CHAR1, "   '-'
lv_ppt_wiz  TYPE CHAR1, "   '-'
lv_faw_plan  TYPE CHAR1, "   '-'
lv_faw_capa  TYPE CHAR1, "   '-'
lv_faw_mat  TYPE CHAR1, "   '-'
lv_faw_cost  TYPE CHAR1, "   '-'
lv_faw_order  TYPE CHAR1, "   '-'
lv_faw_print  TYPE CHAR1, "   '-'
lv_time_plan  TYPE CHAR1, "   '-'
lv_time_capa  TYPE CHAR1. "   '-'

  CALL FUNCTION 'SET_GA_CHANGE_FLAGS'  "NOTRANSL: GA_CHANGE_FLAGS in CJGR setzen
    EXPORTING
         PPT = lv_ppt
         TIME_MAT = lv_time_mat
         TIME_COST = lv_time_cost
         PPT_WIZ = lv_ppt_wiz
         FAW_PLAN = lv_faw_plan
         FAW_CAPA = lv_faw_capa
         FAW_MAT = lv_faw_mat
         FAW_COST = lv_faw_cost
         FAW_ORDER = lv_faw_order
         FAW_PRINT = lv_faw_print
         TIME_PLAN = lv_time_plan
         TIME_CAPA = lv_time_capa
. " SET_GA_CHANGE_FLAGS




ABAP code using 7.40 inline data declarations to call FM SET_GA_CHANGE_FLAGS

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_ppt) = '-'.
 
DATA(ld_time_mat) = '-'.
 
DATA(ld_time_cost) = '-'.
 
DATA(ld_ppt_wiz) = '-'.
 
DATA(ld_faw_plan) = '-'.
 
DATA(ld_faw_capa) = '-'.
 
DATA(ld_faw_mat) = '-'.
 
DATA(ld_faw_cost) = '-'.
 
DATA(ld_faw_order) = '-'.
 
DATA(ld_faw_print) = '-'.
 
DATA(ld_time_plan) = '-'.
 
DATA(ld_time_capa) = '-'.
 


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!