cancel
Showing results for 
Search instead for 
Did you mean: 

Search 'name' from a description field

Former Member
0 Kudos

Hello

We recently started using SAP Information Steward and have come to know that there is a way to search for a text in a description.

I have been given an example of searching for company/contractor names mentioned in emails.

Similarly, I would like to look for names (e.g. 'John') in a description text.

Can anyone help with this?

Thanks,

Jaya

Accepted Solutions (0)

Answers (2)

Answers (2)

mageshwaran_subramanian
Active Contributor
0 Kudos

I think you should use the cleansing packages to achive this

Cleansing Packages in 4.1 and 4.2 - Enterprise Information Management - SCN Wiki

If you have Data Services , you can use Text Data Processing transform as well

former_member655569
Participant
0 Kudos

BEGIN

IF(

    NOT match_pattern($Name, '*JOHN*')) AND

    NOT match_pattern($Name, '*John*'))

)

RETURN TRUE;

ELSE

RETURN FALSE;

END