SAP FVD_IOA_OBJ_GET_VDARL_MULT Function Module for To fetch the multiple loans









FVD_IOA_OBJ_GET_VDARL_MULT is a standard fvd ioa obj get vdarl 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 To fetch the multiple loans 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 ioa obj get vdarl mult FM, simply by entering the name FVD_IOA_OBJ_GET_VDARL_MULT into the relevant SAP transaction such as SE37 or SE38.

Function Group: FVD_IOA_OBJ
Program Name: SAPLFVD_IOA_OBJ
Main Program: SAPLFVD_IOA_OBJ
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FVD_IOA_OBJ_GET_VDARL_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 'FVD_IOA_OBJ_GET_VDARL_MULT'"To fetch the multiple loans
EXPORTING
I_TAB_WHERE = "Loan selection criteria
* I_BLOCK = 1000 "Count parameters
* I_LAST_RANL = "Contract Number

IMPORTING
E_TAB_VDARL = "Table Type for Table VDARL

EXCEPTIONS
NOT_FOUND = 1 PARAMETER_MISSING = 2
.



IMPORTING Parameters details for FVD_IOA_OBJ_GET_VDARL_MULT

I_TAB_WHERE - Loan selection criteria

Data type: RSDS_WHERE_TAB
Optional: No
Call by Reference: Yes

I_BLOCK - Count parameters

Data type: NUMC4
Default: 1000
Optional: Yes
Call by Reference: Yes

I_LAST_RANL - Contract Number

Data type: RANL
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FVD_IOA_OBJ_GET_VDARL_MULT

E_TAB_VDARL - Table Type for Table VDARL

Data type: TRTY_VDARL
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NOT_FOUND - No Loans found matching the criteria

Data type:
Optional: No
Call by Reference: Yes

PARAMETER_MISSING - Missing parameter

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_IOA_OBJ_GET_VDARL_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:
lv_not_found  TYPE STRING, "   
lv_e_tab_vdarl  TYPE TRTY_VDARL, "   
lv_i_tab_where  TYPE RSDS_WHERE_TAB, "   
lv_i_block  TYPE NUMC4, "   1000
lv_parameter_missing  TYPE NUMC4, "   
lv_i_last_ranl  TYPE RANL. "   

  CALL FUNCTION 'FVD_IOA_OBJ_GET_VDARL_MULT'  "To fetch the multiple loans
    EXPORTING
         I_TAB_WHERE = lv_i_tab_where
         I_BLOCK = lv_i_block
         I_LAST_RANL = lv_i_last_ranl
    IMPORTING
         E_TAB_VDARL = lv_e_tab_vdarl
    EXCEPTIONS
        NOT_FOUND = 1
        PARAMETER_MISSING = 2
. " FVD_IOA_OBJ_GET_VDARL_MULT




ABAP code using 7.40 inline data declarations to call FM FVD_IOA_OBJ_GET_VDARL_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_block) = 1000.
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!