CONVERT_TO_TIMESTAMP_W_TZ SAP Method Convert to Timestamp
Below is documentation, parameters and attributes of ABAP Method CONVERT_TO_TIMESTAMP_W_TZ within SAP class /SOMO/CL_IM_SMSE_HPLSMSE. 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 /SOMO/CL_IM_SMSE_HPLSMSE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method CONVERT_TO_TIMESTAMP_W_TZ can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CONVERT_TO_TIMESTAMP_W_TZ
.| Name | Type | Data Type | Description | Default Value |
| IS_JOBCORE_SELPARA | Importing | TYPE /SOMO/MA_S_JOBCORE_SELPARA | Unified job monitoring core job selection parameter | |
| IV_TZ | Importing | TYPE TZNZONE | Time Zone | |
| EV_TS_END | Exporting | TYPE TIMESTAMP | UTC Time Stamp in Short Form (YYYYMMDDhhmmss) | |
| EV_TS_START | Exporting | TYPE TIMESTAMP | UTC Time Stamp in Short Form (YYYYMMDDhhmmss) |
Exceptions of Method CONVERT_TO_TIMESTAMP_W_TZ
This method does not have any exceptionsExample ABAP coding
DATA: lv_EV_TS_END TYPE TIMESTAMP,
lv_EV_TS_START TYPE TIMESTAMP,
lv_IS_JOBCORE_SELPARA TYPE /SOMO/MA_S_JOBCORE_SELPARA,
lv_IV_TZ TYPE TZNZONE,
lv_other TYPE c.
CALL METHOD /SOMO/CL_IM_SMSE_HPLSMSE=>CONVERT_TO_TIMESTAMP_W_TZ(
EXPORTING
IS_JOBCORE_SELPARA = lv_IS_JOBCORE_SELPARA
IV_TZ = lv_IV_TZ
IMPORTING
EV_TS_END = lv_EV_TS_END
EV_TS_START = lv_EV_TS_START ).
Links to Related Class(s)
/SOMO/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects