‎2007 Apr 30 3:55 PM
Hi all,
In my report there are more than 1600 lines. Is there any possibility display list from particular line when we re-submit (I mean refresh) report???
thanks in advance.
‎2007 Apr 30 3:57 PM
HI Abdul,
I don't know if you can get the list from a particluar index, but you can alter the values in the selection.
when 'REFRESH'.
*fill new range for r_date and v_matnr.
submit prog1 with p_matnr = v_matnr and
p_date in r_date.
Regards,
Ravi
‎2007 Apr 30 4:02 PM
You can also EXPORT the list to MEMORY &
when 'REFRESH'.
import from memory into an itab & display only the lines you need..
~Suresh
‎2007 Apr 30 4:21 PM
hi,
try to use an subroutine in which u display line by reading from iternal table at an particular index
when 'refres'.
perform sub using itab.
................
...............
form sub using itab.
sort itab.
read itab index 2 binary search
endform.
something like this.....
if helpful reward
ravi