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: 

help in serach field in FM

Former Member
0 Kudos

hi,

i need to do a search field in <u>FM</u> how can i do that?

ex. name: Ric

i get

Rich

Richard

....

regards

1 ACCEPTED SOLUTION

ferry_lianto
Active Contributor
0 Kudos

Hi,

You can use select with wild card statement.


SELECT waers
FROM tcurc
INTO TABLE curr_tab
WHERE waers LIKE 'US%'.

Regards,

Ferry Lianto

6 REPLIES 6

Former Member
0 Kudos

hi friends

there is no way to do search field in <u>FM</u>?

Regards

Former Member
0 Kudos

hi

good

i dont think you can create a search help in function module.

thanks

mrutyun^

0 Kudos

HI

thankes for u replay i dont wont rearch help window like in alv

i wont field or somhihng that i can write in field string

and i get in table (of fm) all str that in there

like

us

i get in table

usd

usdo

ans so on

thankes and regards

Former Member
0 Kudos

Hi

in Function Modules there is no way to put SEARCH HELPS

that functionality does not exist in SAP

<b>Reward if usefull</b>

0 Kudos

HI

thankes for u replay

i dont wont Search help window like in alv,

i wont field or somhihng that i can write in field string

and i get in table (of fm) all str that in there.

in the function i just have field and table

like

US

i get in table

USD

USDO

and so on

maybe i need to now how i can do a select

and get there all fields that in string

this is th select



   SELECT waers
      FROM tcurc
      INTO TABLE curr_tab
      WHERE waers = waers. "maybe here

thankes

and Regards

ferry_lianto
Active Contributor
0 Kudos

Hi,

You can use select with wild card statement.


SELECT waers
FROM tcurc
INTO TABLE curr_tab
WHERE waers LIKE 'US%'.

Regards,

Ferry Lianto