2008 Mar 14 12:15 PM
Hi all,
hi all,
2:15:02(03 04.................)?
how is the program for display for time with next screen in only one line..
reply me soon,
thx,
s.suresh
Hi all,
hi all,
2:15:02(03 04.................)?
how is the program for display for time with next screen in only one line..
reply me soon,
thx,
s.suresh
2008 Mar 14 12:23 PM
data : v_time like sy-uzeit.
v_time = sy-uzeit.
write : v_time.
do 20 times. <-- here give how many times U want to print ...
wait up to 1 seconds.
v_time = sy-uzeit.
write : v_time+4(2) , ' '.
enddo.
2008 Mar 14 12:34 PM
hi srinivas,
4:15:(how to next second)? for only one line...
how is the program for it.??
reply me soon,
s.suresh.
2008 Mar 14 12:30 PM
CONCATENATE SY-UZEIT+0(2) SY-UZEIT+2(2) SY-UZEIT+4(2) INTO V_OUTPUT SEPARATED BY ':'1 line code as you wanted it to be
2008 Mar 14 12:42 PM
hi rahul,
CONCATENATE SY-UZEIT0(2) SY-UZEIT2(2) SY-UZEIT+4(2) INTO V_OUTPUT SEPARATED BY ':'
how is it?
send me full program for it.
reply me soon,
s.suresh
2008 Mar 14 12:38 PM
Hi,
Run this report.
REPORT abc.
DATA: time LIKE sy-uzeit .
time = sy-uzeit.
DO.
ADD 1 TO time.
WRITE: / time.
IF sy-index = 20.
EXIT.
ENDIF.
ENDDO.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |