SAP FVD_RFC_VALUES_GETDETAIL Function Module for Loan RFC: Collateral Values Detailed Data for Object
FVD_RFC_VALUES_GETDETAIL is a standard fvd rfc values getdetail SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Loan RFC: Collateral Values Detailed Data for Object processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for fvd rfc values getdetail FM, simply by entering the name FVD_RFC_VALUES_GETDETAIL into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVD_RFC_VALUES
Program Name: SAPLFVD_RFC_VALUES
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function FVD_RFC_VALUES_GETDETAIL pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'FVD_RFC_VALUES_GETDETAIL'"Loan RFC: Collateral Values Detailed Data for Object.
EXPORTING
OBJECT_NO = "Collateral Object Number
IMPORTING
ERROR = "Message type: S Success, E Error, W Warning, I Info, A Abort
TABLES
E_TAB_BAPI_VDHOBJBL = "Loans: Collateral Value Calculation/Expert Report on Object
E_TAB_BAPI_VDBLPO = "Loans: Collateral Value Calculation Fast Entry - Item
RETURN = "Table with BAPI Return Information
E_TAB_BAPI_VDBLBAW = "Loans: Collateral Value Building Value
E_TAB_BAPI_VDBLBEWI = "Loans: Administrative Costs
E_TAB_BAPI_VDBLBOW = "Loans: Collateral Value Land Value
E_TAB_BAPI_VDBLEW = "Revenue Value Collateral Value
E_TAB_BAPI_VDBLREW = "Loans: Collateral Val. Gross Revenue Value per Building Part
E_TAB_BAPI_VDBLSS = "Collateral Val. Real Value Other
E_TAB_BAPI_VDBLSWT = "Loans: Collateral Value Real Value Resid. Prop./ Part-Ownshp
E_TAB_BAPI_VDBLKO = "Loans: Collateral Value Calculation Fast Entry - Header Data
IMPORTING Parameters details for FVD_RFC_VALUES_GETDETAIL
OBJECT_NO - Collateral Object Number
Data type: ROBJNROptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FVD_RFC_VALUES_GETDETAIL
ERROR - Message type: S Success, E Error, W Warning, I Info, A Abort
Data type: BAPI_MTYPEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FVD_RFC_VALUES_GETDETAIL
E_TAB_BAPI_VDHOBJBL - Loans: Collateral Value Calculation/Expert Report on Object
Data type: BAPICOLL_VDHOBJBLOptional: No
Call by Reference: Yes
E_TAB_BAPI_VDBLPO - Loans: Collateral Value Calculation Fast Entry - Item
Data type: BAPICOLL_VDBLPOOptional: No
Call by Reference: Yes
RETURN - Table with BAPI Return Information
Data type: BAPIRETTABOptional: No
Call by Reference: Yes
E_TAB_BAPI_VDBLBAW - Loans: Collateral Value Building Value
Data type: BAPICOLL_VDBLBAWOptional: No
Call by Reference: Yes
E_TAB_BAPI_VDBLBEWI - Loans: Administrative Costs
Data type: BAPICOLL_VDBLBEWIOptional: No
Call by Reference: Yes
E_TAB_BAPI_VDBLBOW - Loans: Collateral Value Land Value
Data type: BAPICOLL_VDBLBOWOptional: No
Call by Reference: Yes
E_TAB_BAPI_VDBLEW - Revenue Value Collateral Value
Data type: BAPICOLL_VDBLEWOptional: No
Call by Reference: Yes
E_TAB_BAPI_VDBLREW - Loans: Collateral Val. Gross Revenue Value per Building Part
Data type: BAPICOLL_VDBLREWOptional: No
Call by Reference: Yes
E_TAB_BAPI_VDBLSS - Collateral Val. Real Value Other
Data type: BAPICOLL_VDBLSSOptional: No
Call by Reference: Yes
E_TAB_BAPI_VDBLSWT - Loans: Collateral Value Real Value Resid. Prop./ Part-Ownshp
Data type: BAPICOLL_VDBLSWTOptional: No
Call by Reference: Yes
E_TAB_BAPI_VDBLKO - Loans: Collateral Value Calculation Fast Entry - Header Data
Data type: BAPICOLL_VDBLKOOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FVD_RFC_VALUES_GETDETAIL Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_error | TYPE BAPI_MTYPE, " | |||
| lv_object_no | TYPE ROBJNR, " | |||
| lt_e_tab_bapi_vdhobjbl | TYPE STANDARD TABLE OF BAPICOLL_VDHOBJBL, " | |||
| lt_e_tab_bapi_vdblpo | TYPE STANDARD TABLE OF BAPICOLL_VDBLPO, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRETTAB, " | |||
| lt_e_tab_bapi_vdblbaw | TYPE STANDARD TABLE OF BAPICOLL_VDBLBAW, " | |||
| lt_e_tab_bapi_vdblbewi | TYPE STANDARD TABLE OF BAPICOLL_VDBLBEWI, " | |||
| lt_e_tab_bapi_vdblbow | TYPE STANDARD TABLE OF BAPICOLL_VDBLBOW, " | |||
| lt_e_tab_bapi_vdblew | TYPE STANDARD TABLE OF BAPICOLL_VDBLEW, " | |||
| lt_e_tab_bapi_vdblrew | TYPE STANDARD TABLE OF BAPICOLL_VDBLREW, " | |||
| lt_e_tab_bapi_vdblss | TYPE STANDARD TABLE OF BAPICOLL_VDBLSS, " | |||
| lt_e_tab_bapi_vdblswt | TYPE STANDARD TABLE OF BAPICOLL_VDBLSWT, " | |||
| lt_e_tab_bapi_vdblko | TYPE STANDARD TABLE OF BAPICOLL_VDBLKO. " |
|   CALL FUNCTION 'FVD_RFC_VALUES_GETDETAIL' "Loan RFC: Collateral Values Detailed Data for Object |
| EXPORTING | ||
| OBJECT_NO | = lv_object_no | |
| IMPORTING | ||
| ERROR | = lv_error | |
| TABLES | ||
| E_TAB_BAPI_VDHOBJBL | = lt_e_tab_bapi_vdhobjbl | |
| E_TAB_BAPI_VDBLPO | = lt_e_tab_bapi_vdblpo | |
| RETURN | = lt_return | |
| E_TAB_BAPI_VDBLBAW | = lt_e_tab_bapi_vdblbaw | |
| E_TAB_BAPI_VDBLBEWI | = lt_e_tab_bapi_vdblbewi | |
| E_TAB_BAPI_VDBLBOW | = lt_e_tab_bapi_vdblbow | |
| E_TAB_BAPI_VDBLEW | = lt_e_tab_bapi_vdblew | |
| E_TAB_BAPI_VDBLREW | = lt_e_tab_bapi_vdblrew | |
| E_TAB_BAPI_VDBLSS | = lt_e_tab_bapi_vdblss | |
| E_TAB_BAPI_VDBLSWT | = lt_e_tab_bapi_vdblswt | |
| E_TAB_BAPI_VDBLKO | = lt_e_tab_bapi_vdblko | |
| . " FVD_RFC_VALUES_GETDETAIL | ||
ABAP code using 7.40 inline data declarations to call FM FVD_RFC_VALUES_GETDETAIL
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects