cancel
Showing results for 
Search instead for 
Did you mean: 

special charecters

Former Member
0 Kudos

Hi all,

I have 2 situations where i am not sure if they are possible to check within MDM..

1)How can i check if a field value has particlar set of special charecters in it??

Can i write a validation? 'Has any' or 'has all values' is not accepting special chareters to check!!!

2) a field value must only accept values between '0.001' and '999999.999' !! willl it be possible!!

If yes what should be the field type and how do we validate it to see if the incoming value is between the above range!!

Thanks for reading my post

KR

John

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello John

1) SAP MDM expression isn't supported special characters

2) you can use measurement field type with "None" measure type and set for it number digits after dot

or real field type

your valudation expresiion will be(for field name =f1):

IF(f1>0.001 AND f1< 1000000, TRUE, FALSE)

Regards

Kanstantsin Chernichenka

Former Member
0 Kudos

Thanks Kanstantsin.

Answers (0)