SAP CNV_TDMS_05_IS_DPAYP Function Module for Exit for DPAYP - Selection
CNV_TDMS_05_IS_DPAYP is a standard cnv tdms 05 is dpayp SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Exit for DPAYP - Selection 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 cnv tdms 05 is dpayp FM, simply by entering the name CNV_TDMS_05_IS_DPAYP into the relevant SAP transaction such as SE37 or SE38.
Function Group: CNV_TDMS_05_IS_EXIT
Program Name: SAPLCNV_TDMS_05_IS_EXIT
Main Program: SAPLCNV_TDMS_05_IS_EXIT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function CNV_TDMS_05_IS_DPAYP 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 'CNV_TDMS_05_IS_DPAYP'"Exit for DPAYP - Selection.
EXPORTING
* GS_WHERE_TAB = "Definition for table with select clauses
* GD_FROM_DATE = "Date
* GD_INDID = "TDMS Industry extension ID
* GD_PACKID = "Package Number to Specify CMIS and TDMS Packages
* GD_DPAYP = "Table name
TABLES
* GT_DPAY = "Header Table for Payment Program entries
* GT_PARAM = "Table for storing general parameters
IMPORTING Parameters details for CNV_TDMS_05_IS_DPAYP
GS_WHERE_TAB - Definition for table with select clauses
Data type: CNVTDMS_05_SELECTABLOptional: Yes
Call by Reference: No ( called with pass by value option)
GD_FROM_DATE - Date
Data type: DATUMOptional: Yes
Call by Reference: No ( called with pass by value option)
GD_INDID - TDMS Industry extension ID
Data type: CNV_TDMS_IND_TYPEOptional: Yes
Call by Reference: No ( called with pass by value option)
GD_PACKID - Package Number to Specify CMIS and TDMS Packages
Data type: CNV_MBT_PACKIDOptional: Yes
Call by Reference: No ( called with pass by value option)
GD_DPAYP - Table name
Data type: DD02L-TABNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CNV_TDMS_05_IS_DPAYP
GT_DPAY - Header Table for Payment Program entries
Data type: CNVTDMS_05T_DPAYOptional: Yes
Call by Reference: No ( called with pass by value option)
GT_PARAM - Table for storing general parameters
Data type: CNVTDMS_14_PARAMOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CNV_TDMS_05_IS_DPAYP 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_dpay | TYPE STANDARD TABLE OF CNVTDMS_05T_DPAY, " | |||
| lv_gs_where_tab | TYPE CNVTDMS_05_SELECTABL, " | |||
| lt_gt_param | TYPE STANDARD TABLE OF CNVTDMS_14_PARAM, " | |||
| lv_gd_from_date | TYPE DATUM, " | |||
| lv_gd_indid | TYPE CNV_TDMS_IND_TYPE, " | |||
| lv_gd_packid | TYPE CNV_MBT_PACKID, " | |||
| lv_gd_dpayp | TYPE DD02L-TABNAME. " |
|   CALL FUNCTION 'CNV_TDMS_05_IS_DPAYP' "Exit for DPAYP - Selection |
| EXPORTING | ||
| GS_WHERE_TAB | = lv_gs_where_tab | |
| GD_FROM_DATE | = lv_gd_from_date | |
| GD_INDID | = lv_gd_indid | |
| GD_PACKID | = lv_gd_packid | |
| GD_DPAYP | = lv_gd_dpayp | |
| TABLES | ||
| GT_DPAY | = lt_gt_dpay | |
| GT_PARAM | = lt_gt_param | |
| . " CNV_TDMS_05_IS_DPAYP | ||
ABAP code using 7.40 inline data declarations to call FM CNV_TDMS_05_IS_DPAYP
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 TABNAME FROM DD02L INTO @DATA(ld_gd_dpayp). | ||||
Search for further information about these or an SAP related objects