RFVIRS10 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 RFVIRS10 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FORS3 - RE: Generate Resubmission Dates
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: S_RECNTY = D Contract type
Selection Text: S_RECNNR = D Contract number
Selection Text: S_RECNEN = D Contract end date
Selection Text: S_RECNBE = D Contract start date
Selection Text: S_RECNAD = D Adjustment type
Selection Text: S_BUKRS = D Company code
Selection Text: P_SIMUL = Simulation
Selection Text: P_DLAST = Generate dates to
Title: RE: Generate Resubmission Dates for General Contracts
Text Symbol: T40 = Log is being created
Text Symbol: T30 = Deadline generation update
Text Symbol: T20 = Data is being read ...
Text Symbol: T02 = Parameter
Text Symbol: T01 = Selection contracts
Text Symbol: M03 = Data updated successfully
Text Symbol: M02 = Data is unchanged
Text Symbol: M01 = Data is currently locked
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RE_RA_GET_SMVART_VALUES call function 'RE_RA_GET_SMVART_VALUES' exporting display = 'X' i_new_types = 'X' dynprofield = 'S_RECNTY-LOW' i_long_name = 'X'.
RECN_RESUBMIT_LOAD_DATA CALL FUNCTION 'RECN_RESUBMIT_LOAD_DATA' EXPORTING iv_intreno = pr_vicn01-intreno iv_db_load = 'X' iv_display = ' ' IMPORTING ev_locked = lb_locked EXCEPTIONS db_load_failed = 1 OTHERS = 2.
RECN_RESUBMIT_SET_OBJDAT CALL FUNCTION 'RECN_RESUBMIT_SET_OBJDAT' EXPORTING iv_last_date = pd_last_date iv_load_objd = ' ' iv_no_scroll = ' ' CHANGING cv_vicn01 = lr_vicn01 EXCEPTIONS db_load_failed = 1 OTHERS = 2.
RECN_RESUBMIT_RECOMPUTE CALL FUNCTION 'RECN_RESUBMIT_RECOMPUTE' EXPORTING iv_last_date = pd_last_date iv_request = ' ' EXCEPTIONS rule_not_found = 1 OTHERS = 2.
RECN_RESUBMIT_SAVE_DATA CALL FUNCTION 'RECN_RESUBMIT_SAVE_DATA' EXPORTING iv_db_save = lb_db_save iv_dequeue = 'X' iv_refresh = ' ' IMPORTING ev_no_change = lb_no_change EXCEPTIONS db_save_failed = 1 OTHERS = 2.
RECN_RESUBMIT_MAINTENANCE CALL FUNCTION 'RECN_RESUBMIT_MAINTENANCE' EXPORTING iv_scrnmode = 'M' "Modalbild der Optik wegen iv_intreno = lc_intreno iv_display = lb_display iv_last_date = p_dlast IMPORTING ev_endcode = lc_endcode EXCEPTIONS OTHERS = 1.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = lr_log EXCEPTIONS OTHERS = 1.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_s_msg = lr_msg EXCEPTIONS log_not_found = 0 OTHERS = 1.
BAL_DSP_PROFILE_STANDARD_GET CALL FUNCTION 'BAL_DSP_PROFILE_STANDARD_GET' IMPORTING e_s_display_profile = lr_display_profile EXCEPTIONS OTHERS = 1.
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 = * I_T_MSG_HANDLE = i_s_display_profile = lr_display_profile EXCEPTIONS OTHERS = 1.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = li_act_progress text = pc_info_text EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.