Application Development 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: 

Filtering data in internal table with select option values.

Former Member
0 Kudos

Hi All ,

Help needed.

I need to filter a internal table based on the values from select options , The data in the internal table is from BW query and I cant use select option in that query ,

whats the efficient way of doing it .

Thanks And Regard s

Vinay Kolla

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

use like:

loop at itab into wa where field1 = so_1....

append wa to itab2.

endloop.

clear itab.

append lines of itab2 to itab1.

Regards,

Renjith Michael.

2 REPLIES 2

Former Member
0 Kudos

hi,

use like:

loop at itab into wa where field1 = so_1....

append wa to itab2.

endloop.

clear itab.

append lines of itab2 to itab1.

Regards,

Renjith Michael.

Former Member
0 Kudos

If you are not able to use select-options use range value.