FTR_SL_REP_I01 is a standard ABAP INCLUDE 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 FTR_SL_REP_I01 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FTI_LDB_F4NUMBR_REF_SYDAT CALL FUNCTION 'FTI_LDB_F4NUMBR_REF_SYDAT' IMPORTING e_numbr = p_numbr * E_QTEXT = .
LVC_VARIANT_F4 CALL FUNCTION 'LVC_VARIANT_F4' EXPORTING is_variant = gs_x_layout * IT_DEFAULT_FIELDCAT = i_save = gd_x_save IMPORTING e_exit = gd_exit es_variant = gs_spec_layout EXCEPTIONS not_found = 1 program_error = 2 OTHERS = 3 .
LVC_VARIANT_DEFAULT_GET CALL FUNCTION 'LVC_VARIANT_DEFAULT_GET' EXPORTING i_save = 'A' CHANGING cs_variant = gs_def_layout EXCEPTIONS wrong_input = 1 not_found = 2 program_error = 3 OTHERS = 4.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING * I_S_LOG_FILTER = * I_T_LOG_CONTEXT_FILTER = * I_S_MSG_FILTER = * I_T_MSG_CONTEXT_FILTER = i_t_log_handle = gt_log_handle * I_T_MSG_HANDLE = * i_s_display_profile = EXCEPTIONS OTHERS = 1.
FTR_SL_TCODE_SELECT CALL FUNCTION 'FTR_SL_TCODE_SELECT' EXPORTING im_company_code = gs_sl_output-bukrs im_transaction_number = gs_sl_output-rfha im_transactiontype = '1' EXCEPTIONS OTHERS = 1.
FTR_PARTNER_DISPLAY CALL FUNCTION 'FTR_PARTNER_DISPLAY' EXPORTING pi_partner_id = gs_sl_output-kontrh pi_partner_role = c_partner_role_treasury pi_companycode = gs_sl_output-bukrs EXCEPTIONS partner_not_found = 0 OTHERS = 0.
TB_TRANSACTION_MAINTAIN CALL FUNCTION 'TB_TRANSACTION_MAINTAIN' EXPORTING i_flg_disp = 'X' i_transaction = gs_fhapo i_xbewart = gs_sl_output-xbewart.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.