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: 

Searching row in Table control

former_member219871
Participant
0 Kudos

Hi..

I used FM TABLE_GET_KEY_TO_SET_CUR_ROW to search row data in table control.

i given 3 fields in Search button as Vendor, Material and Manufacturer Id.

my code is working for when user gives 3fields mandatory and search. pls suggest me how to give when user gives any one or two fields to use search option..

2 REPLIES 2

former_member209703
Active Contributor
0 Kudos

Why don't you write some code to do the searching? I mean the Table Control has always an associate internal table with the data that is been displayed/changed in the screen. You can do yourself that search by using either a READ TABLE statement or just a LOOP AT it_table with a WHERE clause.

0 Kudos

Already i wrote code for Searching using Read table. but that is working for 3fields mandatory. i want any 1field user can give able to search. i refer LSVIMF3I standard but i didn't understood that. pls provide other process.