SAP FVD_PAY_OBJ_PREPARE_IPDRIVENCF Function Module for Create and Prepare Postings for IPs of Payment-Driven Cash Flows









FVD_PAY_OBJ_PREPARE_IPDRIVENCF is a standard fvd pay obj prepare ipdrivencf SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create and Prepare Postings for IPs of Payment-Driven Cash Flows 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 pay obj prepare ipdrivencf FM, simply by entering the name FVD_PAY_OBJ_PREPARE_IPDRIVENCF into the relevant SAP transaction such as SE37 or SE38.

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



Function FVD_PAY_OBJ_PREPARE_IPDRIVENCF 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_PAY_OBJ_PREPARE_IPDRIVENCF'"Create and Prepare Postings for IPs of Payment-Driven Cash Flows
EXPORTING
I_STR_VDARL = "Loan
* I_STR_VZZKOKO = "KOKO aus Rückzahlung
* I_TAB_VDBEKI = "VDBEKI falls kein OP auf DB (z.B. Simulation)
* I_TAB_VDBEPI = "VDBEPI falls kein OP auf DB (z.B. Simulation)
* I_FLG_CHECK_FOR_PAYOFF = 'X' "Restkapital kann nur durch gebuchte Rückzahlun auf 0 gebracht werden
* I_FLG_FROM_PAYOFF = "Aufruf auf Rückzahlungsprogramm
* I_BUDAT = "Posting Date in the Document
* I_TAB_VZZBEPP = "Table Type for Structure VZZBEPP

IMPORTING
E_TAB_RIPBEPP_SPECIAL = "Table Type for Postprocessing Situation for PSCF Inc. Pmnts
E_TAB_VZZBEPP = "Table Type for Structure VZZBEPP

CHANGING
C_TAB_VDBEPP = "Table Type for Table VDBEPP
C_TAB_ADDBEPP = "Table Type for Table ADDBEPP

EXCEPTIONS
POSTED_PERIOD_ERROR = 1 INCONSISTENCY_ERROR = 2 PAYOFF_ERROR = 3 UNOPENED_PERIOD_ERROR = 4
.



IMPORTING Parameters details for FVD_PAY_OBJ_PREPARE_IPDRIVENCF

I_STR_VDARL - Loan

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

I_STR_VZZKOKO - KOKO aus Rückzahlung

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

I_TAB_VDBEKI - VDBEKI falls kein OP auf DB (z.B. Simulation)

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

I_TAB_VDBEPI - VDBEPI falls kein OP auf DB (z.B. Simulation)

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

I_FLG_CHECK_FOR_PAYOFF - Restkapital kann nur durch gebuchte Rückzahlun auf 0 gebracht werden

Data type: XFELD
Default: 'X'
Optional: Yes
Call by Reference: Yes

I_FLG_FROM_PAYOFF - Aufruf auf Rückzahlungsprogramm

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

I_BUDAT - Posting Date in the Document

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

I_TAB_VZZBEPP - Table Type for Structure VZZBEPP

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

EXPORTING Parameters details for FVD_PAY_OBJ_PREPARE_IPDRIVENCF

E_TAB_RIPBEPP_SPECIAL - Table Type for Postprocessing Situation for PSCF Inc. Pmnts

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

E_TAB_VZZBEPP - Table Type for Structure VZZBEPP

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

CHANGING Parameters details for FVD_PAY_OBJ_PREPARE_IPDRIVENCF

C_TAB_VDBEPP - Table Type for Table VDBEPP

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

C_TAB_ADDBEPP - Table Type for Table ADDBEPP

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

EXCEPTIONS details

POSTED_PERIOD_ERROR - Zahlungseingang hätte gebuchten Zins beeinflusst

Data type:
Optional: No
Call by Reference: Yes

INCONSISTENCY_ERROR - Inkonsistenter Datenzustand

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

PAYOFF_ERROR - Paid in Full without Posted BO Payoff

Data type:
Optional: No
Call by Reference: Yes

UNOPENED_PERIOD_ERROR - Zahlungseingang in Periode ohne gebuchte Leistungsrate

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_PAY_OBJ_PREPARE_IPDRIVENCF 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_str_vdarl  TYPE VDARL, "   
lv_c_tab_vdbepp  TYPE TRTY_VDBEPP, "   
lv_posted_period_error  TYPE TRTY_VDBEPP, "   
lv_e_tab_ripbepp_special  TYPE TRTY_RIPBEPP_SPECIAL, "   
lv_c_tab_addbepp  TYPE TRTY_ADDBEPP, "   
lv_e_tab_vzzbepp  TYPE TRTY_VZZBEPP, "   
lv_i_str_vzzkoko  TYPE VZZKOKO, "   
lv_inconsistency_error  TYPE VZZKOKO, "   
lv_i_tab_vdbeki  TYPE TRTY_VDBEKI, "   
lv_payoff_error  TYPE TRTY_VDBEKI, "   
lv_i_tab_vdbepi  TYPE TRTY_VDBEPI, "   
lv_unopened_period_error  TYPE TRTY_VDBEPI, "   
lv_i_flg_check_for_payoff  TYPE XFELD, "   'X'
lv_i_flg_from_payoff  TYPE XFELD, "   
lv_i_budat  TYPE BUDAT, "   
lv_i_tab_vzzbepp  TYPE TRTY_VZZBEPP. "   

  CALL FUNCTION 'FVD_PAY_OBJ_PREPARE_IPDRIVENCF'  "Create and Prepare Postings for IPs of Payment-Driven Cash Flows
    EXPORTING
         I_STR_VDARL = lv_i_str_vdarl
         I_STR_VZZKOKO = lv_i_str_vzzkoko
         I_TAB_VDBEKI = lv_i_tab_vdbeki
         I_TAB_VDBEPI = lv_i_tab_vdbepi
         I_FLG_CHECK_FOR_PAYOFF = lv_i_flg_check_for_payoff
         I_FLG_FROM_PAYOFF = lv_i_flg_from_payoff
         I_BUDAT = lv_i_budat
         I_TAB_VZZBEPP = lv_i_tab_vzzbepp
    IMPORTING
         E_TAB_RIPBEPP_SPECIAL = lv_e_tab_ripbepp_special
         E_TAB_VZZBEPP = lv_e_tab_vzzbepp
    CHANGING
         C_TAB_VDBEPP = lv_c_tab_vdbepp
         C_TAB_ADDBEPP = lv_c_tab_addbepp
    EXCEPTIONS
        POSTED_PERIOD_ERROR = 1
        INCONSISTENCY_ERROR = 2
        PAYOFF_ERROR = 3
        UNOPENED_PERIOD_ERROR = 4
. " FVD_PAY_OBJ_PREPARE_IPDRIVENCF




ABAP code using 7.40 inline data declarations to call FM FVD_PAY_OBJ_PREPARE_IPDRIVENCF

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


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!