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

Fuzzy Text search

Former Member
0 Likes
688

Hi,

We have requierment to compare the employee names i.e., for eg: in database we have names as follows:

srinivas rao

sreenivas

reddy srinevas....

If user entere name as srinivas for searching then the query should show all above names as output.

In oracle we have function called FUZZY. Is there any SAP function similar to this.?

Hi,

We have requierment to compare the employee names i.e., for eg: in database we have names as follows:

srinivas rao

sreenivas

reddy srinevas....

If user entere name as srinivas for searching then the query should show all above names as output.

In oracle we have function called FUZZY. Is there any SAP function similar to this.?

3 REPLIES 3
Read only

Former Member
0 Likes
513

Hi Srinivas,

There is no function or statement in SAP to check for FUZZY logic but You have SEARCH statement to search for string in a string.

Check this link for SEARCH statement.

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/search.htm

Thanks,

Vinay

Read only

Former Member
0 Likes
513

Thnx for your advise.

Can we use the Oracle FUZZY function in our SAP(4.7) through native SQL statement?

Read only

0 Likes
513

Hi Srinivas,

Yes, You can do with NATIVE SQL statements but the table should exist in your Oracle database.

To use a Native SQL statement, you must precede it with the EXEC SQL statement, and follow it with the ENDEXEC statement as follows:

EXEC SQL [PERFORMING <form>].

<Native SQL statement>

ENDEXEC.

Thanks,

Vinay