2007 Aug 30 8:30 AM
I was doing an object of online examusing ABAP Module pool..
How to display the time remaining..
Example : 10 min is the total duration of test means we want to minus from the 10 min..
I
I was doing an object of online examusing ABAP Module pool..
How to display the time remaining..
Example : 10 min is the total duration of test means we want to minus from the 10 min..
I
2007 Aug 30 11:04 AM
time_10min = '001000'.
when you start, you do GET RUNTIME and store sy-uzeit in time_beg.
then each time you display remaining time, you do
GET RUNTIME.
remaining = time_10min - ( sy-uzeit - time_beg ).
2007 Aug 30 11:24 AM
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |