SAP FMRB_CHECK_RIB_SETTINGS Function Module for Check Customizing Settings for RIB
FMRB_CHECK_RIB_SETTINGS is a standard fmrb check rib settings SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check Customizing Settings for RIB 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 fmrb check rib settings FM, simply by entering the name FMRB_CHECK_RIB_SETTINGS into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMRB_CUST_TOOLS
Program Name: SAPLFMRB_CUST_TOOLS
Main Program: SAPLFMRB_CUST_TOOLS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FMRB_CHECK_RIB_SETTINGS 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 'FMRB_CHECK_RIB_SETTINGS'"Check Customizing Settings for RIB.
EXPORTING
* I_FM_AREA = "Financial Management Area
* I_FISCYEAR = "Fiscal Year
* I_BYPASS_BUFFER = ' ' "Checkbox
* I_RESET_BUFFER = ' ' "Checkbox
IMPORTING
E_FLG_RIB_LEDGER_ACTIVE = "Checkbox
E_ACTIVE_FROM_YEAR = "Year of Activation for RIB Ledger
E_BUDGET_MEMO_USE = "Indicator for Defining the use of Budget Memos (RIB)
E_FLG_CALL_RIB_ACTIVE = "Flag: Call RIB procedure is active?
E_USE_REVENUE_CG = "Flag: Use of revenue cover groups activated?
IMPORTING Parameters details for FMRB_CHECK_RIB_SETTINGS
I_FM_AREA - Financial Management Area
Data type: FIKRSOptional: Yes
Call by Reference: Yes
I_FISCYEAR - Fiscal Year
Data type: GJAHROptional: Yes
Call by Reference: Yes
I_BYPASS_BUFFER - Checkbox
Data type: XFELDDefault: ' '
Optional: Yes
Call by Reference: Yes
I_RESET_BUFFER - Checkbox
Data type: XFELDDefault: ' '
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FMRB_CHECK_RIB_SETTINGS
E_FLG_RIB_LEDGER_ACTIVE - Checkbox
Data type: XFELDOptional: No
Call by Reference: Yes
E_ACTIVE_FROM_YEAR - Year of Activation for RIB Ledger
Data type: FMRB_ACTIVE_FROM_YEAROptional: No
Call by Reference: Yes
E_BUDGET_MEMO_USE - Indicator for Defining the use of Budget Memos (RIB)
Data type: FMRB_IND_BUDGET_MEMO_USEOptional: No
Call by Reference: Yes
E_FLG_CALL_RIB_ACTIVE - Flag: Call RIB procedure is active?
Data type: XFELDOptional: No
Call by Reference: Yes
E_USE_REVENUE_CG - Flag: Use of revenue cover groups activated?
Data type: XFELDOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FMRB_CHECK_RIB_SETTINGS 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_i_fm_area | TYPE FIKRS, " | |||
| lv_e_flg_rib_ledger_active | TYPE XFELD, " | |||
| lv_i_fiscyear | TYPE GJAHR, " | |||
| lv_e_active_from_year | TYPE FMRB_ACTIVE_FROM_YEAR, " | |||
| lv_i_bypass_buffer | TYPE XFELD, " ' ' | |||
| lv_e_budget_memo_use | TYPE FMRB_IND_BUDGET_MEMO_USE, " | |||
| lv_i_reset_buffer | TYPE XFELD, " ' ' | |||
| lv_e_flg_call_rib_active | TYPE XFELD, " | |||
| lv_e_use_revenue_cg | TYPE XFELD. " |
|   CALL FUNCTION 'FMRB_CHECK_RIB_SETTINGS' "Check Customizing Settings for RIB |
| EXPORTING | ||
| I_FM_AREA | = lv_i_fm_area | |
| I_FISCYEAR | = lv_i_fiscyear | |
| I_BYPASS_BUFFER | = lv_i_bypass_buffer | |
| I_RESET_BUFFER | = lv_i_reset_buffer | |
| IMPORTING | ||
| E_FLG_RIB_LEDGER_ACTIVE | = lv_e_flg_rib_ledger_active | |
| E_ACTIVE_FROM_YEAR | = lv_e_active_from_year | |
| E_BUDGET_MEMO_USE | = lv_e_budget_memo_use | |
| E_FLG_CALL_RIB_ACTIVE | = lv_e_flg_call_rib_active | |
| E_USE_REVENUE_CG | = lv_e_use_revenue_cg | |
| . " FMRB_CHECK_RIB_SETTINGS | ||
ABAP code using 7.40 inline data declarations to call FM FMRB_CHECK_RIB_SETTINGS
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_i_bypass_buffer) | = ' '. | |||
| DATA(ld_i_reset_buffer) | = ' '. | |||
Search for further information about these or an SAP related objects