cancel
Showing results for 
Search instead for 
Did you mean: 

How to create a rule to validate or define conformity of email addresses?

Former Member
0 Kudos

Hello,

I am Rakesh from Mumbai and working with Supplier Data.

I have come across the situation where I need to check conformity of email Ids. I need to pass those records which have "@abc.com" as domain or email ID must contain "@abc.com" at the end of the string.

Please help.

Accepted Solutions (0)

Answers (2)

Answers (2)

anand_sagarsethi
Contributor
0 Kudos

This will give you answer:

https://archive.sap.com/discussions/message/2226196#2226196

Please search before posting your question.

Anand

burrif91
Employee
Employee
0 Kudos

Hello Rakesh

To check if there is domain "@abc.com" in the email, you can create a rule as follow:

BEGIN
return $Email like '%@abc.com%';
END

I hope that helps, otherwise let me know.

best regards,
Fabian