SAP TR_LOAN_PROCESS_PPP_DYNP Function Module for Payt Postprocessing: Processing Screen for a Payt Postprocessing Activity
TR_LOAN_PROCESS_PPP_DYNP is a standard tr loan process ppp dynp SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Payt Postprocessing: Processing Screen for a Payt Postprocessing Activity 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 tr loan process ppp dynp FM, simply by entering the name TR_LOAN_PROCESS_PPP_DYNP into the relevant SAP transaction such as SE37 or SE38.
Function Group: TRDZ
Program Name: SAPLTRDZ
Main Program: SAPLTRDZ
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TR_LOAN_PROCESS_PPP_DYNP 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 'TR_LOAN_PROCESS_PPP_DYNP'"Payt Postprocessing: Processing Screen for a Payt Postprocessing Activity.
EXPORTING
FLAG_EXIT = "
I_RANTYP = "
* I_ZNB_KEY = ' ' "Business operation number (loans)
* I_SOURCE_CONF = ' ' "Flag, ob Ursprung Freigabefkt. war
* I_DEFAULT_RANL = "Contract Number
I_LOGHANDLE = "Application Log: Log Handle
* I_VDZNB_HEAD = "Pmnt Postproc.: Header for a Payment Postprocessing Activity
IMPORTING
FLAG_ASSIGNMENT = "
FLAG_EXIT_COMMAND = "
TABLES
GT_OP = "
GT_TZB31 = "
XT_VDZNV = "Payment Postprocessing Clearing Data: Module Pool TRDZ
GT_PAYINFO = "TR-LO: Payment Postprocessing - Payment Information
* GT_ITEM = "Structure for List of Open Items in RFVDZNB1
EXCEPTIONS
GT_TZB31_EMPTY = 1
IMPORTING Parameters details for TR_LOAN_PROCESS_PPP_DYNP
FLAG_EXIT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_RANTYP -
Data type: TZB0A-RANTYPOptional: No
Call by Reference: No ( called with pass by value option)
I_ZNB_KEY - Business operation number (loans)
Data type: VDZNB_HEAD-ZNB_KEYDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_SOURCE_CONF - Flag, ob Ursprung Freigabefkt. war
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_DEFAULT_RANL - Contract Number
Data type: VDBEPP-RANLOptional: Yes
Call by Reference: Yes
I_LOGHANDLE - Application Log: Log Handle
Data type: BALLOGHNDLOptional: No
Call by Reference: Yes
I_VDZNB_HEAD - Pmnt Postproc.: Header for a Payment Postprocessing Activity
Data type: VDZNB_HEADOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for TR_LOAN_PROCESS_PPP_DYNP
FLAG_ASSIGNMENT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FLAG_EXIT_COMMAND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for TR_LOAN_PROCESS_PPP_DYNP
GT_OP -
Data type: OPZNBOptional: No
Call by Reference: No ( called with pass by value option)
GT_TZB31 -
Data type: TZB31Optional: No
Call by Reference: No ( called with pass by value option)
XT_VDZNV - Payment Postprocessing Clearing Data: Module Pool TRDZ
Data type: VDZNVOptional: No
Call by Reference: No ( called with pass by value option)
GT_PAYINFO - TR-LO: Payment Postprocessing - Payment Information
Data type: VDZNBPAYINFOOptional: No
Call by Reference: No ( called with pass by value option)
GT_ITEM - Structure for List of Open Items in RFVDZNB1
Data type: RFVDZNB1_OPITEMOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
GT_TZB31_EMPTY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for TR_LOAN_PROCESS_PPP_DYNP 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: | ||||
| lt_gt_op | TYPE STANDARD TABLE OF OPZNB, " | |||
| lv_flag_exit | TYPE OPZNB, " | |||
| lv_gt_tzb31_empty | TYPE OPZNB, " | |||
| lv_flag_assignment | TYPE OPZNB, " | |||
| lt_gt_tzb31 | TYPE STANDARD TABLE OF TZB31, " | |||
| lv_i_rantyp | TYPE TZB0A-RANTYP, " | |||
| lv_flag_exit_command | TYPE TZB0A, " | |||
| lt_xt_vdznv | TYPE STANDARD TABLE OF VDZNV, " | |||
| lv_i_znb_key | TYPE VDZNB_HEAD-ZNB_KEY, " SPACE | |||
| lt_gt_payinfo | TYPE STANDARD TABLE OF VDZNBPAYINFO, " | |||
| lv_i_source_conf | TYPE VDZNBPAYINFO, " SPACE | |||
| lt_gt_item | TYPE STANDARD TABLE OF RFVDZNB1_OPITEM, " | |||
| lv_i_default_ranl | TYPE VDBEPP-RANL, " | |||
| lv_i_loghandle | TYPE BALLOGHNDL, " | |||
| lv_i_vdznb_head | TYPE VDZNB_HEAD. " |
|   CALL FUNCTION 'TR_LOAN_PROCESS_PPP_DYNP' "Payt Postprocessing: Processing Screen for a Payt Postprocessing Activity |
| EXPORTING | ||
| FLAG_EXIT | = lv_flag_exit | |
| I_RANTYP | = lv_i_rantyp | |
| I_ZNB_KEY | = lv_i_znb_key | |
| I_SOURCE_CONF | = lv_i_source_conf | |
| I_DEFAULT_RANL | = lv_i_default_ranl | |
| I_LOGHANDLE | = lv_i_loghandle | |
| I_VDZNB_HEAD | = lv_i_vdznb_head | |
| IMPORTING | ||
| FLAG_ASSIGNMENT | = lv_flag_assignment | |
| FLAG_EXIT_COMMAND | = lv_flag_exit_command | |
| TABLES | ||
| GT_OP | = lt_gt_op | |
| GT_TZB31 | = lt_gt_tzb31 | |
| XT_VDZNV | = lt_xt_vdznv | |
| GT_PAYINFO | = lt_gt_payinfo | |
| GT_ITEM | = lt_gt_item | |
| EXCEPTIONS | ||
| GT_TZB31_EMPTY = 1 | ||
| . " TR_LOAN_PROCESS_PPP_DYNP | ||
ABAP code using 7.40 inline data declarations to call FM TR_LOAN_PROCESS_PPP_DYNP
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 RANTYP FROM TZB0A INTO @DATA(ld_i_rantyp). | ||||
| "SELECT single ZNB_KEY FROM VDZNB_HEAD INTO @DATA(ld_i_znb_key). | ||||
| DATA(ld_i_znb_key) | = ' '. | |||
| DATA(ld_i_source_conf) | = ' '. | |||
| "SELECT single RANL FROM VDBEPP INTO @DATA(ld_i_default_ranl). | ||||
Search for further information about these or an SAP related objects