2008 Apr 04 3:44 PM
Hi
I have this filed called TimeEvent-LTIME which is time type.
It holds time like 054333.
Now if i want to manually increase a second how can i do that?
I want to make it 054334.
Please help
2008 Apr 04 3:48 PM
Hi
I have this filed called TimeEvent-LTIME which is time type.
It holds time like 054333.
Now if i want to manually increase a second how can i do that?
I want to make it 054334.
Please help
2008 Apr 04 3:48 PM
This code worked for me
data: time like sy-uzeit.
data: time2 like sy-uzeit.
time = sy-uzeit.
time2 = time + 65.
write:/ time, time2.
I used 65 to prove it added to the minute properly.
2008 Apr 04 3:48 PM
2008 Apr 04 3:48 PM
Add one to the result ...
TimeEvent-LTIME = TimeEvent-LTIME + 1.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |