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

SAP EBS Search String : Wildcard

Former Member
0 Likes
1,524

Hi guys,

I would like to know how to use the wildcard ? in a searchstring. It is about the electronic banc statement.

a?b find aQb or a1b. my question is: does it also find a b? (space beetween a and b)

Thanks.

Hi guys,

I would like to know how to use the wildcard ? in a searchstring. It is about the electronic banc statement.

a?b find aQb or a1b. my question is: does it also find a b? (space beetween a and b)

Thanks.

3 REPLIES 3
Read only

Former Member
0 Likes
943

Hi,

Replace wildcard with % in your code and use like in the Select query.

Please find the sample select query as below :

          SELECT SINGLE *
                      INTO wa_jest
                      FROM crm_jest
                      WHERE objnr = wa_order-guid
                      AND   inact = ''
                      AND stat LIKE 'E%'.

Thanks & Regards,

Akshay Ruia

Read only

0 Likes
943

it is a customizing task

a?b find aQb or a1b. my question is: does it also find a b? (space beetween a and b)

Read only