SAP PROMOTION_PRODCAT_ASSIGNMT_UPD Function Module for NOTRANSL: Pflege der Produktkatalogzuordnungen in Tabelle WAZW









PROMOTION_PRODCAT_ASSIGNMT_UPD is a standard promotion prodcat assignmt upd 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: Pflege der Produktkatalogzuordnungen in Tabelle WAZW 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 promotion prodcat assignmt upd FM, simply by entering the name PROMOTION_PRODCAT_ASSIGNMT_UPD into the relevant SAP transaction such as SE37 or SE38.

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



Function PROMOTION_PRODCAT_ASSIGNMT_UPD 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 'PROMOTION_PRODCAT_ASSIGNMT_UPD'"NOTRANSL: Pflege der Produktkatalogzuordnungen in Tabelle WAZW
EXPORTING
FWMINR = "Product catalog number
FAKTNR_OLD = "Promotion
FAKTNR_NEW = "Promotion

EXCEPTIONS
PRODCATNR_IS_MISSING = 1 AKTNR_OLD_IS_NOT_ASSIGNED = 2
.



IMPORTING Parameters details for PROMOTION_PRODCAT_ASSIGNMT_UPD

FWMINR - Product catalog number

Data type: WWMI-WMINR
Optional: No
Call by Reference: Yes

FAKTNR_OLD - Promotion

Data type: WAKH-AKTNR
Optional: No
Call by Reference: Yes

FAKTNR_NEW - Promotion

Data type: WAKH-AKTNR
Optional: No
Call by Reference: Yes

EXCEPTIONS details

PRODCATNR_IS_MISSING - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

AKTNR_OLD_IS_NOT_ASSIGNED - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

Copy and paste ABAP code example for PROMOTION_PRODCAT_ASSIGNMT_UPD 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_fwminr  TYPE WWMI-WMINR, "   
lv_prodcatnr_is_missing  TYPE WWMI, "   
lv_faktnr_old  TYPE WAKH-AKTNR, "   
lv_aktnr_old_is_not_assigned  TYPE WAKH, "   
lv_faktnr_new  TYPE WAKH-AKTNR. "   

  CALL FUNCTION 'PROMOTION_PRODCAT_ASSIGNMT_UPD'  "NOTRANSL: Pflege der Produktkatalogzuordnungen in Tabelle WAZW
    EXPORTING
         FWMINR = lv_fwminr
         FAKTNR_OLD = lv_faktnr_old
         FAKTNR_NEW = lv_faktnr_new
    EXCEPTIONS
        PRODCATNR_IS_MISSING = 1
        AKTNR_OLD_IS_NOT_ASSIGNED = 2
. " PROMOTION_PRODCAT_ASSIGNMT_UPD




ABAP code using 7.40 inline data declarations to call FM PROMOTION_PRODCAT_ASSIGNMT_UPD

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 WMINR FROM WWMI INTO @DATA(ld_fwminr).
 
 
"SELECT single AKTNR FROM WAKH INTO @DATA(ld_faktnr_old).
 
 
"SELECT single AKTNR FROM WAKH INTO @DATA(ld_faktnr_new).
 


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!