Skip to Content
0
Former Member
May 26, 2008 at 08:53 AM

Update TimeStamp

133 Views

Hey all ,

I am using below FM to get the timestamp,

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.

Now i want to add 30 mins more to the timestamp and need to change the date accordingly. Can anyone help me out in this.Thank yiou for your reply. Points will be rewarded.

l_timestamp + 30 will not work . Can anyone suggest me the method for this.