SAP FVDS_OBJECT_GET_MULT Function Module for Loans: Determine Data for Multiple Collateral Objects
FVDS_OBJECT_GET_MULT is a standard fvds object get mult SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Loans: Determine Data for Multiple Collateral Objects 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 fvds object get mult FM, simply by entering the name FVDS_OBJECT_GET_MULT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVDS
Program Name: SAPLFVDS
Main Program: SAPLFVDS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVDS_OBJECT_GET_MULT 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 'FVDS_OBJECT_GET_MULT'"Loans: Determine Data for Multiple Collateral Objects.
EXPORTING
* I_FLG_COMPLETE_TABLE = ' ' "komplette Tabelle VDHOBJ: TRUE (='X') und FALSE (=' ')
* I_FLG_ADDRESS = ' ' "Adresse zum Objekt: TRUE (='X') und FALSE (=' ')
* I_TAB_VIGBUCH_KEY = "Table Type for Land Register Key
* I_TAB_VDHOBJ_KEY = "Table Type for Table VDHOBJ (Collateral Object)
* I_SOBJART = "Object Type
* I_RKLAMMER = "Object master number
* I_TAB_VDARL_KEY = "Table Type for Key VDARL
* I_ADDRESS = "Adressdaten für Suche im CMS
IMPORTING
E_TAB_VDHOBJ = "Table Type for Table VDHOBJ (Collateral Object)
E_FLG_CMS = "CMS aktiv: TRUE (='X') und FALSE (=' ')
TABLES
* E_OBJECT = "Object Data (Virtual Object) - Internal
* E_ADDRESS = "Address Return Structure
EXCEPTIONS
NOT_FOUND = 1 NO_VALID_PARAMETERS = 2 INTERNAL_ERROR = 3
IMPORTING Parameters details for FVDS_OBJECT_GET_MULT
I_FLG_COMPLETE_TABLE - komplette Tabelle VDHOBJ: TRUE (='X') und FALSE (=' ')
Data type: BOOLE_DDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FLG_ADDRESS - Adresse zum Objekt: TRUE (='X') und FALSE (=' ')
Data type: BOOLE_DDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_TAB_VIGBUCH_KEY - Table Type for Land Register Key
Data type: TRTY_SGRUNDBOptional: Yes
Call by Reference: No ( called with pass by value option)
I_TAB_VDHOBJ_KEY - Table Type for Table VDHOBJ (Collateral Object)
Data type: TRTY_VDHOBJ_KEYOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SOBJART - Object Type
Data type: SOBJARTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RKLAMMER - Object master number
Data type: VVROBJSTMOptional: Yes
Call by Reference: No ( called with pass by value option)
I_TAB_VDARL_KEY - Table Type for Key VDARL
Data type: TRTY_VDARL_KEYOptional: Yes
Call by Reference: No ( called with pass by value option)
I_ADDRESS - Adressdaten für Suche im CMS
Data type: ADDR1_DATAOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FVDS_OBJECT_GET_MULT
E_TAB_VDHOBJ - Table Type for Table VDHOBJ (Collateral Object)
Data type: TRTY_VDHOBJOptional: No
Call by Reference: Yes
E_FLG_CMS - CMS aktiv: TRUE (='X') und FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FVDS_OBJECT_GET_MULT
E_OBJECT - Object Data (Virtual Object) - Internal
Data type: VZOBJECT_INTOptional: Yes
Call by Reference: Yes
E_ADDRESS - Address Return Structure
Data type: ADDR1_VALOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND - Object does not exist
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_VALID_PARAMETERS - keine gültigen Selektionsparameter
Data type:Optional: No
Call by Reference: Yes
INTERNAL_ERROR - interner Fehler Adressdaten
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FVDS_OBJECT_GET_MULT 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: | ||||
| lt_e_object | TYPE STANDARD TABLE OF VZOBJECT_INT, " | |||
| lv_not_found | TYPE VZOBJECT_INT, " | |||
| lv_e_tab_vdhobj | TYPE TRTY_VDHOBJ, " | |||
| lv_i_flg_complete_table | TYPE BOOLE_D, " SPACE | |||
| lt_e_address | TYPE STANDARD TABLE OF ADDR1_VAL, " | |||
| lv_e_flg_cms | TYPE BOOLE_D, " | |||
| lv_i_flg_address | TYPE BOOLE_D, " SPACE | |||
| lv_no_valid_parameters | TYPE BOOLE_D, " | |||
| lv_internal_error | TYPE BOOLE_D, " | |||
| lv_i_tab_vigbuch_key | TYPE TRTY_SGRUNDB, " | |||
| lv_i_tab_vdhobj_key | TYPE TRTY_VDHOBJ_KEY, " | |||
| lv_i_sobjart | TYPE SOBJART, " | |||
| lv_i_rklammer | TYPE VVROBJSTM, " | |||
| lv_i_tab_vdarl_key | TYPE TRTY_VDARL_KEY, " | |||
| lv_i_address | TYPE ADDR1_DATA. " |
|   CALL FUNCTION 'FVDS_OBJECT_GET_MULT' "Loans: Determine Data for Multiple Collateral Objects |
| EXPORTING | ||
| I_FLG_COMPLETE_TABLE | = lv_i_flg_complete_table | |
| I_FLG_ADDRESS | = lv_i_flg_address | |
| I_TAB_VIGBUCH_KEY | = lv_i_tab_vigbuch_key | |
| I_TAB_VDHOBJ_KEY | = lv_i_tab_vdhobj_key | |
| I_SOBJART | = lv_i_sobjart | |
| I_RKLAMMER | = lv_i_rklammer | |
| I_TAB_VDARL_KEY | = lv_i_tab_vdarl_key | |
| I_ADDRESS | = lv_i_address | |
| IMPORTING | ||
| E_TAB_VDHOBJ | = lv_e_tab_vdhobj | |
| E_FLG_CMS | = lv_e_flg_cms | |
| TABLES | ||
| E_OBJECT | = lt_e_object | |
| E_ADDRESS | = lt_e_address | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| NO_VALID_PARAMETERS = 2 | ||
| INTERNAL_ERROR = 3 | ||
| . " FVDS_OBJECT_GET_MULT | ||
ABAP code using 7.40 inline data declarations to call FM FVDS_OBJECT_GET_MULT
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.| DATA(ld_i_flg_complete_table) | = ' '. | |||
| DATA(ld_i_flg_address) | = ' '. | |||
Search for further information about these or an SAP related objects