‎2007 Dec 25 5:48 AM
i had the two time formats in ::-- how can i add these two time formats,
and i had days ,how to converts into ::
thanks,
krishna
‎2007 Dec 25 6:12 AM
Hi
Try this
DATA : a type t ,
b type t ,
c type t .
a = '231010' .
b = '000540' .
c = a + b .
Write c .
Hope Helps.
‎2007 Dec 25 6:12 AM
Hi
Try this
DATA : a type t ,
b type t ,
c type t .
a = '231010' .
b = '000540' .
c = a + b .
Write c .
Hope Helps.
‎2007 Dec 25 6:25 AM
Hi,
Check FM : 'C14B_ADD_TIME'
This provides the date and time calculation based on input time.
Ex1:
Input : Start time : 10:00:00
Start date : 2007/12/25
Add time : 11:00:00
Result :
Endate : 21:00:00
Enddate : 2007/12/25
Ex2:
Input : Start time : 10:00:00
Start date : 2007/12/25
Add time : 15:00:00
Result :
Endate : 01:00:00
Enddate : 2007/12/26