‎2007 Mar 26 10:12 AM
HEY THERE !
Is there a Function, which generates an selection table ?
I need for example a function which recognizes an "*" in my search string and automaticly changes the operator from "BT" to "CP".
best regards,
Sven
‎2007 Mar 26 10:17 AM
‎2007 Mar 26 10:15 AM
sorry i am not clear enough about your requirement but i think when you are giving any input to select-options as 123* the system automatically taking it as CP no need to worry about that...
regards
shiba dutta
‎2007 Mar 26 10:17 AM
‎2007 Mar 26 10:42 AM
does this also work under webdynpro ?
What I forgot to say was, that it's an webdynpro application.
‎2007 Mar 26 12:25 PM
If you're looking to access a database table try something like:
types tt_r_matnr type range of matnr.
data l_it_r_matnr type tt_r_matnr.
data l_count type i
select count(*)
into l_count
from mara
where matnr in l_it_r_matnr
l_it_r_matnr is a selection option table, and I think this is OO compatible.
‎2007 Mar 26 1:32 PM
I need an function which checks my search fields, and automaticly uses the correct operator.
Like the selection-screen...
But in webdynpro, I can't use the selection-screen