SAP UMB_ADMIN_BW_BUFFER_GR Function Module for
UMB_ADMIN_BW_BUFFER_GR is a standard umb admin bw buffer gr 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 umb admin bw buffer gr FM, simply by entering the name UMB_ADMIN_BW_BUFFER_GR into the relevant SAP transaction such as SE37 or SE38.
Function Group: UMB_ADMIN
Program Name: SAPLUMB_ADMIN
Main Program: SAPLUMB_ADMIN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function UMB_ADMIN_BW_BUFFER_GR 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 'UMB_ADMIN_BW_BUFFER_GR'".
EXPORTING
IT_SCARD = "Scorecard Node
I_GROUP = "Scorecard Group
I_FRPER = "Current Period
I_TOPER = "Target Period
I_ONLY_OUTDATED = "Check Time Stamp of the Cube
* I_NO_FRAMES = "
* IT_MEAS_SEL = "Selection of Value Fields of Measure in the Scorecard
* IT_INIT_SEL = "Selection of Value Fields for Initiative in the Scorecard
I_CREATE_LOG = "
IMPORTING
E_LOG_HNDL = "Application Log: Log Handle
IMPORTING Parameters details for UMB_ADMIN_BW_BUFFER_GR
IT_SCARD - Scorecard Node
Data type: UMB_YT_SCARD_NODEOptional: No
Call by Reference: No ( called with pass by value option)
I_GROUP - Scorecard Group
Data type: UMB_Y_SCARD_GROUP_IDOptional: No
Call by Reference: No ( called with pass by value option)
I_FRPER - Current Period
Data type: UMB_Y_CURPEROptional: No
Call by Reference: No ( called with pass by value option)
I_TOPER - Target Period
Data type: UMB_Y_TARPEROptional: No
Call by Reference: No ( called with pass by value option)
I_ONLY_OUTDATED - Check Time Stamp of the Cube
Data type: UMC_Y_BW_ONLY_OUTDATEDOptional: No
Call by Reference: No ( called with pass by value option)
I_NO_FRAMES -
Data type: AS4FLAGOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_MEAS_SEL - Selection of Value Fields of Measure in the Scorecard
Data type: UMB_YT_MEAS_SELECTOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_INIT_SEL - Selection of Value Fields for Initiative in the Scorecard
Data type: UMB_YT_INIT_SELECTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_CREATE_LOG -
Data type: AS4FLAGOptional: No
Call by Reference: Yes
EXPORTING Parameters details for UMB_ADMIN_BW_BUFFER_GR
E_LOG_HNDL - Application Log: Log Handle
Data type: BALLOGHNDLOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for UMB_ADMIN_BW_BUFFER_GR 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_it_scard | TYPE UMB_YT_SCARD_NODE, " | |||
| lv_e_log_hndl | TYPE BALLOGHNDL, " | |||
| lv_i_group | TYPE UMB_Y_SCARD_GROUP_ID, " | |||
| lv_i_frper | TYPE UMB_Y_CURPER, " | |||
| lv_i_toper | TYPE UMB_Y_TARPER, " | |||
| lv_i_only_outdated | TYPE UMC_Y_BW_ONLY_OUTDATED, " | |||
| lv_i_no_frames | TYPE AS4FLAG, " | |||
| lv_it_meas_sel | TYPE UMB_YT_MEAS_SELECT, " | |||
| lv_it_init_sel | TYPE UMB_YT_INIT_SELECT, " | |||
| lv_i_create_log | TYPE AS4FLAG. " |
|   CALL FUNCTION 'UMB_ADMIN_BW_BUFFER_GR' " |
| EXPORTING | ||
| IT_SCARD | = lv_it_scard | |
| I_GROUP | = lv_i_group | |
| I_FRPER | = lv_i_frper | |
| I_TOPER | = lv_i_toper | |
| I_ONLY_OUTDATED | = lv_i_only_outdated | |
| I_NO_FRAMES | = lv_i_no_frames | |
| IT_MEAS_SEL | = lv_it_meas_sel | |
| IT_INIT_SEL | = lv_it_init_sel | |
| I_CREATE_LOG | = lv_i_create_log | |
| IMPORTING | ||
| E_LOG_HNDL | = lv_e_log_hndl | |
| . " UMB_ADMIN_BW_BUFFER_GR | ||
ABAP code using 7.40 inline data declarations to call FM UMB_ADMIN_BW_BUFFER_GR
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