Using business rule for Data Import Validation

Recently I saw one question in CRM forum where user was interested in using Business Rules to implement data validation for Data Import? so can we do that ?? The answer is Yes !!, of course we can do that, business provides support to run your logic on server side right, if you don’t know this, check our earlier article first, but from end user perspective it will not be helpful.

Let’s see this in action using a quick business rule on Contact entity. Suppose we have couple of fields which is required and we want to cancel data import if those set of fields are missing in import file. Let’s say we want to enforce user to supply contact’s email and phone number:

busr1

So let’s setup quick business rules for contact entity to show error message if contact’s email or phone number is null.

If you are new to business rule, please check our earlier articles

  1. Navigate to your Dynamics 365 customer engagement application or you can setup a trail, using our earlier article
  2. Create custom solution and contact entity in our solution.
  3. Expand entity node under Components
  4. Select Contact and select Business Rules under Contact entity node
  5. Click on New under business rule tool bar to create new business rule
  6. Click on Add condition and add two rules one for email and one for phone, we can use or operator between them.
  7. Add Show Error Message action, to show error message, write some message. After completion it should look something like below:

busr2

8. Now make sure to set scope of business rule as Entity (Because we want to make sure this should run from server side call)

busr3

9. Save and activate business rule.

Now when we will import contact record, with missing email or phone number, it will show us error

busr4

So as you can see the message is not user friendly so we should look for other more options which can provide more user friendly message.

 

One thought on “Using business rule for Data Import Validation

  1. Pingback: Using business rule for Data Import Validation - Microsoft Dynamics CRM Community

Leave a Reply

Your email address will not be published. Required fields are marked *