SAP C2_DB_PLFV_READ Function Module for Read PLFV from database
C2_DB_PLFV_READ is a standard c2 db plfv 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 PLFV 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 plfv read FM, simply by entering the name C2_DB_PLFV_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: C2DB
Program Name: SAPLC2DB
Main Program: SAPLC2DB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function C2_DB_PLFV_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_PLFV_READ'"Read PLFV from database.
EXPORTING
* DATUB = 0 "
* DATUV = 0 "
PLNNR = "
PLNTY = "
IMPORTING
MKMZL_MAX = "max. characteristic number
ZAEHL_MAX = "Max. change counter
TABLES
PLANFV = "
EXCEPTIONS
NO_RECORDS = 1
IMPORTING Parameters details for C2_DB_PLFV_READ
DATUB -
Data type: PLFV-DATUVOptional: Yes
Call by Reference: No ( called with pass by value option)
DATUV -
Data type: PLFV-DATUVOptional: Yes
Call by Reference: No ( called with pass by value option)
PLNNR -
Data type: PLFV-PLNNROptional: No
Call by Reference: No ( called with pass by value option)
PLNTY -
Data type: PLFV-PLNTYOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for C2_DB_PLFV_READ
MKMZL_MAX - max. characteristic number
Data type: RC2BT-MKMZL_MAXOptional: No
Call by Reference: No ( called with pass by value option)
ZAEHL_MAX - Max. change counter
Data type: RC2BT-ZAEHL_FVOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for C2_DB_PLFV_READ
PLANFV -
Data type: PLFVBOptional: 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_PLFV_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 PLFV-DATUV, " 0 | |||
| lt_planfv | TYPE STANDARD TABLE OF PLFVB, " | |||
| lv_mkmzl_max | TYPE RC2BT-MKMZL_MAX, " | |||
| lv_no_records | TYPE RC2BT, " | |||
| lv_datuv | TYPE PLFV-DATUV, " 0 | |||
| lv_zaehl_max | TYPE RC2BT-ZAEHL_FV, " | |||
| lv_plnnr | TYPE PLFV-PLNNR, " | |||
| lv_plnty | TYPE PLFV-PLNTY. " |
|   CALL FUNCTION 'C2_DB_PLFV_READ' "Read PLFV from database |
| EXPORTING | ||
| DATUB | = lv_datub | |
| DATUV | = lv_datuv | |
| PLNNR | = lv_plnnr | |
| PLNTY | = lv_plnty | |
| IMPORTING | ||
| MKMZL_MAX | = lv_mkmzl_max | |
| ZAEHL_MAX | = lv_zaehl_max | |
| TABLES | ||
| PLANFV | = lt_planfv | |
| EXCEPTIONS | ||
| NO_RECORDS = 1 | ||
| . " C2_DB_PLFV_READ | ||
ABAP code using 7.40 inline data declarations to call FM C2_DB_PLFV_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 PLFV INTO @DATA(ld_datub). | ||||
| "SELECT single MKMZL_MAX FROM RC2BT INTO @DATA(ld_mkmzl_max). | ||||
| "SELECT single DATUV FROM PLFV INTO @DATA(ld_datuv). | ||||
| "SELECT single ZAEHL_FV FROM RC2BT INTO @DATA(ld_zaehl_max). | ||||
| "SELECT single PLNNR FROM PLFV INTO @DATA(ld_plnnr). | ||||
| "SELECT single PLNTY FROM PLFV INTO @DATA(ld_plnty). | ||||
Search for further information about these or an SAP related objects