SAP C2_DB_PLFT_READ Function Module for Read PLFT from database
C2_DB_PLFT_READ is a standard c2 db plft read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read PLFT from database 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 c2 db plft read FM, simply by entering the name C2_DB_PLFT_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: C2DB
Program Name: SAPLC2DB
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function C2_DB_PLFT_READ 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 'C2_DB_PLFT_READ'"Read PLFT from database.
EXPORTING
* DATUB = 0 "
* DATUV = 0 "
PLNNR = "
PLNTY = "
IMPORTING
PLNFT_MAX = "max. process instruction counter
ZAEHL_MAX = "Max. change counter
TABLES
PLANFT = "
EXCEPTIONS
NO_RECORDS = 1
IMPORTING Parameters details for C2_DB_PLFT_READ
DATUB -
Data type: PLFT-DATUVOptional: Yes
Call by Reference: No ( called with pass by value option)
DATUV -
Data type: PLFT-DATUVOptional: Yes
Call by Reference: No ( called with pass by value option)
PLNNR -
Data type: PLFT-PLNNROptional: No
Call by Reference: No ( called with pass by value option)
PLNTY -
Data type: PLFT-PLNTYOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for C2_DB_PLFT_READ
PLNFT_MAX - max. process instruction counter
Data type: RC2BT-PLNFT_MAXOptional: No
Call by Reference: No ( called with pass by value option)
ZAEHL_MAX - Max. change counter
Data type: RC2BT-ZAEHL_FTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for C2_DB_PLFT_READ
PLANFT -
Data type: PLFTBOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_RECORDS - No records exist for selected task list no.
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for C2_DB_PLFT_READ 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_datub | TYPE PLFT-DATUV, " 0 | |||
| lt_planft | TYPE STANDARD TABLE OF PLFTB, " | |||
| lv_plnft_max | TYPE RC2BT-PLNFT_MAX, " | |||
| lv_no_records | TYPE RC2BT, " | |||
| lv_datuv | TYPE PLFT-DATUV, " 0 | |||
| lv_zaehl_max | TYPE RC2BT-ZAEHL_FT, " | |||
| lv_plnnr | TYPE PLFT-PLNNR, " | |||
| lv_plnty | TYPE PLFT-PLNTY. " |
|   CALL FUNCTION 'C2_DB_PLFT_READ' "Read PLFT from database |
| EXPORTING | ||
| DATUB | = lv_datub | |
| DATUV | = lv_datuv | |
| PLNNR | = lv_plnnr | |
| PLNTY | = lv_plnty | |
| IMPORTING | ||
| PLNFT_MAX | = lv_plnft_max | |
| ZAEHL_MAX | = lv_zaehl_max | |
| TABLES | ||
| PLANFT | = lt_planft | |
| EXCEPTIONS | ||
| NO_RECORDS = 1 | ||
| . " C2_DB_PLFT_READ | ||
ABAP code using 7.40 inline data declarations to call FM C2_DB_PLFT_READ
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 DATUV FROM PLFT INTO @DATA(ld_datub). | ||||
| "SELECT single PLNFT_MAX FROM RC2BT INTO @DATA(ld_plnft_max). | ||||
| "SELECT single DATUV FROM PLFT INTO @DATA(ld_datuv). | ||||
| "SELECT single ZAEHL_FT FROM RC2BT INTO @DATA(ld_zaehl_max). | ||||
| "SELECT single PLNNR FROM PLFT INTO @DATA(ld_plnnr). | ||||
| "SELECT single PLNTY FROM PLFT INTO @DATA(ld_plnty). | ||||
Search for further information about these or an SAP related objects