About Entities

0
I want to have my entity unable to be duplicated according to one of its attribute. How can I do that? This entity can be created by admin account, but I want it to remind the admin when there is a same entity in the storage. (Like, for example, there`s an entity with a same variable named “Name”)
asked
1 answers
0

Hello Hanxuan,

If i understood your question correct, you want to restrict the duplicate entry store in database.

you can constraint it on entity level with validation rule tab.

or

on save button, you can call microflow and check whether same value exist in database if “yes” don’t save it again and throw error message. if “NO” continue save the data.

Thanks

answered