SAP FVD_CLI_CNCL_DIS_SET Function Module for Update Changed CLI









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

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



Function FVD_CLI_CNCL_DIS_SET 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_CLI_CNCL_DIS_SET'"Update Changed CLI
EXPORTING
I_S_VDARL = "Loan
* I_LOGHANDLE = "Application Log: Log Handle
I_SLOANFUNC = "Application Subfunction
I_CALC_DATE = "CLI: Key Date for Calculation of Credit Life Insurance
I_REIMBURSMENT = "Credit Life Insurance Reimbursement
I_INSURANCE_CONTRIBUTION = "Single Premium for Credit Life Insurance
* I_POSTING_INFO = "Information on Posting Popup
* I_DISTRIBUTE_START = ' ' "allgemeines flag
* I_CALLBACK_FILL = "Function Name

IMPORTING
E_TAB_VDBEKI = "Table Type for Table VDBEKI
E_TAB_VDBEPI = "Table Type for Table VDBEPI
E_POSTING_INFO = "Information on Posting Popup

EXCEPTIONS
CUSTOMIZING_ERROR = 1 UPDATE_ERROR = 2 BEPP_ERROR = 3 NO_DOCUMENT = 4 NULL_AMOUNT = 5
.



IMPORTING Parameters details for FVD_CLI_CNCL_DIS_SET

I_S_VDARL - Loan

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

I_LOGHANDLE - Application Log: Log Handle

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

I_SLOANFUNC - Application Subfunction

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

I_CALC_DATE - CLI: Key Date for Calculation of Credit Life Insurance

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

I_REIMBURSMENT - Credit Life Insurance Reimbursement

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

I_INSURANCE_CONTRIBUTION - Single Premium for Credit Life Insurance

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

I_POSTING_INFO - Information on Posting Popup

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

I_DISTRIBUTE_START - allgemeines flag

Data type: FLAG
Default: SPACE
Optional: No
Call by Reference: Yes

I_CALLBACK_FILL - Function Name

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

EXPORTING Parameters details for FVD_CLI_CNCL_DIS_SET

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_POSTING_INFO - Information on Posting Popup

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

EXCEPTIONS details

CUSTOMIZING_ERROR - Error in customizing

Data type:
Optional: No
Call by Reference: Yes

UPDATE_ERROR - Fehler bei der Verbucung

Data type:
Optional: No
Call by Reference: Yes

BEPP_ERROR - Fehler Befüllung Bewegungssatz

Data type:
Optional: No
Call by Reference: Yes

NO_DOCUMENT - Kein Beleg erzeugt

Data type:
Optional: No
Call by Reference: Yes

NULL_AMOUNT - Betrag Null

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_CLI_CNCL_DIS_SET 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_i_s_vdarl  TYPE VDARL, "   
lv_e_tab_vdbeki  TYPE TRTY_VDBEKI, "   
lv_customizing_error  TYPE TRTY_VDBEKI, "   
lv_i_loghandle  TYPE BALLOGHNDL, "   
lv_e_tab_vdbepi  TYPE TRTY_VDBEPI, "   
lv_update_error  TYPE TRTY_VDBEPI, "   
lv_bepp_error  TYPE TRTY_VDBEPI, "   
lv_i_sloanfunc  TYPE VVSLOANFUNC, "   
lv_e_posting_info  TYPE FVD_CNCL_POSTING_INFO, "   
lv_i_calc_date  TYPE TB_CLI_CALCULATION_DATE, "   
lv_no_document  TYPE TB_CLI_CALCULATION_DATE, "   
lv_null_amount  TYPE TB_CLI_CALCULATION_DATE, "   
lv_i_reimbursment  TYPE TB_CLI_RECALC_CONTR, "   
lv_i_insurance_contribution  TYPE TB_CLI_INSURANCE, "   
lv_i_posting_info  TYPE FVD_CNCL_POSTING_INFO, "   
lv_i_distribute_start  TYPE FLAG, "   SPACE
lv_i_callback_fill  TYPE FUNCNAME. "   

  CALL FUNCTION 'FVD_CLI_CNCL_DIS_SET'  "Update Changed CLI
    EXPORTING
         I_S_VDARL = lv_i_s_vdarl
         I_LOGHANDLE = lv_i_loghandle
         I_SLOANFUNC = lv_i_sloanfunc
         I_CALC_DATE = lv_i_calc_date
         I_REIMBURSMENT = lv_i_reimbursment
         I_INSURANCE_CONTRIBUTION = lv_i_insurance_contribution
         I_POSTING_INFO = lv_i_posting_info
         I_DISTRIBUTE_START = lv_i_distribute_start
         I_CALLBACK_FILL = lv_i_callback_fill
    IMPORTING
         E_TAB_VDBEKI = lv_e_tab_vdbeki
         E_TAB_VDBEPI = lv_e_tab_vdbepi
         E_POSTING_INFO = lv_e_posting_info
    EXCEPTIONS
        CUSTOMIZING_ERROR = 1
        UPDATE_ERROR = 2
        BEPP_ERROR = 3
        NO_DOCUMENT = 4
        NULL_AMOUNT = 5
. " FVD_CLI_CNCL_DIS_SET




ABAP code using 7.40 inline data declarations to call FM FVD_CLI_CNCL_DIS_SET

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_distribute_start) = ' '.
 
 


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!