Application Development and Automation 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: 
Read only

Wildcards?

Former Member
0 Likes
1,552

Hi,

What is wildcards in selection screen?

Regards,

Veera

Hi,

What is wildcards in selection screen?

Regards,

Veera

9 REPLIES 9
Read only

former_member156446
Active Contributor
0 Likes
1,444

Star ' * ' is treated as wild card in selection screen

> ' * ' = wild card in selection screens.

Edited by: JackandJay on Jan 17, 2008 12:28 AM

Read only

0 Likes
1,444

Hi ,

Thanks!!! for your reply. Can u elarbate me please . I need to use in funtion module .Weather it is possible ?

Regards,

Veera

Read only

0 Likes
1,444

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

Read only

0 Likes
1,444

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

Read only

0 Likes
1,444

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

Read only

0 Likes
1,444

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

Read only

0 Likes
1,444

if its of the same type then it should not be any problem...

same type not type conflict error.

Read only

arpit_shah
Contributor
0 Likes
1,444

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

Read only

Former Member
0 Likes
1,444

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.