RFPMVM04 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 RFPMVM04 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PMOF4 - Flow List: Listed Derivatives
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: PAR_VAR = Layout
Selection Text: P_BISDAT = Flows up to key date
Selection Text: P_VONDAT = Flows from key date
Selection Text: S_BUKRS = Company code
Selection Text: S_DEPOT = Securities account
Selection Text: S_GSART = Product type
Selection Text: S_RANL = ID number
Title: Flow List: Listed Derivatives
Text Symbol: P02 = Parameters
Text Symbol: S01 = General selections
INCLUDE RFPMCONS.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_VARIANT_DEFAULT_GET CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' EXPORTING i_save = 'A' "/ user specific save available CHANGING cs_variant = alv_variant EXCEPTIONS not_found = 1.
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING is_variant = alv_variant i_tabname_header = alv_name_thead i_tabname_item = alv_name_titem * it_default_fieldcat = i_save = 'A' IMPORTING e_exit = h_exit es_variant = alv_variant EXCEPTIONS not_found = 1.
REUSE_ALV_VARIANT_EXISTENCE CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE' EXPORTING i_save = 'A' CHANGING cs_variant = alv_variant.
TB_PROGRESS_INDICATOR CALL FUNCTION 'TB_PROGRESS_INDICATOR' EXPORTING id = 'SELECTION' EXCEPTIONS OTHERS = 0.
TB_PROGRESS_INDICATOR CALL FUNCTION 'TB_PROGRESS_INDICATOR' EXPORTING id = 'WORK' EXCEPTIONS OTHERS = 0.
LOAD_FLOWS_LISTED_DE CALL FUNCTION 'LOAD_FLOWS_LISTED_DE' EXPORTING i_sel_characteristics = t_sel_characteristics * i_sel_keyfigures = I_DVONDAT_BWG = p_vondat I_DBISDAT_BWG = p_bisdat * I_RSTICH = IMPORTING E_EXBWG_DE = t_exbwg_de EXCEPTIONS no_positions_found = 1 no_market_rate_found = 2 OTHERS = 3.
TB_PROGRESS_INDICATOR CALL FUNCTION 'TB_PROGRESS_INDICATOR' EXPORTING id = 'OUTPUT' EXCEPTIONS OTHERS = 0.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' i_callback_program = alv_variant-report * I_CALLBACK_PF_STATUS_SET = ' ' i_callback_user_command = l_user_command * I_STRUCTURE_NAME = is_layout = l_layout it_fieldcat = ct_fieldcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = it_sort = it_sort * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' i_save = 'A' is_variant = alv_variant * IT_EVENTS = * IT_EVENT_EXIT = * IS_PRINT = is_reprep_id = alv_reprep_id * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab = t_exbwg_de EXCEPTIONS program_error = 1 OTHERS = 2.
FPM_LOT_DE_READ_SINGLE CALL FUNCTION 'FPM_LOT_DE_READ_SINGLE' EXPORTING i_bukrs = p_bukrs i_rlot = p_rlot IMPORTING e_lot_data = l_lot_header EXCEPTIONS bukrs_not_qualified = 1 rlot_not_qualified = 2 not_found = 3 OTHERS = 4.
TB_DEAL_MAINTAIN_OBJNR CALL FUNCTION 'TB_DEAL_MAINTAIN_OBJNR' EXPORTING i_objnr = l_lot_header-objnr * I_TRANSACTIONTYPE = '1' EXCEPTIONS objnr = 1 deal = 2 call_not_possible = 3 OTHERS = 4 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.