DETECT_UPLIFT_CHANGES SAP Method create FRE_DB_ABI_HEAD entries for changed uplifts









Below is documentation, parameters and attributes of ABAP Method DETECT_UPLIFT_CHANGES within SAP class IF_EX_FRE_MD_DIF_PMR_INTEGRATE. 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 IF_EX_FRE_MD_DIF_PMR_INTEGRATE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

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

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


Parameters of Method DETECT_UPLIFT_CHANGES

.

NameTypeData TypeDescriptionDefault Value
IT_OFFER_QUANTITIESImportingTYPE
ANY TABLE
offer quantities from PMR (wmatsiteqtytime_tty)
IT_OFFER_QUANTITIES_OLDImportingTYPE
ANY TABLE
offer quantities before changes (wmatsiteqtytime_tty)
IT_PROMO_ITEM_DATAImportingTYPE
ANY TABLE
Promo item level (structure BAPI1068T2)
IT_PROMO_QUANTITIESImportingTYPE
ANY TABLE
Promo quantiities (structure BAPI1068T7)
IT_PROMO_QUANTITIES_OLDImportingTYPE
ANY TABLE
Promo quantities - values before changes (BAPI1068T7)
I_PROMOTIONImportingTYPE
WAKTION
Promotion



Exceptions of Method DETECT_UPLIFT_CHANGES

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_FRE_MD_DIF_PMR_INTEGRATE.
DATA: lv_IT_OFFER_QUANTITIES TYPE ANY TABLE,
lv_IT_OFFER_QUANTITIES_OLD TYPE ANY TABLE,
lv_IT_PROMO_ITEM_DATA TYPE ANY TABLE,
lv_IT_PROMO_QUANTITIES TYPE ANY TABLE,
lv_IT_PROMO_QUANTITIES_OLD TYPE ANY TABLE,
lv_I_PROMOTION TYPE WAKTION,
lv_other TYPE c.

CALL METHOD lo_class=>DETECT_UPLIFT_CHANGES(
EXPORTING
IT_OFFER_QUANTITIES = lv_IT_OFFER_QUANTITIES
IT_OFFER_QUANTITIES_OLD = lv_IT_OFFER_QUANTITIES_OLD
IT_PROMO_ITEM_DATA = lv_IT_PROMO_ITEM_DATA
IT_PROMO_QUANTITIES = lv_IT_PROMO_QUANTITIES
IT_PROMO_QUANTITIES_OLD = lv_IT_PROMO_QUANTITIES_OLD
I_PROMOTION = lv_I_PROMOTION ).

Links to Related Class(s)

IF_EX_FR...
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!