RFVIMASSREV 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 RFVIMASSREV into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FOK7 - Mass Notice on Lease-Out
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: ACT_MOD = Create and Activate
Selection Text: PDEINKUE = D Receipt of notice
Selection Text: PDFAENAC = D Follow-up postings due on
Selection Text: PDKUABG = D Rejected on
Selection Text: PDKUEWU = D Notice request
Selection Text: PDKUEZU = D Notice per
Selection Text: PDKUZUG = D Approved on
Selection Text: PLEERGD = D Vacancy reason
Selection Text: PRABLGRU = D Reason for rejection
Selection Text: PRKUEGRU = D Reason for Notice
Selection Text: SAV_MOD = Create
Title: Lease-Out Termination
Text Symbol: 001 = Unknown
Text Symbol: 050 = Notice data
Text Symbol: 051 = Tenant
Text Symbol: 052 = Notice status
INCLUDE RFVICNSV.
INCLUDE RFVICNGP.
INCLUDE FVIMVCDF.
INCLUDE FVIMVCDV.
INCLUDE SBAL_CONSTANTS.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_LIST_DISPLAY call function 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_pf_status_set = g_status i_callback_user_command = g_user_command is_layout = s_layout it_fieldcat = t_fieldcat[] i_buffer_active = 'X' TABLES t_outtab = mvdata.
BAL_LOG_CREATE call function 'BAL_LOG_CREATE' EXPORTING i_s_log = g_s_log EXCEPTIONS log_header_inconsistent = 1 others = 2.
FV7V_REVERSE_CONTRACT call function 'FV7V_REVERSE_CONTRACT' EXPORTING bukrs = mvdata-bukrs smive = mvdata-smive dkuezu = pdkuezu deinkue = pdeinkue dfaenach = pdfaenac revpara = revpara activate = act_mod TABLES msgtab = msgtab EXCEPTIONS reversal_failed = 1 others = 2.
BAL_GLB_MSG_DEFAULTS_GET call function 'BAL_GLB_MSG_DEFAULTS_GET' IMPORTING e_s_msg_defaults = l_s_msg_defaults.
BAL_GLB_MSG_DEFAULTS_SET call function 'BAL_GLB_MSG_DEFAULTS_SET' EXPORTING i_s_msg_defaults = l_s_msg_defaults.
BAL_LOG_MSG_ADD call function 'BAL_LOG_MSG_ADD' EXPORTING i_s_msg = g_s_msg EXCEPTIONS others = 1.
BAL_DSP_PROFILE_STANDARD_GET call function 'BAL_DSP_PROFILE_STANDARD_GET' IMPORTING e_s_display_profile = g_s_display_profile.
BAL_DSP_LOG_DISPLAY call function 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = g_s_display_profile EXCEPTIONS others = 1.
RE_RA_CALC_KUEND call function 'RE_RA_CALC_KUEND' EXPORTING i_dmibeg = pvimimv-dmibeg i_kueart = pvimimv-skueart i_mietre = csmietr i_smvart = pvimimv-smvart i_kuekey = pvimimv-skuekey i_intreno = pvimimv-intreno i_start_dat = deinkue i_kuetype = pkuetype IMPORTING e_kuedate = dkgstzl EXCEPTIONS compute_not_possible = 1 not_valid_kuend_frist = 2 others = 3.
REAL_ESTATE_PARTNER_DATA_READ call function 'REAL_ESTATE_PARTNER_DATA_READ' EXPORTING i1_roletyp = con_roletyp-hauptmieter i1_sobjekt = sobjekt i1_snumobj = con_snumobj-immo i_lines = 1 i_date = sy-datum i_bukrs = bukrs i_kz_no_address = 'X' IMPORTING e_adrs = adrs EXCEPTIONS address_not_found = 1 partner_not_found = 2 unknown_error = 3 partner_relation_not_found = 4 others = 5.
FVAU_AUTHORITY_CHECK call function 'FVAU_AUTHORITY_CHECK' EXPORTING object = auth_object authpar = authpar EXCEPTIONS no_authority = 1 invalid_object = 2 others = 3.
FVAU_AUTHORITY_CHECK call function 'FVAU_AUTHORITY_CHECK' EXPORTING object = con_auth_obj_buk authpar = authpar EXCEPTIONS no_authority = 1 invalid_object = 2 others = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.