Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Sy-uzeit

Former Member
0 Likes
787

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

5 REPLIES 5
Read only

Former Member
0 Likes
738

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.

Read only

0 Likes
738

hi srinivas,

4:15:(how to next second)? for only one line...

how is the program for it.??

reply me soon,

s.suresh.

Read only

rahulkavuri
Active Contributor
0 Likes
738
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

Read only

0 Likes
738

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

Read only

asik_shameem
Active Contributor
0 Likes
738

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.