TS_DEL_ARRAY SAP Method TDL: Delete Time Series on Data Record Basis
Below is documentation, parameters and attributes of ABAP Method TS_DEL_ARRAY within SAP class /SCMB/IF_TDL_TIMESERIES. 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 /SCMB/IF_TDL_TIMESERIES 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 TS_DEL_ARRAY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method TS_DEL_ARRAY
.| Name | Type | Data Type | Description | Default Value |
| IS_CTRL | Importing | TYPE /SCMB/TDL_TS_DELARRAY_CTRL | TDL: Control Structure for Deleting Time Series | |
| IT_LOC_TZONE | Importing | TYPE /SCMB/TDL_LOC_TZONE_TAB | TDL: Location Time Zone Table | |
| IT_PERIOD | Importing | TYPE /SCMB/TDL_TS_PERIODS_TAB | TDL: Time Series Period Structure | |
| IT_TS | Importing | TYPE /SCMB/TDL_T_TS_TAB | TDL: Time Series | |
| CT_RETURN | Changing | TYPE BAPIRETTAB | Table with BAPI Return Information | |
| CV_MSGTY | Changing | TYPE MSGTY | Message Type |
Exceptions of Method TS_DEL_ARRAY
/SCMB/CX_TDL_DAO - TDL: Error in the Data Access ClassesExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_TDL_TIMESERIES.
DATA: lv_CT_RETURN TYPE BAPIRETTAB,
lv_CV_MSGTY TYPE MSGTY,
lv_IS_CTRL TYPE /SCMB/TDL_TS_DELARRAY_CTRL,
lv_IT_LOC_TZONE TYPE /SCMB/TDL_LOC_TZONE_TAB,
lv_IT_PERIOD TYPE /SCMB/TDL_TS_PERIODS_TAB,
lv_IT_TS TYPE /SCMB/TDL_T_TS_TAB,
lv_other TYPE c.
CALL METHOD lo_class=>TS_DEL_ARRAY(
EXPORTING
IS_CTRL = lv_IS_CTRL
IT_LOC_TZONE = lv_IT_LOC_TZONE
IT_PERIOD = lv_IT_PERIOD
IT_TS = lv_IT_TS
CHANGING
CT_RETURN = lv_CT_RETURN
CV_MSGTY = lv_CV_MSGTY ).
Links to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects