RFTBBW_GEN_DATASOURCE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Generation of DataSources in Limit Management for the extraction of limit utilizations to a BW system...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 RFTBBW_GEN_DATASOURCE 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: P_LIMIT = Limit Level
Selection Text: P_SINGLE = Transaction Level
Selection Text: P_SOURCE = Name of Data Source
Selection Text: P_SRCGEN = Generate DataSource
Selection Text: P_STRGEN = Generate Extraction Structure
Selection Text: P_STRUC = Name of Extraction Structure
Selection Text: P_TSRCE = Description of DataSource
Title: Manual Generation of DataSources
Text Symbol: SE1 = Data Extraction
Text Symbol: SE2 = BI Export Specifications
Text Symbol: SRC = DataSource
Text Symbol: SRT = Description of DataSource
Text Symbol: STR = Extraction Structure
Text Symbol: T01 = Suffix for Standard Extraction Structure for Utilizations at Limit Level
Text Symbol: T02 = Suffix for Standard Extraction Structure for Utilizations at Trans. Level
Text Symbol: T03 = Suffix for Standard DataSource for Utilizations at Limit Level
Text Symbol: T04 = Suffix for Standard DataSource for Utilizations at Trans. Level
INCLUDE: BW_REPORTING_CONSTANTS, BW_GENERAL_CONSTANTS.
No SAP DATABASE tables are accessed within this REPORT code!
API_BW_GEN_DATASOURCE CALL FUNCTION 'API_BW_GEN_DATASOURCE' EXPORTING i_datasource = p_source i_datasource_text = p_tsrce i_extract_struc_name = p_struc i_extract_func_name = l_extr_funcname i_flg_gen_extract_struc = p_strgen i_flg_gen_datasource = p_srcgen i_extr_kind = l_extr_kind TABLES i_tab_dd03p = l_tab_dd03p EXCEPTIONS function_module_not_generated = 1 generation_failed = 2 extract_struct_not_generated = 3 datasource_not_existing = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFTBBW_GEN_DATASOURCE - Manual Generation of DataSources RFTBBW_GEN_DATASOURCE - Manual Generation of DataSources RFTBBW_EXPOS_CALC_DISP - Branch-To Report: Details of Calculation of Attributable Amount RFTBBW_EXPOS_CALC_DISP - Branch-To Report: Details of Calculation of Attributable Amount RFTBBW_EGP_DISP - Branch-To Report: Log of Single-Transaction Check RFTBBW_EGP_DISP - Branch-To Report: Log of Single-Transaction Check