SAP FVD_PAY_OBJ_PROCESS_REQ_ITEM Function Module for Edit and Create Clearing BEPPS for Prioritized Items









FVD_PAY_OBJ_PROCESS_REQ_ITEM is a standard fvd pay obj process req item SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Edit and Create Clearing BEPPS for Prioritized Items 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 process req item FM, simply by entering the name FVD_PAY_OBJ_PROCESS_REQ_ITEM 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_PROCESS_REQ_ITEM 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_PROCESS_REQ_ITEM'"Edit and Create Clearing BEPPS for Prioritized Items
EXPORTING
I_TAB_BSID = "Table Type for Table BSID
I_TAB_BEPP = "Table Type for Table VDBEPP
I_STR_VDARL = "Loan

CHANGING
C_TAB_PAY_SEG = "Table Type For Table BSSBSEG
C_TAB_FVVZEV = "Incoming Payment: Table Type for FVVZEV
C_TAB_POSTVDBEPP = "Transaction Data - Plan Item
C_TAB_POSTADDBEPP = "Additional Information on VDBEPP

EXCEPTIONS
REQ_ITEM_SHORTAGE_OF_PAY_SEG = 1 CUSTOMIZING_ERROR = 2 INCONSISTENCY_ERROR = 3
.



IMPORTING Parameters details for FVD_PAY_OBJ_PROCESS_REQ_ITEM

I_TAB_BSID - Table Type for Table BSID

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

I_TAB_BEPP - Table Type for Table VDBEPP

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

I_STR_VDARL - Loan

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

CHANGING Parameters details for FVD_PAY_OBJ_PROCESS_REQ_ITEM

C_TAB_PAY_SEG - Table Type For Table BSSBSEG

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

C_TAB_FVVZEV - Incoming Payment: Table Type for FVVZEV

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

C_TAB_POSTVDBEPP - Transaction Data - Plan Item

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

C_TAB_POSTADDBEPP - Additional Information on VDBEPP

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

EXCEPTIONS details

REQ_ITEM_SHORTAGE_OF_PAY_SEG -

Data type:
Optional: No
Call by Reference: Yes

CUSTOMIZING_ERROR -

Data type:
Optional: No
Call by Reference: Yes

INCONSISTENCY_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_PAY_OBJ_PROCESS_REQ_ITEM 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_tab_bsid  TYPE TRTY_BSID, "   
lv_c_tab_pay_seg  TYPE TRTY_BSSBSEG, "   
lv_req_item_shortage_of_pay_seg  TYPE TRTY_BSSBSEG, "   
lv_i_tab_bepp  TYPE TRTY_VDBEPP, "   
lv_c_tab_fvvzev  TYPE TRTY_FVVZEV, "   
lv_customizing_error  TYPE TRTY_FVVZEV, "   
lv_i_str_vdarl  TYPE VDARL, "   
lv_c_tab_postvdbepp  TYPE TRTY_VDBEPP, "   
lv_inconsistency_error  TYPE TRTY_VDBEPP, "   
lv_c_tab_postaddbepp  TYPE TRTY_ADDBEPP. "   

  CALL FUNCTION 'FVD_PAY_OBJ_PROCESS_REQ_ITEM'  "Edit and Create Clearing BEPPS for Prioritized Items
    EXPORTING
         I_TAB_BSID = lv_i_tab_bsid
         I_TAB_BEPP = lv_i_tab_bepp
         I_STR_VDARL = lv_i_str_vdarl
    CHANGING
         C_TAB_PAY_SEG = lv_c_tab_pay_seg
         C_TAB_FVVZEV = lv_c_tab_fvvzev
         C_TAB_POSTVDBEPP = lv_c_tab_postvdbepp
         C_TAB_POSTADDBEPP = lv_c_tab_postaddbepp
    EXCEPTIONS
        REQ_ITEM_SHORTAGE_OF_PAY_SEG = 1
        CUSTOMIZING_ERROR = 2
        INCONSISTENCY_ERROR = 3
. " FVD_PAY_OBJ_PROCESS_REQ_ITEM




ABAP code using 7.40 inline data declarations to call FM FVD_PAY_OBJ_PROCESS_REQ_ITEM

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!