SAP CM_DB_PLMZ_READ_EXT Function Module for Read the mat. components allocation records valid at a key date









CM_DB_PLMZ_READ_EXT is a standard cm db plmz read ext 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 the mat. components allocation records valid at a key date 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 cm db plmz read ext FM, simply by entering the name CM_DB_PLMZ_READ_EXT into the relevant SAP transaction such as SE37 or SE38.

Function Group: CMDB
Program Name: SAPLCMDB
Main Program: SAPLCMDB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CM_DB_PLMZ_READ_EXT 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 'CM_DB_PLMZ_READ_EXT'"Read the mat. components allocation records valid at a key date
EXPORTING
* PLNAL = '' "Alternative task list
PLNNR = "Task list number
PLNTY = "Task list type
STTAG = "Key date
* STLNR = "

TABLES
PLMZ_EXP = "
.



IMPORTING Parameters details for CM_DB_PLMZ_READ_EXT

PLNAL - Alternative task list

Data type: PLMZ-PLNAL
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

PLNNR - Task list number

Data type: PLMZ-PLNNR
Optional: No
Call by Reference: No ( called with pass by value option)

PLNTY - Task list type

Data type: PLMZ-PLNTY
Optional: No
Call by Reference: No ( called with pass by value option)

STTAG - Key date

Data type: PLMZ-DATUV
Optional: No
Call by Reference: No ( called with pass by value option)

STLNR -

Data type: PLMZ-STLNR
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for CM_DB_PLMZ_READ_EXT

PLMZ_EXP -

Data type: PLMZB
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for CM_DB_PLMZ_READ_EXT 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_plnal  TYPE PLMZ-PLNAL, "   ''
lt_plmz_exp  TYPE STANDARD TABLE OF PLMZB, "   
lv_plnnr  TYPE PLMZ-PLNNR, "   
lv_plnty  TYPE PLMZ-PLNTY, "   
lv_sttag  TYPE PLMZ-DATUV, "   
lv_stlnr  TYPE PLMZ-STLNR. "   

  CALL FUNCTION 'CM_DB_PLMZ_READ_EXT'  "Read the mat. components allocation records valid at a key date
    EXPORTING
         PLNAL = lv_plnal
         PLNNR = lv_plnnr
         PLNTY = lv_plnty
         STTAG = lv_sttag
         STLNR = lv_stlnr
    TABLES
         PLMZ_EXP = lt_plmz_exp
. " CM_DB_PLMZ_READ_EXT




ABAP code using 7.40 inline data declarations to call FM CM_DB_PLMZ_READ_EXT

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 PLNAL FROM PLMZ INTO @DATA(ld_plnal).
DATA(ld_plnal) = ''.
 
 
"SELECT single PLNNR FROM PLMZ INTO @DATA(ld_plnnr).
 
"SELECT single PLNTY FROM PLMZ INTO @DATA(ld_plnty).
 
"SELECT single DATUV FROM PLMZ INTO @DATA(ld_sttag).
 
"SELECT single STLNR FROM PLMZ INTO @DATA(ld_stlnr).
 


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!