1

I want to create a new account record while syncing outlook contacts to D365.

Example: In outlook, I have a contact with following details.

( Name: Cathon Cook, Account: Alphen House, Mail:cook@gmail.com)

When I go and import this contact to D365 from outlook, the only contact is creating. That is fine but I want to create an account (with a name: Alphen House) If the Account/Organization with that contact does not exist in the account record.

James Z
  • 12,209
  • 10
  • 24
  • 44
NaveenGNK
  • 93
  • 3
  • 12

2 Answers2

1

You can do this with a plugin - register it to run on the create of the contact record, check to see if the matching account exists, and create the account if it does not.

Matt
  • 1,370
  • 2
  • 16
  • 40
0

Create a workflow against the contact entity. You can then add a step to check if the contact's account field has a value then create an account record.

Alessi
  • 759
  • 3
  • 11