BUILD_OFFER_ID_WAKP SAP Method Generate Offer ID for Promotion Item









Below is documentation, parameters and attributes of ABAP Method BUILD_OFFER_ID_WAKP within SAP class CL_WPM_PROMOTION. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_WPM_PROMOTION into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method BUILD_OFFER_ID_WAKP can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method BUILD_OFFER_ID_WAKP

.

NameTypeData TypeDescriptionDefault Value
IV_AKTNRImportingTYPE
WAKTION
Promotion
IV_ARTNRImportingTYPE
MATNR
Material Number
IV_MEBMEImportingTYPE
W_MEBME
Sales Unit
EV_OFFER_IDExportingTYPE
WPM_OFFERID_PRICE
Offer ID for Price
EV_OFFER_ID_DSCExportingTYPE
WPM_OFFERID_DISCOUNT
Offer ID for Discount



Exceptions of Method BUILD_OFFER_ID_WAKP

This method does not have any exceptions

Example ABAP coding


DATA: lv_EV_OFFER_ID TYPE WPM_OFFERID_PRICE,
lv_EV_OFFER_ID_DSC TYPE WPM_OFFERID_DISCOUNT,
lv_IV_AKTNR TYPE WAKTION,
lv_IV_ARTNR TYPE MATNR,
lv_IV_MEBME TYPE W_MEBME,
lv_other TYPE c.

CALL METHOD CL_WPM_PROMOTION=>BUILD_OFFER_ID_WAKP(
EXPORTING
IV_AKTNR = lv_IV_AKTNR
IV_ARTNR = lv_IV_ARTNR
IV_MEBME = lv_IV_MEBME
IMPORTING
EV_OFFER_ID = lv_EV_OFFER_ID
EV_OFFER_ID_DSC = lv_EV_OFFER_ID_DSC ).

Links to Related Class(s)

CL_WPM_P...
Full list of available SAP object classes

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!