SAP FVD_CLI_GV_PROCESS Function Module for Consumer Loan: Processing CLI Based on BO









FVD_CLI_GV_PROCESS is a standard fvd cli gv 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 Consumer Loan: Processing CLI Based on BO 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 gv process FM, simply by entering the name FVD_CLI_GV_PROCESS into the relevant SAP transaction such as SE37 or SE38.

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



Function FVD_CLI_GV_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_CLI_GV_PROCESS'"Consumer Loan: Processing CLI Based on BO
EXPORTING
I_MODE = "Bearbeitungsgrund
I_MANDATORY_PARAMETER = "CLI: Struct. for Mandatory Parameters for Processing Bus.Op.
* I_INSURANCE_CASE = "Structure for Entering an Insurance Case
* I_LOG_HANDLE = "Application Log: Log Handle
* I_VDARL = "Loan
* I_RBO = "Business operation number (loans)
* I_FLG_STORNO = "Checkbox
* I_CHNG_PAYMENT = "CLI - Adjustment for Change in Disbursement

IMPORTING
E_RC = "Return Value, Return Value after ABAP Statements

CHANGING
* C_PROCESSING_PARAMETER = "CLI Bus. Op.: Structure for Items to Be Processed
* C_TAB_CLI_PERS = "Table Type for Insured Persons (RCLI_PERS_INSURED)

EXCEPTIONS
ERROR_MODE = 1 NOT_FOUND = 2 ERROR_WITH_READ_CLI = 3 ERROR_WITH_CHANGE_CLI = 4 ERROR_WITH_UPDATE_CLI = 5 ERROR_WITH_CALC_CLI = 6 NO_AUTHORIZATION_FOR_CHANGE = 7 NO_RBO_NUMBER = 8
.



IMPORTING Parameters details for FVD_CLI_GV_PROCESS

I_MODE - Bearbeitungsgrund

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

I_MANDATORY_PARAMETER - CLI: Struct. for Mandatory Parameters for Processing Bus.Op.

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

I_INSURANCE_CASE - Structure for Entering an Insurance Case

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

I_LOG_HANDLE - Application Log: Log Handle

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

I_VDARL - Loan

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

I_RBO - Business operation number (loans)

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

I_FLG_STORNO - Checkbox

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

I_CHNG_PAYMENT - CLI - Adjustment for Change in Disbursement

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

EXPORTING Parameters details for FVD_CLI_GV_PROCESS

E_RC - Return Value, Return Value after ABAP Statements

Data type: SY-SUBRC
Optional: No
Call by Reference: Yes

CHANGING Parameters details for FVD_CLI_GV_PROCESS

C_PROCESSING_PARAMETER - CLI Bus. Op.: Structure for Items to Be Processed

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

C_TAB_CLI_PERS - Table Type for Insured Persons (RCLI_PERS_INSURED)

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

EXCEPTIONS details

ERROR_MODE - Aufrufmodus falsch

Data type:
Optional: No
Call by Reference: Yes

NOT_FOUND - keine KLV zum Vertrag

Data type:
Optional: No
Call by Reference: Yes

ERROR_WITH_READ_CLI - Fehler beim Lesen der KLV

Data type:
Optional: No
Call by Reference: Yes

ERROR_WITH_CHANGE_CLI - Fehler beim Ändern der KLV - Daten

Data type:
Optional: No
Call by Reference: Yes

ERROR_WITH_UPDATE_CLI - Fehler bei der Übergabe an den Verbucher

Data type:
Optional: No
Call by Reference: Yes

ERROR_WITH_CALC_CLI - Fehler bei der Rückrechn./Neuberechnung

Data type:
Optional: No
Call by Reference: Yes

NO_AUTHORIZATION_FOR_CHANGE - keine Berechtigung zum Aendern der KLV

Data type:
Optional: No
Call by Reference: Yes

NO_RBO_NUMBER - RBO - Nummer fehlt im Aufruf

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_CLI_GV_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_e_rc  TYPE SY-SUBRC, "   
lv_i_mode  TYPE TB_CLI_MODE, "   
lv_error_mode  TYPE TB_CLI_MODE, "   
lv_c_processing_parameter  TYPE RCLI_PROCESSING_STRUCTURE, "   
lv_not_found  TYPE RCLI_PROCESSING_STRUCTURE, "   
lv_c_tab_cli_pers  TYPE TRTY_CLI_PERS_INSURED, "   
lv_i_mandatory_parameter  TYPE RCLI_BUSINESS_OPERATIONS, "   
lv_i_insurance_case  TYPE RCLI_INSURANCE_CASE, "   
lv_error_with_read_cli  TYPE RCLI_INSURANCE_CASE, "   
lv_i_log_handle  TYPE BALLOGHNDL, "   
lv_error_with_change_cli  TYPE BALLOGHNDL, "   
lv_i_vdarl  TYPE VDARL, "   
lv_error_with_update_cli  TYPE VDARL, "   
lv_i_rbo  TYPE RBO, "   
lv_error_with_calc_cli  TYPE RBO, "   
lv_i_flg_storno  TYPE XFELD, "   
lv_no_authorization_for_change  TYPE XFELD, "   
lv_no_rbo_number  TYPE XFELD, "   
lv_i_chng_payment  TYPE RCLI_CHNG_PAYMENT. "   

  CALL FUNCTION 'FVD_CLI_GV_PROCESS'  "Consumer Loan: Processing CLI Based on BO
    EXPORTING
         I_MODE = lv_i_mode
         I_MANDATORY_PARAMETER = lv_i_mandatory_parameter
         I_INSURANCE_CASE = lv_i_insurance_case
         I_LOG_HANDLE = lv_i_log_handle
         I_VDARL = lv_i_vdarl
         I_RBO = lv_i_rbo
         I_FLG_STORNO = lv_i_flg_storno
         I_CHNG_PAYMENT = lv_i_chng_payment
    IMPORTING
         E_RC = lv_e_rc
    CHANGING
         C_PROCESSING_PARAMETER = lv_c_processing_parameter
         C_TAB_CLI_PERS = lv_c_tab_cli_pers
    EXCEPTIONS
        ERROR_MODE = 1
        NOT_FOUND = 2
        ERROR_WITH_READ_CLI = 3
        ERROR_WITH_CHANGE_CLI = 4
        ERROR_WITH_UPDATE_CLI = 5
        ERROR_WITH_CALC_CLI = 6
        NO_AUTHORIZATION_FOR_CHANGE = 7
        NO_RBO_NUMBER = 8
. " FVD_CLI_GV_PROCESS




ABAP code using 7.40 inline data declarations to call FM FVD_CLI_GV_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.

"SELECT single SUBRC FROM SY INTO @DATA(ld_e_rc).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!