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
.| Name | Type | Data Type | Description | Default Value |
| I_SPCIPCSN | Importing | TYPE TTO_SPCIPCSN | Table of SPCIPCSN | |
| I_SPCIPEFF | Importing | TYPE TTO_SPCIPEFF | Table of SPCIPEFF | |
| I_SPCIPHDR | Importing | TYPE SPCIPHDR | Stores header information for IP data | |
| I_SPCIPOCH | Importing | TYPE TTO_SPCIPOCH | Table of SPCIPOCH | |
| I_SPCIPOSDS | Importing | TYPE TTO_SPCIPOSDS | Table of SPCIPOSDS | |
| I_SPCIPPARTS | Importing | TYPE TTO_SPCIPPARTS | Table of SPCIPPARTS | |
| I_SPCIPPDR | Importing | TYPE SPCIPPDR | Spare parts / End items | |
| I_SPCIPPDS | Importing | TYPE TTO_SPCIPPDS | Table of SPCIPPDS | |
| I_SPCIPPQA | Importing | TYPE TTO_SPCIPPQA | Table of SPCIPPQA | |
| I_SPCIPRPDE | Importing | TYPE TTO_SPCIPRPDE | Table of SPCIPRPDE | |
| I_SPCIPUOA | Importing | TYPE TTO_SPCIPUOA | Table of SPCIPUOA |
Exceptions of Method MAINTAIN_CLASSDATA
This method does not have any exceptionsExample 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