hello All,
I trying to update the time value from timestamp using FM
CALL FUNCTION 'RKE_TIMESTAMP_CONVERT_INPUT'
EXPORTING
i_date = sy-datum
i_dayst = sy-dayst
i_time = sy-uzeit
i_tzone = sy-tzone
IMPORTING
e_timestmp = l_timestamp
EXCEPTIONS
date_invalid = 1
OTHERS = 2.
l_timestamp + 30.
But it is not incresing the time value. I want to change the date according to time value.Is anybody having the idea for this. Please help me out in this. thanks for reply.