FTBAS_SET_OVERVIEW is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter FTBAS_SET_OVERVIEW into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
RDPT1 - List of Redemption Schedule Sets
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_DISPRS = Display Sets
Selection Text: P_VAR = D .
Selection Text: S_FIRST = First redemption date
Selection Text: S_GSART = D .
Selection Text: S_LAST = Last redemption date
Selection Text: S_PER_L = D .
Selection Text: S_PER_T = Period Indicator
Selection Text: S_RANL = D .
Selection Text: S_SET = D .
Selection Text: S_TYPE = D .
Title: Program FTBAS_SET_OVERVIEW
Text Symbol: 025 = Display Sets
Text Symbol: B00 = Output Control
Text Symbol: C00 = General selections
Text Symbol: C01 = Additional Data
INCLUDE FTBAS_RDPT_INCLUDE_CON1.
INCLUDE FTBAS_RDPT_INCLUDE_ALV_HANDLE.
INCLUDE FTBAS_RDPT_INCLUDE_F4_VAL_REQ.
No SAP DATABASE tables are accessed within this REPORT code!
FVW6_SET_OVERVIEW CALL FUNCTION 'FVW6_SET_OVERVIEW' EXPORTING im_range_security_id = it_range_secid im_range_gsart = it_range_gsart im_range_set_name = it_range_set_name im_range_set_type = it_range_type im_range_first_red = it_range_first im_range_last_red = it_range_last im_range_tfmarhy = it_range_tfmarhy im_range_dattp = it_range_dattp im_alv_variant = alv_variant im_flag_display_sets = p_disprs EXCEPTIONS exc_authority_check_failed = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.