CHANGE_DATA SAP Method Change data









Below is documentation, parameters and attributes of ABAP Method CHANGE_DATA within SAP class IF_EX_WRF_WLAY_X_WPLG_2_E. 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_WRF_WLAY_X_WPLG_2_E 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 CHANGE_DATA can also be found below:

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


Parameters of Method CHANGE_DATA

.

NameTypeData TypeDescriptionDefault Value
I_EXTENSIONINImportingTYPE
BAPIWRFPAREX_TTY
Table BAPIPAREX
I_FIX_ASGMTImportingTYPE
BAPI_FIX_ASGMT_TTY
Table Type - Assignemnt of Fixture to LayMod. Version
I_ITEMS_INImportingTYPE
BAPIWRFSHELFIMP_TTY
Table BAPISHELFIMP
I_MAPPING_VARIANTImportingTYPE
BAPISHELFHDEXP-MAP_VAR
Mapping variants for selecting the export fields
I_STORESImportingTYPE
BAPI_WRFSHELFSTORES_TTY
Table BAPI_SHELFSTORES
EXTENSIONINExportingTYPE
BAPIWRFPAREX_TTY
Table BAPIPAREX
FIX_ASGMTExportingTYPE
BAPI_FIX_ASGMT_TTY
Table Type - Assignemnt of Fixture to LayMod. Version
ITEMS_INExportingTYPE
BAPIWRFSHELFIMP_TTY
Table BAPISHELFIMP
STORESExportingTYPE
BAPI_WRFSHELFSTORES_TTY
Table BAPI_SHELFSTORES
CONTROLSChangingTYPE
BAPISHELFHDIMP
Planogram: Import control data
HEAD_DATAChangingTYPE
BAPISHELFHD
Header data for planogram
RETURNChangingTYPE
BAPIRETURN1
Return Parameter(s)



Exceptions of Method CHANGE_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_WRF_WLAY_X_WPLG_2_E.
DATA: lv_CONTROLS TYPE BAPISHELFHDIMP,
lv_EXTENSIONIN TYPE BAPIWRFPAREX_TTY,
lv_FIX_ASGMT TYPE BAPI_FIX_ASGMT_TTY,
lv_HEAD_DATA TYPE BAPISHELFHD,
lv_ITEMS_IN TYPE BAPIWRFSHELFIMP_TTY,
lv_I_EXTENSIONIN TYPE BAPIWRFPAREX_TTY,
lv_I_FIX_ASGMT TYPE BAPI_FIX_ASGMT_TTY,
lv_I_ITEMS_IN TYPE BAPIWRFSHELFIMP_TTY,
lv_I_MAPPING_VARIANT TYPE BAPISHELFHDEXP-MAP_VAR,
lv_I_STORES TYPE BAPI_WRFSHELFSTORES_TTY,
lv_RETURN TYPE BAPIRETURN1,
lv_STORES TYPE BAPI_WRFSHELFSTORES_TTY,
lv_other TYPE c.

CALL METHOD lo_class=>CHANGE_DATA(
EXPORTING
I_EXTENSIONIN = lv_I_EXTENSIONIN
I_FIX_ASGMT = lv_I_FIX_ASGMT
I_ITEMS_IN = lv_I_ITEMS_IN
I_MAPPING_VARIANT = lv_I_MAPPING_VARIANT
I_STORES = lv_I_STORES
IMPORTING
EXTENSIONIN = lv_EXTENSIONIN
FIX_ASGMT = lv_FIX_ASGMT
ITEMS_IN = lv_ITEMS_IN
STORES = lv_STORES
CHANGING
CONTROLS = lv_CONTROLS
HEAD_DATA = lv_HEAD_DATA
RETURN = lv_RETURN ).

Links to Related Class(s)

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