SAP FC_GLOBAL_SETTINGS_GET Function Module for
FC_GLOBAL_SETTINGS_GET is a standard fc global settings get 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 fc global settings get FM, simply by entering the name FC_GLOBAL_SETTINGS_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: FC00
Program Name: SAPLFC00
Main Program: SAPLFC00
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FC_GLOBAL_SETTINGS_GET 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 'FC_GLOBAL_SETTINGS_GET'".
IMPORTING
E_SELOBJ_RCL_TRIGGER = "
E_GC_ENTRY_ALLOWED = "
E_AFC_ENABLED = "
E_ACDOCU_DE = "
E_ACDOCU_FRYEAR = "
E_FRYEAR_NGR = "
E_FRYEAR_FAI = "
E_FRYEAR_MIG = "
E_SELOBJ_MAXSEL = "
E_SELOBJ_CTR = "
E_ROLE_ATT = "
EXPORTING Parameters details for FC_GLOBAL_SETTINGS_GET
E_SELOBJ_RCL_TRIGGER -
Data type: FC_SELOBJ_RCL_TRIGGEROptional: No
Call by Reference: Yes
E_GC_ENTRY_ALLOWED -
Data type: FC_GCENTRY_ALLOWEDOptional: No
Call by Reference: Yes
E_AFC_ENABLED -
Data type: FC_AFC_ENABLEDOptional: No
Call by Reference: Yes
E_ACDOCU_DE -
Data type: FC_ACDOCU_DEOptional: No
Call by Reference: Yes
E_ACDOCU_FRYEAR -
Data type: FC_FRYEAR_S4H_WRITEOptional: No
Call by Reference: Yes
E_FRYEAR_NGR -
Data type: FC_FRYEAR_GROUP_REP_S4HOptional: No
Call by Reference: Yes
E_FRYEAR_FAI -
Data type: FC_FRYEAR_FIN_ACC_INTEGRATIONOptional: No
Call by Reference: Yes
E_FRYEAR_MIG -
Data type: FC_FRYEAR_MIG_ECCS_S4GROptional: No
Call by Reference: Yes
E_SELOBJ_MAXSEL -
Data type: FC_SELOBJ_MAXSELOptional: No
Call by Reference: Yes
E_SELOBJ_CTR -
Data type: FC_SELOBJ_CTROptional: No
Call by Reference: Yes
E_ROLE_ATT -
Data type: FC_ROLE_ATTOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FC_GLOBAL_SETTINGS_GET 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_e_selobj_rcl_trigger | TYPE FC_SELOBJ_RCL_TRIGGER, " | |||
| lv_e_gc_entry_allowed | TYPE FC_GCENTRY_ALLOWED, " | |||
| lv_e_afc_enabled | TYPE FC_AFC_ENABLED, " | |||
| lv_e_acdocu_de | TYPE FC_ACDOCU_DE, " | |||
| lv_e_acdocu_fryear | TYPE FC_FRYEAR_S4H_WRITE, " | |||
| lv_e_fryear_ngr | TYPE FC_FRYEAR_GROUP_REP_S4H, " | |||
| lv_e_fryear_fai | TYPE FC_FRYEAR_FIN_ACC_INTEGRATION, " | |||
| lv_e_fryear_mig | TYPE FC_FRYEAR_MIG_ECCS_S4GR, " | |||
| lv_e_selobj_maxsel | TYPE FC_SELOBJ_MAXSEL, " | |||
| lv_e_selobj_ctr | TYPE FC_SELOBJ_CTR, " | |||
| lv_e_role_att | TYPE FC_ROLE_ATT. " |
|   CALL FUNCTION 'FC_GLOBAL_SETTINGS_GET' " |
| IMPORTING | ||
| E_SELOBJ_RCL_TRIGGER | = lv_e_selobj_rcl_trigger | |
| E_GC_ENTRY_ALLOWED | = lv_e_gc_entry_allowed | |
| E_AFC_ENABLED | = lv_e_afc_enabled | |
| E_ACDOCU_DE | = lv_e_acdocu_de | |
| E_ACDOCU_FRYEAR | = lv_e_acdocu_fryear | |
| E_FRYEAR_NGR | = lv_e_fryear_ngr | |
| E_FRYEAR_FAI | = lv_e_fryear_fai | |
| E_FRYEAR_MIG | = lv_e_fryear_mig | |
| E_SELOBJ_MAXSEL | = lv_e_selobj_maxsel | |
| E_SELOBJ_CTR | = lv_e_selobj_ctr | |
| E_ROLE_ATT | = lv_e_role_att | |
| . " FC_GLOBAL_SETTINGS_GET | ||
ABAP code using 7.40 inline data declarations to call FM FC_GLOBAL_SETTINGS_GET
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