RFKRV2PR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report creates an additional log for the transaction
If you would like to execute this report or see the full code listing simply enter RFKRV2PR 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.
Selection Text: P_LAUFD = D Date ID
Selection Text: P_LAUFI = D Identification
Title: FPRW: Additional Log
Text Symbol: 001 = Return Table
Text Symbol: 002 = Entries for Update by Trigger Table DFKKZW
Text Symbol: 003 = Orig. Record
Text Symbol: 004 = Item for Which No Adjustment Reason Found
Text Symbol: T01 = FPRW: Additional Log
Text Symbol: T02 = Legend
Text Symbol: T03 = Mass Run
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FKK_VALUATION_AREA_ACTIVE CALL FUNCTION 'FKK_VALUATION_AREA_ACTIVE' IMPORTING e_flg_valuation_area_active = lv_flg_val_area_active.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = g_repid i_internal_tabname = w_tabname1 i_structure_name = dd_struc1 i_inclname = g_repid CHANGING ct_fieldcat = gt_fieldcat1 EXCEPTIONS inconsistent_interface = 1 program_error = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = g_repid i_internal_tabname = w_tabname2 i_structure_name = dd_struc2 i_inclname = g_repid CHANGING ct_fieldcat = gt_fieldcat2 EXCEPTIONS inconsistent_interface = 1 program_error = 2.
REUSE_ALV_BLOCK_LIST_INIT CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT' EXPORTING i_callback_program = g_repid i_callback_pf_status_set = pf_status.
REUSE_ALV_BLOCK_LIST_HS_APPEND CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_HS_APPEND' EXPORTING is_layout = h_layout it_fieldcat = gt_fieldcat is_keyinfo = gs_keyinfo i_header_tabname = alv_tabname1 i_item_tabname = alv_tabname2 it_events = gt_events i_text = text-t01 TABLES t_outtab_header = it_fkkdd1 t_outtab_item = it_fkkdd_ret1.
REUSE_ALV_BLOCK_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY' EXPORTING is_print = gt_print.
REUSE_ALV_BLOCK_LIST_APPEND CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND' EXPORTING it_fieldcat = lt_fieldcat[] is_layout = l_layout i_tabname = 'GT_LEGENDE' it_events = lt_events i_text = text-t02 TABLES t_outtab = gt_legende.
HELP_VALUES_GET_NO_DD_NAME CALL FUNCTION 'HELP_VALUES_GET_NO_DD_NAME' "#EC * EXPORTING selectfield = l_selfield titel = 'Auswahl Massenlauf'(t03) IMPORTING ind = sy-tabix TABLES fields = tab_fields full_table = lt_runid EXCEPTIONS full_table_empty = 1 no_tablestructure_given = 2 no_tablefields_in_dictionary = 3 more_then_one_selectfield = 4 no_selectfield = 5 OTHERS = 6.
DYNP_VALUES_UPDATE CALL FUNCTION 'DYNP_VALUES_UPDATE' EXPORTING dyname = sy-cprog dynumb = sy-dynnr TABLES dynpfields = tab_update EXCEPTIONS OTHERS = 8.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.