CLEAR_FIELDS SAP Method Initialize Date/Time and/or Timestamp
Below is documentation, parameters and attributes of ABAP Method CLEAR_FIELDS within SAP class CL_CACS_TIMESTAMP_CONVERT. 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 CL_CACS_TIMESTAMP_CONVERT 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 CLEAR_FIELDS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CLEAR_FIELDS
.| Name | Type | Data Type | Description | Default Value |
| ID_FIELD_DATE | Importing | TYPE FIELDNAME | Field Name | |
| ID_FIELD_TIME | Importing | TYPE FIELDNAME | Field Name | |
| ID_FIELD_TIMESTAMP | Importing | TYPE FIELDNAME | Field Name | |
| IS_STRUCTURE | Changing | TYPE ANY | Structure to be Changed |
Exceptions of Method CLEAR_FIELDS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_CACS_TIMESTAMP_CONVERT.
DATA: lv_ID_FIELD_DATE TYPE FIELDNAME,
lv_ID_FIELD_TIME TYPE FIELDNAME,
lv_ID_FIELD_TIMESTAMP TYPE FIELDNAME,
lv_IS_STRUCTURE TYPE ANY,
lv_other TYPE c.
CALL METHOD lo_class=>CLEAR_FIELDS(
EXPORTING
ID_FIELD_DATE = lv_ID_FIELD_DATE
ID_FIELD_TIME = lv_ID_FIELD_TIME
ID_FIELD_TIMESTAMP = lv_ID_FIELD_TIMESTAMP
CHANGING
IS_STRUCTURE = lv_IS_STRUCTURE ).
Links to Related Class(s)
CL_CACS_...Full list of available SAP object classes
Search for further information about these or an SAP related objects