2008 Jan 17 5:21 AM
2008 Jan 17 5:27 AM
Star ' * ' is treated as wild card in selection screen
> ' * ' = wild card in selection screens.
Edited by: JackandJay on Jan 17, 2008 12:28 AM
2008 Jan 17 5:30 AM
Hi ,
Thanks!!! for your reply. Can u elarbate me please . I need to use in funtion module .Weather it is possible ?
Regards,
Veera
2008 Jan 17 5:34 AM
In FM? what do you mean exactly
when you call a FM you wanted to use a Wild card?
or in the FM code?
-
using a wild card when you call a FM is not possible. that depend on which Fm you call...
plz elaborate ur question regarding fm
2008 Jan 17 5:49 AM
Hi ,
I had created a ZEE function module .It is having import parameter where we are giving input values for the function module .Ok.I am in need to give wildcart for the paticular input field in the import parameter.
This is my Requirement .
Regards,
Veera
2008 Jan 17 5:55 AM
thats not possible
the values when ever you pass to the import parameters need to be of the same type, else a type conflict exception will raise.
importing
vbeln = '*' >>>>> type conflict will raise.
reward points if helpful
2008 Jan 17 6:03 AM
Hi Jack,
The values i am using for the paticular import parameter , which same come in input value will be always in same type but the value ranges may be differ . Can it is possible .If so HW?
Thanks and Regards,
Veera
2008 Jan 17 6:08 AM
if its of the same type then it should not be any problem...
same type not type conflict error.
2008 Jan 17 5:30 AM
In selection screen u r using
like D*
or F* etc.
so it will select starting from d and any after that.
or for 1 character u can use '+'.
Regards,
Arpit
2008 Jan 17 5:34 AM
Hi,
Wildcards are used for refining slection criteria.
eg code.
Select-options: s_matnr for mara-matnr.
INITIALIZATION.
CLEAR s_matnr.
s_matnr-SIGN = 'I'.
s_matnr-OPTION = 'CP'.
s_matnr-LOW = '10*'.
APPEND s_matnr.
select ernam
laeda
from mara
where matnr In s_matnr.
Now in selection screen one can enter 10* and get all the material number details starting with 10.