cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple Patterns filter

Former Member
0 Kudos

Hi All,

We have "Products" Master Data in SAP MDM.

Recently We got a requirement to supress all records from syndication which contans any of the following extensions or any where in the product code.

Using "Exclude" option in the free form search i am able supress Products with any one of these extensions/Contains.

Could any one suggest me the best way of excluding all extension/contain products from syndication.

OLD

DEL

_S

_GES

ERROR

_M

_NEW

_B

_DP

-DP

Regards,

Sekhar

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sekhar,

The way you are currently doing seems to be good,serves the purpose and is light weight.

Another scalable way coud be using Expressions in syndicator.

You can write expression like :

NOT [ (HAS_ALL_VALUES(ProductCode,"OLD","DEL")) ]

The operator in this case before the expression in syndicator will be is True.

Thanks,

Ravi

Former Member
0 Kudos

Hi Shekhar,

You can simply write an expression as given below:

Has Any Values(ProcuctCode,"OLD","DEL","ERROR".......).

And you need to set the operator to "Is False".

It should solve your problem. Thank you.

Answers (0)