UMB_BSC_BUF is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Buffering of BW data in scorecards With this report, you buffer BW data for a specific time period for as many scorecards as you wish...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter UMB_BSC_BUF into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: INIT = D Initiative
Selection Text: I_COL = D Value Field
Selection Text: MEAS = D Measure
Selection Text: M_COL = D Value Field
Selection Text: PERFR = D Start
Selection Text: PERTO = D End
Selection Text: P_LOG = Create Error Log
Selection Text: P_NO_FRM = D No Frame Buffering
Selection Text: P_OUTD = Only with Newer Time Stamp
Selection Text: SCARD = D Scorecard
Selection Text: VAR = D Time Variable
Title: Balanced Scorecard: Buffering
Text Symbol: 001 = Select Measure - Optional
Text Symbol: 002 = Select Initiative - Optional
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
UMC_TIME_VARIABLE_BASE_TYPE call function 'UMC_TIME_VARIABLE_BASE_TYPE' exporting i_var = var importing e_var = l_varbase.
UMB_SCORECARD_FISCVARNT_GET call function 'UMB_SCORECARD_FISCVARNT_GET' exporting i_scard = l_scard importing e_fiscvarnt = l_periv exceptions scard_not_found = 1 not_maintained = 2 others = 3.
UMC_FISCPER call function 'UMC_FISCPER' exporting i_fiscvarnt = l_periv importing e_todayper = l_curper exceptions invalid = 1 others = 2.
UMB_VAR_TO_FISCPER call function 'UMB_VAR_TO_FISCPER' exporting i_var = var i_curper = l_curper i_tarper = l_curper i_scard = l_scard i_periv = l_periv importing e_fiscper = l_perfr e_fiscper_to = l_perto exceptions unknown_variable = 1 others = 2.
UMB_ADMIN_BW_BUFFER call function 'UMB_ADMIN_BW_BUFFER' exporting i_scard = l_scard i_frper = l_perfr i_toper = l_perto i_only_outdated = p_outd it_meas_sel = lt_meas_sel it_init_sel = lt_init_sel i_create_log = p_log.
UMB_ADMIN_BW_BUFFER call function 'UMB_ADMIN_BW_BUFFER' exporting i_scard = l_scard i_frper = perfr i_toper = perto i_only_outdated = p_outd i_no_frames = p_no_frm it_meas_sel = lt_meas_sel it_init_sel = lt_init_sel i_create_log = p_log.
DYNP_VALUES_READ * call function 'DYNP_VALUES_READ' * exporting * dyname = l_progname * dynumb = l_dynnum * translate_to_upper = 'X' * tables * dynpfields = lt_dynpro_value.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'MEAS' dynpprog = l_progname dynpnr = l_dynnum dynprofield = 'MEAS-LOW' value_org = 'S' tables value_tab = lt_f4_meas.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'MEAS' dynpprog = l_progname dynpnr = l_dynnum dynprofield = 'MEAS-LOW' value_org = 'S' tables value_tab = lt_f4_meas.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'COL' dynpprog = l_progname dynpnr = l_dynnum dynprofield = 'M_COL-LOW' value_org = 'S' tables value_tab = lt_f4_col.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'COL' dynpprog = l_progname dynpnr = l_dynnum dynprofield = 'M_COL-LOW' value_org = 'S' tables value_tab = lt_f4_col.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'INIT' dynpprog = l_progname dynpnr = l_dynnum dynprofield = 'INIT-LOW' value_org = 'S' tables value_tab = lt_f4_init.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'INIT' dynpprog = l_progname dynpnr = l_dynnum dynprofield = 'INIT-LOW' value_org = 'S' tables value_tab = lt_f4_init.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'COL' dynpprog = l_progname dynpnr = l_dynnum dynprofield = 'I_COL-LOW' value_org = 'S' tables value_tab = lt_f4_col.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'COL' dynpprog = l_progname dynpnr = l_dynnum dynprofield = 'I_COL-LOW' value_org = 'S' tables value_tab = lt_f4_col.
UMC_TIME_VARIABLE_BASE_TYPE * CALL FUNCTION 'UMC_TIME_VARIABLE_BASE_TYPE' * EXPORTING * i_var = var * IMPORTING * e_var = l_varbase.
UMB_SCORECARD_FISCVARNT_GET * CALL FUNCTION 'UMB_SCORECARD_FISCVARNT_GET' * EXPORTING * i_scard = l_scard * IMPORTING * e_fiscvarnt = l_periv * EXCEPTIONS * scard_not_found = 1 * not_maintained = 2 * OTHERS = 3.
UMC_FISCPER * CALL FUNCTION 'UMC_FISCPER' * EXPORTING * i_fiscvarnt = l_periv * IMPORTING * e_todayper = l_curper * EXCEPTIONS * invalid = 1 * OTHERS = 2.
* CALL FUNCTION 'UMB_VAR_TO_FISCPER' * EXPORTING * i_var = var * i_curper = l_curper * i_tarper = l_curper * i_scard = l_scard * i_periv = l_periv * IMPORTING * e_fiscper = l_perfr * e_fiscper_to = l_perto * EXCEPTIONS * unknown_variable = 1 * OTHERS = 2.
UMB_ADMIN_BW_BUFFER * CALL FUNCTION 'UMB_ADMIN_BW_BUFFER' * EXPORTING * i_scard = l_scard * i_frper = l_perfr * i_toper = l_perto * i_only_outdated = p_outd.
UMB_ADMIN_BW_BUFFER * CALL FUNCTION 'UMB_ADMIN_BW_BUFFER' * EXPORTING * i_scard = l_scard * i_frper = perfr * i_toper = perto * i_only_outdated = p_outd.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.
This will then be available for everyone to easily find by simply searching on the report name UMB_BSC_BUF or its description.