Microflow prevent duplicate entries

1
If the user enters a value that is already in the table, the information must come that the value already exists. The parameter is an object and not a list. The data comes from a SQL server. Thanks you. Using Empty in the Decision does not work.  
asked
1 answers
2

Hi Marcel,

To check if the object already exists in your local database (to avoid duplicates), you could use one of the List Operations.

You first need to retrieve all the objects from your local database to get a List of objects, and then you could either use the List Operation “Contains” or “Find”, to search for possible duplications. If no match is found then it means that the object is not a duplicate and you can proceed, otherwise you would display your message of duplicate was found.

I hope that helps you with your question, best regards!

answered