RFVDFAVI is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report 'Loan Summary' displays the data of the selected loan contract in an overview screen...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFVDFAVI into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FNVI - Loans: General Overview
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_ORANL = With Other Contracts
Selection Text: P_OPS = With Open Items
Selection Text: P_HAUPTD = Per Main Borrower
Selection Text: P_FINPRO = Per Finance Project
Selection Text: ASVYM =
Selection Text: ASVNR =
Selection Text: ASTYP =
Selection Text: ARORD =
Selection Text: ARHORD =
Selection Text: ARANL = Contract Number:
Selection Text: ABUKRS = Company Code:
Title: Loans: Summary
Text Symbol: 510 = Overpayment Balance * 22 characters will be displayed
Text Symbol: 509 = scheduled
Text Symbol: 508 = Repayment
Text Symbol: 507 = Collected
Text Symbol: 505 = Guaranteed Capital
Text Symbol: 504 = Remaining Capital
Text Symbol: 503 = Disbursement Obligation
Text Symbol: 502 = Capital on 01/01
Text Symbol: 501 = Date of Last Debit Position
Text Symbol: 500 = Capital
Text Symbol: 4C6 = Foreclosure
Text Symbol: 4B6 = Bankruptcy Proceedings
Text Symbol: 4A6 = Affidavit
Text Symbol: 4A4 = Delinquent
Text Symbol: 4A0 = Dunning Procedure
Text Symbol: 413 = not
Text Symbol: 412 = Issued
Text Symbol: 511 = Discount
Text Symbol: 512 = Accrued/Deferred
Text Symbol: 513 = Unscheduled
Text Symbol: 514 = Already Disbursed * 22 characters will be displayed
Text Symbol: 515 = Granted
Text Symbol: 516 = Incoming Payment
Text Symbol: 5A1 = Amount
Text Symbol: 5B2 = Payment Data
Text Symbol: 600 = Other Contracts
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FVD_DB_VDARL_GET_SNG CALL FUNCTION 'FVD_DB_VDARL_GET_SNG' EXPORTING i_bukrs = abukrs i_sarchiv = space i_ranl = aranl IMPORTING e_str_vdarl = vdarl EXCEPTIONS contract_not_found = 1 OTHERS = 2.
FVD_DB_VDARL_GET_SNG CALL FUNCTION 'FVD_DB_VDARL_GET_SNG' EXPORTING i_bukrs = abukrs i_sarchiv = space i_ranl = aranl IMPORTING e_str_vdarl = myvdarl EXCEPTIONS contract_not_found = 1 OTHERS = 2.
LOAN_SHOW_CONTRACT_ALL CALL FUNCTION 'LOAN_SHOW_CONTRACT_ALL' EXPORTING read_other_contracts = p_oranl read_open_items = p_ops TABLES contract = myvdarl EXCEPTIONS ranl_not_exist_in_bukrs = 1 no_partner_found_for_ranl = 2 no_contracts = 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.
The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.
This will then be available for everyone to easily find by simply searching on the report name RFVDFAVI or its description.