RFTVEXPO_FORMS 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 RFTVEXPO_FORMS 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!
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = p_t_events.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING * i_interface_check = 'X' i_buffer_active = ' ' i_callback_program = g_repid i_callback_pf_status_set = 'STATUS_SET_EX' i_callback_user_command = 'USER_COMMAND' is_layout = s_layout it_fieldcat = t_fieldcat i_save = g_save is_variant = g_variant it_events = t_events IMPORTING es_exit_caused_by_user = wie_raus TABLES t_outtab = exposure_tab_zeit.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING * i_interface_check = 'X' i_buffer_active = ' ' i_callback_program = g_repid i_callback_pf_status_set = 'STATUS_SET_EX' i_callback_user_command = 'USER_COMMAND' is_layout = s_layout it_fieldcat = t_fieldcat i_save = g_save is_variant = g_variant it_events = t_events IMPORTING es_exit_caused_by_user = wie_raus TABLES t_outtab = exposure_tab_zeit.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING * i_interface_check = 'X' i_buffer_active = ' ' i_callback_program = g_repid i_callback_pf_status_set = 'STATUS_SET_EX' i_callback_user_command = 'USER_COMMAND' is_layout = s_layout it_fieldcat = t_fieldcat it_special_groups = gt_sp_group it_sort = t_sort i_save = g_save is_variant = g_variant it_events = t_events IMPORTING es_exit_caused_by_user = wie_raus TABLES t_outtab = exposure_tab_single.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING * i_interface_check = 'X' i_buffer_active = ' ' i_callback_program = g_repid i_callback_pf_status_set = 'STATUS_SET_EX' i_callback_user_command = 'USER_COMMAND' is_layout = s_layout it_fieldcat = t_fieldcat i_save = g_save is_variant = g_variant it_events = t_events IMPORTING es_exit_caused_by_user = wie_raus TABLES t_outtab = exposure_tab_single.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = lt_top_of_page.
DEALDATA_READ CALL FUNCTION 'DEALDATA_READ' EXPORTING companycode = exposure_tab_single-bukrs currently_active_status = 'X' dealno = exposure_tab_single-rfha IMPORTING * deal = status = status * tables * CONDITIONS = * POSITIONS = EXCEPTIONS deal_not_found = 1 status_not_found = 2 OTHERS = 3.
TB_TRANSACTION_CALL CALL FUNCTION 'TB_TRANSACTION_CALL' EXPORTING activitytype = status-sfgzustt companycode = exposure_tab_single-bukrs dealno = exposure_tab_single-rfha dealtype = exposure_tab_single-sfgtyp producttype = exposure_tab_single-sanlf transactiontype = '1' EXCEPTIONS transaction = 1 transactiontype = 2 OTHERS = 3.
TRCA_COMPANYCODE_GETDETAIL CALL FUNCTION 'TRCA_COMPANYCODE_GETDETAIL' EXPORTING companycode = h_expotab-bukrs IMPORTING currency = h_waers.
RM_SZENARIO_GETDETAIL CALL FUNCTION 'RM_SZENARIO_GETDETAIL' EXPORTING szenario = h_expotab-szenari EXCEPTIONS szenario_not_exist = 1 OTHERS = 2.
TV_MARKET_DATA_SPOT CALL FUNCTION 'TV_MARKET_DATA_SPOT' EXPORTING akt_datum = date bewertungsdatum = hori "#EC DOM_EQUAL geld_brief = h_geld_brief instr_maturity = hori szename = h_szenario waehrung1 = h_expotab-waers waehrung2 = h_waers * SHIFT_REGEL = i_mseg = i_mseg IMPORTING spot = h_kurs EXCEPTIONS error_interpolation = 1 not_f_szenario = 2 not_f_waers = 3 no_initialization = 4 OTHERS = 5 .
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = hori "#EC DOM_EQUAL foreign_amount = h_expotab-offbtr foreign_currency = h_expotab-waers local_currency = h_waers rate = h_kurs type_of_rate = h_kurstyp read_tcurr = ' ' IMPORTING local_amount = h_expotab-offbtr_aw EXCEPTIONS no_rate_found = 1 overflow = 2 no_factors_found = 3 no_spread_found = 4 derived_2_times = 5 OTHERS = 6.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.