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

LIST DISPLAY

Former Member
0 Likes
352

hi ,

i have to display the list continuously means

ihave 30 records in first page i have to disply 10 records and next page 10 records like taht.... inbetweeen it has to wait 1 min.

thanks,

mahi..

2 REPLIES 2
Read only

Former Member
0 Likes
330

data: no type i.

use

wait up to 60 seconds.

for delay.

loop at itab.

no = no + 1.

if no > 10.

wait up to 60 seconds.

celar no.

endif.

endloop.

Read only

Former Member
0 Likes
330

LOOP AT ITAB.

COMPUTE COUNT = SY-TABIX MOD 10.

IF COUNT = 0.

WAIT UP TO 60 SECONDS.

NEW-PAGE

ENDIF.

ENDLOOP.

REGARDS

SHIBA DUTTA