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

report position

Former Member
0 Likes
416

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.

3 REPLIES 3
Read only

Former Member
0 Likes
396

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

Read only

0 Likes
396

You can also EXPORT the list to MEMORY &

when 'REFRESH'.

import from memory into an itab & display only the lines you need..

~Suresh

Read only

Former Member
0 Likes
396

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