SAP FVD_PAY_OBJ_GET_PLAN_CUSTOMIZE Function Module for Central Access Module for Plan Customizing









FVD_PAY_OBJ_GET_PLAN_CUSTOMIZE is a standard fvd pay obj get plan customize SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Central Access Module for Plan Customizing 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 get plan customize FM, simply by entering the name FVD_PAY_OBJ_GET_PLAN_CUSTOMIZE 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_GET_PLAN_CUSTOMIZE 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_GET_PLAN_CUSTOMIZE'"Central Access Module for Plan Customizing
EXPORTING
* I_STR_VDARL = "Loan
* I_PMTTYPE = "Payment Cat.

IMPORTING
E_STR_TDHIERSHORT = "US Incoming Payment: Settings for Underpayment Hierarchy
E_TAB_PREP_KRIT_PRIORITY = "Flow control of advance payments and overpayments
E_TAB_PREP_KRIT_FT = "Definition of criteria/memo rec. grouping/inc.pmnt distrib.
E_TAB_TDPLANNRSUSP = "Table Type for Table TDPLANNRSUSP
E_TAB_SPECPAYMENT = "Incoming Payment: Table Type for TZE03
E_TAB_TDIMPLRULES = "Table Type for Table TDIMPLEMENTRULES
E_TAB_NONDUEITEMS = "Incoming Payment: Table Type for TZE03
E_STR_TDIPDPLAN = "Incoming Payment: Payment Plan Hierarchy
E_TAB_SHORT_HIER_KRITS = "Incoming Payment: Table Type for TZE02
E_TAB_SHORT_HIER_KRIT_PRIORITY = "Incoming Payment: Table Type for TZE01
E_TAB_SHORT_HIER_KRIT_SORTORD = "Incoming Payment: Table Type for TZE03
E_TAB_OVER_HIER_KRITS = "Incoming Payment: Table Type for TZE02
E_TAB_OVER_HIER_KRIT_PRIORITY = "Incoming Payment: Table Type for TZE01
E_TAB_OVER_HIER_KRIT_SORTORD = "Incoming Payment: Table Type for TZE03
E_TAB_PREP_KRITS = "Incoming payment distribution criteria value table

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for FVD_PAY_OBJ_GET_PLAN_CUSTOMIZE

I_STR_VDARL - Loan

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

I_PMTTYPE - Payment Cat.

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

EXPORTING Parameters details for FVD_PAY_OBJ_GET_PLAN_CUSTOMIZE

E_STR_TDHIERSHORT - US Incoming Payment: Settings for Underpayment Hierarchy

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

E_TAB_PREP_KRIT_PRIORITY - Flow control of advance payments and overpayments

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

E_TAB_PREP_KRIT_FT - Definition of criteria/memo rec. grouping/inc.pmnt distrib.

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

E_TAB_TDPLANNRSUSP - Table Type for Table TDPLANNRSUSP

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

E_TAB_SPECPAYMENT - Incoming Payment: Table Type for TZE03

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

E_TAB_TDIMPLRULES - Table Type for Table TDIMPLEMENTRULES

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

E_TAB_NONDUEITEMS - Incoming Payment: Table Type for TZE03

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

E_STR_TDIPDPLAN - Incoming Payment: Payment Plan Hierarchy

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

E_TAB_SHORT_HIER_KRITS - Incoming Payment: Table Type for TZE02

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

E_TAB_SHORT_HIER_KRIT_PRIORITY - Incoming Payment: Table Type for TZE01

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

E_TAB_SHORT_HIER_KRIT_SORTORD - Incoming Payment: Table Type for TZE03

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

E_TAB_OVER_HIER_KRITS - Incoming Payment: Table Type for TZE02

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

E_TAB_OVER_HIER_KRIT_PRIORITY - Incoming Payment: Table Type for TZE01

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

E_TAB_OVER_HIER_KRIT_SORTORD - Incoming Payment: Table Type for TZE03

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

E_TAB_PREP_KRITS - Incoming payment distribution criteria value table

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

EXCEPTIONS details

NOT_FOUND - Plan customizing für Darlehen nicht gefunden

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_PAY_OBJ_GET_PLAN_CUSTOMIZE 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_not_found  TYPE STRING, "   
lv_i_str_vdarl  TYPE VDARL, "   
lv_e_str_tdhiershort  TYPE TDHIERSET, "   
lv_e_tab_prep_krit_priority  TYPE TRTY_TVZ03, "   
lv_e_tab_prep_krit_ft  TYPE TRTY_TVZ02, "   
lv_e_tab_tdplannrsusp  TYPE TRTY_TDPLANNRSUSP, "   
lv_e_tab_specpayment  TYPE TRTY_TZE03, "   
lv_e_tab_tdimplrules  TYPE TRTY_TDIMPL_RULES, "   
lv_e_tab_nondueitems  TYPE TRTY_TZE03, "   
lv_i_pmttype  TYPE VVPMTTYPE, "   
lv_e_str_tdipdplan  TYPE TDIPDPLAN, "   
lv_e_tab_short_hier_krits  TYPE TRTY_TZE02, "   
lv_e_tab_short_hier_krit_priority  TYPE TRTY_TZE01, "   
lv_e_tab_short_hier_krit_sortord  TYPE TRTY_TZE03, "   
lv_e_tab_over_hier_krits  TYPE TRTY_TZE02, "   
lv_e_tab_over_hier_krit_priority  TYPE TRTY_TZE01, "   
lv_e_tab_over_hier_krit_sortord  TYPE TRTY_TZE03, "   
lv_e_tab_prep_krits  TYPE TRTY_TVZ06. "   

  CALL FUNCTION 'FVD_PAY_OBJ_GET_PLAN_CUSTOMIZE'  "Central Access Module for Plan Customizing
    EXPORTING
         I_STR_VDARL = lv_i_str_vdarl
         I_PMTTYPE = lv_i_pmttype
    IMPORTING
         E_STR_TDHIERSHORT = lv_e_str_tdhiershort
         E_TAB_PREP_KRIT_PRIORITY = lv_e_tab_prep_krit_priority
         E_TAB_PREP_KRIT_FT = lv_e_tab_prep_krit_ft
         E_TAB_TDPLANNRSUSP = lv_e_tab_tdplannrsusp
         E_TAB_SPECPAYMENT = lv_e_tab_specpayment
         E_TAB_TDIMPLRULES = lv_e_tab_tdimplrules
         E_TAB_NONDUEITEMS = lv_e_tab_nondueitems
         E_STR_TDIPDPLAN = lv_e_str_tdipdplan
         E_TAB_SHORT_HIER_KRITS = lv_e_tab_short_hier_krits
         E_TAB_SHORT_HIER_KRIT_PRIORITY = lv_e_tab_short_hier_krit_priority
         E_TAB_SHORT_HIER_KRIT_SORTORD = lv_e_tab_short_hier_krit_sortord
         E_TAB_OVER_HIER_KRITS = lv_e_tab_over_hier_krits
         E_TAB_OVER_HIER_KRIT_PRIORITY = lv_e_tab_over_hier_krit_priority
         E_TAB_OVER_HIER_KRIT_SORTORD = lv_e_tab_over_hier_krit_sortord
         E_TAB_PREP_KRITS = lv_e_tab_prep_krits
    EXCEPTIONS
        NOT_FOUND = 1
. " FVD_PAY_OBJ_GET_PLAN_CUSTOMIZE




ABAP code using 7.40 inline data declarations to call FM FVD_PAY_OBJ_GET_PLAN_CUSTOMIZE

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!