MAINTAIN_CLASSDATA SAP Method Maintain classification data









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

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


Parameters of Method MAINTAIN_CLASSDATA

.

NameTypeData TypeDescriptionDefault Value
I_SPCIPCSNImportingTYPE
TTO_SPCIPCSN
Table of SPCIPCSN
I_SPCIPEFFImportingTYPE
TTO_SPCIPEFF
Table of SPCIPEFF
I_SPCIPHDRImportingTYPE
SPCIPHDR
Stores header information for IP data
I_SPCIPOCHImportingTYPE
TTO_SPCIPOCH
Table of SPCIPOCH
I_SPCIPOSDSImportingTYPE
TTO_SPCIPOSDS
Table of SPCIPOSDS
I_SPCIPPARTSImportingTYPE
TTO_SPCIPPARTS
Table of SPCIPPARTS
I_SPCIPPDRImportingTYPE
SPCIPPDR
Spare parts / End items
I_SPCIPPDSImportingTYPE
TTO_SPCIPPDS
Table of SPCIPPDS
I_SPCIPPQAImportingTYPE
TTO_SPCIPPQA
Table of SPCIPPQA
I_SPCIPRPDEImportingTYPE
TTO_SPCIPRPDE
Table of SPCIPRPDE
I_SPCIPUOAImportingTYPE
TTO_SPCIPUOA
Table of SPCIPUOA



Exceptions of Method MAINTAIN_CLASSDATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_ADSPC_CLASSDATA.
DATA: lv_I_SPCIPCSN TYPE TTO_SPCIPCSN,
lv_I_SPCIPEFF TYPE TTO_SPCIPEFF,
lv_I_SPCIPHDR TYPE SPCIPHDR,
lv_I_SPCIPOCH TYPE TTO_SPCIPOCH,
lv_I_SPCIPOSDS TYPE TTO_SPCIPOSDS,
lv_I_SPCIPPARTS TYPE TTO_SPCIPPARTS,
lv_I_SPCIPPDR TYPE SPCIPPDR,
lv_I_SPCIPPDS TYPE TTO_SPCIPPDS,
lv_I_SPCIPPQA TYPE TTO_SPCIPPQA,
lv_I_SPCIPRPDE TYPE TTO_SPCIPRPDE,
lv_I_SPCIPUOA TYPE TTO_SPCIPUOA,
lv_other TYPE c.

CALL METHOD lo_class=>MAINTAIN_CLASSDATA(
EXPORTING
I_SPCIPCSN = lv_I_SPCIPCSN
I_SPCIPEFF = lv_I_SPCIPEFF
I_SPCIPHDR = lv_I_SPCIPHDR
I_SPCIPOCH = lv_I_SPCIPOCH
I_SPCIPOSDS = lv_I_SPCIPOSDS
I_SPCIPPARTS = lv_I_SPCIPPARTS
I_SPCIPPDR = lv_I_SPCIPPDR
I_SPCIPPDS = lv_I_SPCIPPDS
I_SPCIPPQA = lv_I_SPCIPPQA
I_SPCIPRPDE = lv_I_SPCIPRPDE
I_SPCIPUOA = lv_I_SPCIPUOA ).

Links to Related Class(s)

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