SAP Reports / Programs | Default Risk and Limit System | Bank Components | Default Risk and Limit System(IS-B-RA-CL) SAP IS

RFTBBW_GEN_DATASOURCE SAP ABAP Report - Manual Generation of DataSources







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFTBBW_GEN_DATASOURCE. "Basic submit
SUBMIT RFTBBW_GEN_DATASOURCE AND RETURN. "Return to original report after report execution complete
SUBMIT RFTBBW_GEN_DATASOURCE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT RFTBBW_GEN_DATASOURCE

INCLUDE: BW_REPORTING_CONSTANTS, BW_GENERAL_CONSTANTS.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

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 RFTBBW_GEN_DATASOURCE or its description.