Hi,Yes, certainly you can process select-option table via loop because it is just a range table. But I don't understand why do you really need it? Why can't you just use IN so_tab construction in your selection WHERE clause?With kind regards,Dmitry
Hi,I suggest you to do the following:1. Define ITAB2 table as SORTED table with neccessary key2. Change "append itab to itab2" to INSERT itab INTO TABLE itab2.3. Use fields symbols for both internal table access. This will improve preformance and you...