SAP CM_BT_PLMZ_UPDATE Function Module for NOTRANSL: Aktualisieren eines PLMZ-Satzes in der Belegtabelle









CM_BT_PLMZ_UPDATE is a standard cm bt plmz update SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Aktualisieren eines PLMZ-Satzes in der Belegtabelle 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 bt plmz update FM, simply by entering the name CM_BT_PLMZ_UPDATE into the relevant SAP transaction such as SE37 or SE38.

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



Function CM_BT_PLMZ_UPDATE 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_BT_PLMZ_UPDATE'"NOTRANSL: Aktualisieren eines PLMZ-Satzes in der Belegtabelle
EXPORTING
* AENNR = ' ' "Change number
PLMZD_NEW = "Updated assignment record
STTAG = "Key date
TABIX_OLD = "Index on old assignment record in
* CHECK_LAST_ENTRY = ' ' "

IMPORTING
TABIX_NEW = "Index on new assignment record in
LAST_ENTRY = "
.



IMPORTING Parameters details for CM_BT_PLMZ_UPDATE

AENNR - Change number

Data type: PLMZD-AENNR
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

PLMZD_NEW - Updated assignment record

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

STTAG - Key date

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

TABIX_OLD - Index on old assignment record in

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

CHECK_LAST_ENTRY -

Data type: RC27X-FLG_SEL
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for CM_BT_PLMZ_UPDATE

TABIX_NEW - Index on new assignment record in

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

LAST_ENTRY -

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

Copy and paste ABAP code example for CM_BT_PLMZ_UPDATE 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_aennr  TYPE PLMZD-AENNR, "   SPACE
lv_tabix_new  TYPE SY-TABIX, "   
lv_plmzd_new  TYPE PLMZD, "   
lv_last_entry  TYPE RC27X-FLG_SEL, "   
lv_sttag  TYPE PLMZD-DATUV, "   
lv_tabix_old  TYPE SY-TABIX, "   
lv_check_last_entry  TYPE RC27X-FLG_SEL. "   SPACE

  CALL FUNCTION 'CM_BT_PLMZ_UPDATE'  "NOTRANSL: Aktualisieren eines PLMZ-Satzes in der Belegtabelle
    EXPORTING
         AENNR = lv_aennr
         PLMZD_NEW = lv_plmzd_new
         STTAG = lv_sttag
         TABIX_OLD = lv_tabix_old
         CHECK_LAST_ENTRY = lv_check_last_entry
    IMPORTING
         TABIX_NEW = lv_tabix_new
         LAST_ENTRY = lv_last_entry
. " CM_BT_PLMZ_UPDATE




ABAP code using 7.40 inline data declarations to call FM CM_BT_PLMZ_UPDATE

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 AENNR FROM PLMZD INTO @DATA(ld_aennr).
DATA(ld_aennr) = ' '.
 
"SELECT single TABIX FROM SY INTO @DATA(ld_tabix_new).
 
 
"SELECT single FLG_SEL FROM RC27X INTO @DATA(ld_last_entry).
 
"SELECT single DATUV FROM PLMZD INTO @DATA(ld_sttag).
 
"SELECT single TABIX FROM SY INTO @DATA(ld_tabix_old).
 
"SELECT single FLG_SEL FROM RC27X INTO @DATA(ld_check_last_entry).
DATA(ld_check_last_entry) = ' '.
 


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!