‎2008 Aug 27 8:27 PM
Hi,
I have one query regarding timings.
How I will get the difference of two times including hours, minutes and seconds.
For eg: 12(h):05(m):02(s) and 12(h):36(m):08(s)
Is there any function moudule or else procedure....
Could you please help me on this issue....
Thanks in advance.
- Kumar
‎2008 Aug 27 8:32 PM
‎2008 Aug 27 8:36 PM
Hi,
You can also try like this,
data : v_time1 type sy-uzeit value '120502',
v_time2 type sy-uzeit value '123608',
v_time3 type sy-uzeit.
v_time3 = v_time2 - v_time1.
write 😕 v_time3.
Thanks,
Senthil