‎2006 Dec 20 5:08 AM
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..
‎2006 Dec 20 5:16 AM
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.
‎2006 Dec 20 5:46 AM
LOOP AT ITAB.
COMPUTE COUNT = SY-TABIX MOD 10.
IF COUNT = 0.
WAIT UP TO 60 SECONDS.
NEW-PAGE
ENDIF.
ENDLOOP.
REGARDS
SHIBA DUTTA