SAP Reports / Programs

RFKK_SELP_TDATA SAP ABAP Report - Recreate Preselection of Transaction Data for OI Evaluation







RFKK_SELP_TDATA is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Evaluation of Selection by Transaction Data The report is used to evaluate a selection by transaction data as defined in transaction FPSELP...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 RFKK_SELP_TDATA into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

FPST - Preselection by Transaction Data


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 RFKK_SELP_TDATA. "Basic submit
SUBMIT RFKK_SELP_TDATA AND RETURN. "Return to original report after report execution complete
SUBMIT RFKK_SELP_TDATA 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_NAME = D .
Title: Recreate Preselection of Transaction Data for OI Evaluation
Text Symbol: BT1 = Details
Text Symbol: BT2 = Definition of Selection
Text Symbol: F01 = Scheduling via Job Container
Text Symbol: F02 = Maintain Predefined Selection


INCLUDES used within this REPORT RFKK_SELP_TDATA

No INCLUDES are used within this REPORT code!


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:

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_select_detail text = text-bt1 info = text-bt2 IMPORTING RESULT = butdet EXCEPTIONS OTHERS = 0.

FKK_SELP_DRESULTS_CREATE CALL FUNCTION 'FKK_SELP_DRESULTS_CREATE' EXPORTING i_sel_type = p_type i_sel_name = p_name i_extern_call = 'X' EXCEPTIONS err_not_created = 1.

GET_JOB_RUNTIME_INFO CALL FUNCTION 'GET_JOB_RUNTIME_INFO' IMPORTING jobname = act_name EXCEPTIONS no_runtime_info = 1 OTHERS = 2.

FKK_SELP_DELETE_RES CALL FUNCTION 'FKK_SELP_DELETE_RES' EXPORTING i_sel_type = p_type i_sel_name = p_name i_set_number = num_set EXCEPTIONS err_not_deleted = 1 OTHERS = 2.

FKK_SELP_STORE_RES_COMP CALL FUNCTION 'FKK_SELP_STORE_RES_COMP' EXPORTING i_sel_type = p_type i_sel_name = p_name i_part_size = size_of_bp_block IMPORTING e_part_res = res_bp_part e_results = res_bp CHANGING c_header = wa_dfkk_selp_res EXCEPTIONS err_not_saved = 1.

FKK_SELP_STORE_RES_COMP CALL FUNCTION 'FKK_SELP_STORE_RES_COMP' EXPORTING i_sel_type = p_type i_sel_name = p_name i_part_size = size_of_bp_block IMPORTING e_part_res = res_ca_part e_results = res_ca CHANGING c_header = wa_dfkk_selp_res EXCEPTIONS err_not_saved = 1.



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