SAP FVD_CNCL_CHECK Function Module for Check Rescission









FVD_CNCL_CHECK is a standard fvd cncl check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check Rescission 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 cncl check FM, simply by entering the name FVD_CNCL_CHECK into the relevant SAP transaction such as SE37 or SE38.

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



Function FVD_CNCL_CHECK 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_CNCL_CHECK'"Check Rescission
EXPORTING
I_VDARL_KEY = "Company Code
I_DINSTR = "Instruction Date for Business Operation Rescind Loan
I_DCNCL_E = "Date of Declaration of Rescission
I_ZLSCH = "Payment Method
I_BVTYP = "Partner Bank Type
* I_LOGHANDLE = "Application Log: Log Handle

IMPORTING
E_TAB_VDBEKI = "Table Type for Table VDBEKI
E_TAB_VDBEPI = "Table Type for Table VDBEPI
E_TAB_VDBEPP = "Table Type for Table VDBEPP
E_TAB_VZZBEPP = "Table Type for Structure VZZBEPP
E_STR_VDCNCL = "Rescission of Business Operation
E_STR_VDARL = "Loan

EXCEPTIONS
ERROR = 1 FG = 2
.



IMPORTING Parameters details for FVD_CNCL_CHECK

I_VDARL_KEY - Company Code

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

I_DINSTR - Instruction Date for Business Operation Rescind Loan

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

I_DCNCL_E - Date of Declaration of Rescission

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

I_ZLSCH - Payment Method

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

I_BVTYP - Partner Bank Type

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

I_LOGHANDLE - Application Log: Log Handle

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

EXPORTING Parameters details for FVD_CNCL_CHECK

E_TAB_VDBEKI - Table Type for Table VDBEKI

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

E_TAB_VDBEPI - Table Type for Table VDBEPI

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

E_TAB_VDBEPP - Table Type for Table VDBEPP

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

E_TAB_VZZBEPP - Table Type for Structure VZZBEPP

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

E_STR_VDCNCL - Rescission of Business Operation

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

E_STR_VDARL - Loan

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

EXCEPTIONS details

ERROR - Error

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

FG - Release

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for FVD_CNCL_CHECK 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 STRING, "   
lv_i_vdarl_key  TYPE VDARL_KEY, "   
lv_e_tab_vdbeki  TYPE TRTY_VDBEKI, "   
lv_fg  TYPE TRTY_VDBEKI, "   
lv_i_dinstr  TYPE TB_DINSTR, "   
lv_e_tab_vdbepi  TYPE TRTY_VDBEPI, "   
lv_i_dcncl_e  TYPE TB_DCNCL_E, "   
lv_e_tab_vdbepp  TYPE TRTY_VDBEPP, "   
lv_i_zlsch  TYPE DZLSCH, "   
lv_e_tab_vzzbepp  TYPE TRTY_VZZBEPP, "   
lv_i_bvtyp  TYPE BVTYP, "   
lv_e_str_vdcncl  TYPE VDCNCL, "   
lv_e_str_vdarl  TYPE VDARL, "   
lv_i_loghandle  TYPE BALLOGHNDL. "   

  CALL FUNCTION 'FVD_CNCL_CHECK'  "Check Rescission
    EXPORTING
         I_VDARL_KEY = lv_i_vdarl_key
         I_DINSTR = lv_i_dinstr
         I_DCNCL_E = lv_i_dcncl_e
         I_ZLSCH = lv_i_zlsch
         I_BVTYP = lv_i_bvtyp
         I_LOGHANDLE = lv_i_loghandle
    IMPORTING
         E_TAB_VDBEKI = lv_e_tab_vdbeki
         E_TAB_VDBEPI = lv_e_tab_vdbepi
         E_TAB_VDBEPP = lv_e_tab_vdbepp
         E_TAB_VZZBEPP = lv_e_tab_vzzbepp
         E_STR_VDCNCL = lv_e_str_vdcncl
         E_STR_VDARL = lv_e_str_vdarl
    EXCEPTIONS
        ERROR = 1
        FG = 2
. " FVD_CNCL_CHECK




ABAP code using 7.40 inline data declarations to call FM FVD_CNCL_CHECK

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



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!