SAP FVD_CNCL_PROCESS Function Module for Execute Rescission
FVD_CNCL_PROCESS is a standard fvd cncl process SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Execute 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 process FM, simply by entering the name FVD_CNCL_PROCESS 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_PROCESS 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_PROCESS'"Execute Rescission.
EXPORTING
* I_DCNCL_E = SY-DATUM "Date of Declaration of Rescission
* I_FLG_FG = ' ' "allgemeines flag
* I_FLG_SIM = "Simulation
* I_DCNCL_ZE = SY-DATUM "Date of Incoming Payment
* I_LOGHANDLE = "Application Log: Log Handle
* I_TAB_VDBEKI = "Table Type for Table VDBEKI
* I_TAB_VDBEPI = "Table Type for Table VDBEPI
* I_TAB_VDBEPP = "Table Type for Table VDBEPP
* I_TAB_VZZBEPP = "Table Type for Structure VZZBEPP
* I_ZLSCH = "Payment Method
* I_BVTYP = "Partner Bank Type
IMPORTING
E_TAB_VDBEKI_REV = "Table Type for Table VDBEKI
E_TAB_VDBEPI_REV = "Table Type for Table VDBEPI
E_TAB_BSEG_REV = "Table Type for BSEG
E_TAB_RETURN = "Table with BAPI Return Information
E_TAB_VDBEPP_NEW = "Table Type for Table VDBEPP
E_TAB_VDBEPP_OLD = "Table Type for Table VDBEPP
CHANGING
C_STR_VDARL = "Loan
* C_STR_VDCNCL = "Rescission of Business Operation
EXCEPTIONS
FAILED = 1
IMPORTING Parameters details for FVD_CNCL_PROCESS
I_DCNCL_E - Date of Declaration of Rescission
Data type: TB_DCNCL_EDefault: SY-DATUM
Optional: Yes
Call by Reference: Yes
I_FLG_FG - allgemeines flag
Data type: FLAGDefault: ' '
Optional: Yes
Call by Reference: Yes
I_FLG_SIM - Simulation
Data type: FLAGOptional: Yes
Call by Reference: Yes
I_DCNCL_ZE - Date of Incoming Payment
Data type: TB_DCNCL_ZEDefault: SY-DATUM
Optional: Yes
Call by Reference: Yes
I_LOGHANDLE - Application Log: Log Handle
Data type: BALLOGHNDLOptional: Yes
Call by Reference: Yes
I_TAB_VDBEKI - Table Type for Table VDBEKI
Data type: TRTY_VDBEKIOptional: Yes
Call by Reference: Yes
I_TAB_VDBEPI - Table Type for Table VDBEPI
Data type: TRTY_VDBEPIOptional: Yes
Call by Reference: Yes
I_TAB_VDBEPP - Table Type for Table VDBEPP
Data type: TRTY_VDBEPPOptional: Yes
Call by Reference: Yes
I_TAB_VZZBEPP - Table Type for Structure VZZBEPP
Data type: TRTY_VZZBEPPOptional: Yes
Call by Reference: Yes
I_ZLSCH - Payment Method
Data type: DZLSCHOptional: Yes
Call by Reference: Yes
I_BVTYP - Partner Bank Type
Data type: BVTYPOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FVD_CNCL_PROCESS
E_TAB_VDBEKI_REV - Table Type for Table VDBEKI
Data type: TRTY_VDBEKIOptional: No
Call by Reference: Yes
E_TAB_VDBEPI_REV - Table Type for Table VDBEPI
Data type: TRTY_VDBEPIOptional: No
Call by Reference: Yes
E_TAB_BSEG_REV - Table Type for BSEG
Data type: TRTY_BSEGOptional: No
Call by Reference: Yes
E_TAB_RETURN - Table with BAPI Return Information
Data type: BAPIRETTABOptional: No
Call by Reference: No ( called with pass by value option)
E_TAB_VDBEPP_NEW - Table Type for Table VDBEPP
Data type: TRTY_VDBEPPOptional: No
Call by Reference: Yes
E_TAB_VDBEPP_OLD - Table Type for Table VDBEPP
Data type: TRTY_VDBEPPOptional: No
Call by Reference: Yes
CHANGING Parameters details for FVD_CNCL_PROCESS
C_STR_VDARL - Loan
Data type: VDARLOptional: No
Call by Reference: Yes
C_STR_VDCNCL - Rescission of Business Operation
Data type: VDCNCLOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
FAILED - Error
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FVD_CNCL_PROCESS 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_failed | TYPE STRING, " | |||
| lv_i_dcncl_e | TYPE TB_DCNCL_E, " SY-DATUM | |||
| lv_c_str_vdarl | TYPE VDARL, " | |||
| lv_e_tab_vdbeki_rev | TYPE TRTY_VDBEKI, " | |||
| lv_i_flg_fg | TYPE FLAG, " ' ' | |||
| lv_i_flg_sim | TYPE FLAG, " | |||
| lv_i_dcncl_ze | TYPE TB_DCNCL_ZE, " SY-DATUM | |||
| lv_c_str_vdcncl | TYPE VDCNCL, " | |||
| lv_e_tab_vdbepi_rev | TYPE TRTY_VDBEPI, " | |||
| lv_i_loghandle | TYPE BALLOGHNDL, " | |||
| lv_e_tab_bseg_rev | TYPE TRTY_BSEG, " | |||
| lv_e_tab_return | TYPE BAPIRETTAB, " | |||
| lv_i_tab_vdbeki | TYPE TRTY_VDBEKI, " | |||
| lv_i_tab_vdbepi | TYPE TRTY_VDBEPI, " | |||
| lv_e_tab_vdbepp_new | TYPE TRTY_VDBEPP, " | |||
| lv_i_tab_vdbepp | TYPE TRTY_VDBEPP, " | |||
| lv_e_tab_vdbepp_old | TYPE TRTY_VDBEPP, " | |||
| lv_i_tab_vzzbepp | TYPE TRTY_VZZBEPP, " | |||
| lv_i_zlsch | TYPE DZLSCH, " | |||
| lv_i_bvtyp | TYPE BVTYP. " |
|   CALL FUNCTION 'FVD_CNCL_PROCESS' "Execute Rescission |
| EXPORTING | ||
| I_DCNCL_E | = lv_i_dcncl_e | |
| I_FLG_FG | = lv_i_flg_fg | |
| I_FLG_SIM | = lv_i_flg_sim | |
| I_DCNCL_ZE | = lv_i_dcncl_ze | |
| I_LOGHANDLE | = lv_i_loghandle | |
| I_TAB_VDBEKI | = lv_i_tab_vdbeki | |
| I_TAB_VDBEPI | = lv_i_tab_vdbepi | |
| I_TAB_VDBEPP | = lv_i_tab_vdbepp | |
| I_TAB_VZZBEPP | = lv_i_tab_vzzbepp | |
| I_ZLSCH | = lv_i_zlsch | |
| I_BVTYP | = lv_i_bvtyp | |
| IMPORTING | ||
| E_TAB_VDBEKI_REV | = lv_e_tab_vdbeki_rev | |
| E_TAB_VDBEPI_REV | = lv_e_tab_vdbepi_rev | |
| E_TAB_BSEG_REV | = lv_e_tab_bseg_rev | |
| E_TAB_RETURN | = lv_e_tab_return | |
| E_TAB_VDBEPP_NEW | = lv_e_tab_vdbepp_new | |
| E_TAB_VDBEPP_OLD | = lv_e_tab_vdbepp_old | |
| CHANGING | ||
| C_STR_VDARL | = lv_c_str_vdarl | |
| C_STR_VDCNCL | = lv_c_str_vdcncl | |
| EXCEPTIONS | ||
| FAILED = 1 | ||
| . " FVD_CNCL_PROCESS | ||
ABAP code using 7.40 inline data declarations to call FM FVD_CNCL_PROCESS
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_dcncl_e) | = SY-DATUM. | |||
| DATA(ld_i_flg_fg) | = ' '. | |||
| DATA(ld_i_dcncl_ze) | = SY-DATUM. | |||
Search for further information about these or an SAP related objects