Code Monkey home page Code Monkey logo

template-sfdc2msdyn-account-bidirectional-sync's Introduction

Anypoint Template: Salesforce and MS Dynamics Account bidirectional sync

License Agreement

Note that using this template is subject to the conditions of this License Agreement. Please review the terms of the license before downloading and using this template. In short, you are allowed to use the template for free with Mule ESB Enterprise Edition, CloudHub, or as a trial in Anypoint Studio.

Use Case

As an admin, I want to have my accounts synchronized between two different systems - Salesforce and MS Dynamics.

Template overview

Let's say we want to keep Accounts synchronized between a Salesforce instance and a MS Dynamics CRM instance. Then, the integration behavior can be summarized just in the following steps:

  1. Ask Salesforce:

What changes have there been since the last time I got in touch with you?

  1. For each of the updates fetched in the previous step (1.), ask MS Dynamics:

Does the update received from Salesforce should be applied?

  1. If MS Dynamics answers for the previous question (2.) is Yes, then upsert (create or update depending each particular case) MS Dynamics with the belonging change.

  2. Repeat previous steps (1. to 3.) the other way around (using MS Dynamics as source instance and Salesforce as the target one)

Repeat ad infinitum:

  1. Ask Salesforce:

What changes have there been since the question I've made in the step 1.?

And so on...

The question for recent changes since a certain moment in nothing but a poll inbound with a watermark defined.

Considerations

To make this Anypoint Template run, there are certain preconditions that must be considered. All of them deal with the preparations in both, that must be made in order for all to run smoothly.

Failling to do so could lead to unexpected behavior of the template.

Note: You need to install Java Cryptography Extensions to be able to connect to MS Dynamics. Please choose a relevant version according to your Java installation.

Salesforce Considerations

There may be a few things that you need to know regarding Salesforce, in order for this template to work.

In order to have this template working as expected, you should be aware of your own Salesforce field configuration.

###FAQ

As source of data

If the user configured in the template for the source system does not have at least read only permissions for the fields that are fetched, then a InvalidFieldFault API fault will show up.

java.lang.RuntimeException: [InvalidFieldFault [ApiQueryFault [ApiFault  exceptionCode='INVALID_FIELD'
exceptionMessage='
Account.Phone, Account.Rating, Account.RecordTypeId, Account.ShippingCity
^
ERROR at Row:1:Column:486
No such column 'RecordTypeId' on entity 'Account'. If you are attempting to use a custom field, be sure to append the '__c' after the custom field name. Please reference your WSDL or the describe call for the appropriate names.'
]
row='1'
column='486'
]
]

As destination of data

There are no particular considerations for this Anypoint Template regarding Salesforce as data destination.

Microsoft Dynamics CRM Considerations

As source of data

In order for this Anypoint Template to work, a custom field new_salesforceid has to be defined for Accounts. Please find more information here.

There are no other particular considerations for this Anypoint Template regarding Microsoft Dynamics CRM as data origin.

As destination of data

In order for this Anypoint Template to work, a custom field new_salesforceid has to be defined for Accounts. Please find more information here.

There are no other particular considerations for this Anypoint Template regarding Microsoft Dynamics CRM as data destination.

Run it!

Simple steps to get Salesforce and MS Dynamics Account bidirectional sync running. See below.

Running on premise

In this section we detail the way you should run your Anypoint Template on your computer.

Where to Download Mule Studio and Mule ESB

First thing to know if you are a newcomer to Mule is where to get the tools.

  • You can download Mule Studio from this Location
  • You can download Mule ESB from this Location

Importing an Anypoint Template into Studio

Mule Studio offers several ways to import a project into the workspace, for instance:

  • Anypoint Studio generated Deployable Archive (.zip)
  • Anypoint Studio Project from External Location
  • Maven-based Mule Project from pom.xml
  • Mule ESB Configuration XML from External Location

You can find a detailed description on how to do so in this Documentation Page.

Running on Studio

Once you have imported you Anypoint Template into Anypoint Studio you need to follow these steps to run it:

  • Locate the properties file mule.dev.properties, in src/main/resources
  • Complete all the properties required as per the examples in the section Properties to be configured
  • Once that is done, right click on you Anypoint Template project folder
  • Hover you mouse over "Run as"
  • Click on "Mule Application"

Running on Mule ESB stand alone

Complete all properties in one of the property files, for example in [mule.prod.properties] (../master/src/main/resources/mule.prod.properties) and run your app with the corresponding environment variable to use it. To follow the example, this will be mule.env=prod.

Running on CloudHub

While creating your application on CloudHub (Or you can do it later as a next step), you need to go to Deployment > Advanced to set all environment variables detailed in Properties to be configured as well as the mule.env.

Deploying your Anypoint Template on CloudHub

Mule Studio provides you with really easy way to deploy your Template directly to CloudHub, for the specific steps to do so please check this link

Properties to be configured (With examples)

In order to use this Mule Anypoint Template you need to configure properties (Credentials, configurations, etc.) either in properties file or in CloudHub as Environment Variables. Detail list with examples:

Application configuration

Application configuration

  • poll.frequencyMillis 10000
    These are the miliseconds (also different time units can be used) that will run between two different checks for updates in Salesforce and MS Dynamics

SalesForce Connector configuration for company A

  • sfdc.username [email protected]
  • sfdc.password salesforcePass
  • sfdc.securityToken wJFJAf6lw3vH86bDLWSjpfJC
  • sfdc.url https://login.salesforce.com/services/Soap/u/32.0
  • sfdc.integration.user.id 00520000003LtvGAAS
  • sfdc.watermark.default.expression 2015-04-01T19:40:27.000Z

MS Dynamics Connector configuration for company B

  • dynamicscrm.username msDynamicsUser@@yourOrg.onmicrosoft.com
  • dynamicscrm.password msDynamicsPass
  • dynamicscrm.url https://htesting.api.crm4.dynamics.com/XRMServices/2011/Organization.svc
  • dynamicscrm.watermark.default.expression 2015-04-01T19:40:27Z
  • dynamicscrm.integration.user.id 534679675
  • dynamicscrm.integration.ownerid 534679675

API Calls

Salesforce imposes limits on the number of API Calls that can be made. Therefore calculating this amount may be an important factor to consider. The template calls to the API can be calculated using the formula:

1 + X + X / 200

Being X the number of Accounts to be synchronized on each run.

The division by 200 is because, by default, Accounts are gathered in groups of 200 for each Upsert API Call in the commit step. Also consider that this calls are executed repeatedly every polling cycle.

For instance if 10 records are fetched from origin instance, then 12 api calls will be made (1 + 10 + 1).

Customize It!

This brief guide intends to give a high level idea of how this Anypoint Template is built and how you can change it according to your needs. As mule applications are based on XML files, this page will be organized by describing all the XML that conform the Anypoint Template. Of course more files will be found such as Test Classes and Mule Application Files, but to keep it simple we will focus on the XMLs.

Here is a list of the main XML files you'll find in this application:

config.xml

Configuration for Connectors and Properties Place Holders are set in this file. Even you can change the configuration here, all parameters that can be modified here are in properties file, and this is the recommended place to do it so. Of course if you want to do core changes to the logic you will probably need to modify this file.

In the visual editor they can be found on the Global Element tab.

businessLogic.xml

Functional aspect of the Template is implemented in this XML, directed by one flow responsible of excecuting the logic. For the purpose of this particular Template there are two Batch Jobs. which handles all the logic of it. The first fromSalesforceBatch batch job is called for synchranization of Accounts from Salesforce to MS Dynamics. If the Account already exists in MS Dynamics, the last modified date are compared and according to the result, the Account is updated or not. On the other hand, if the Account does not exist, it is created. The second fromDynamicsCrmBatch batch job works in the same way, but in the opposite direction.

endpoints.xml

This is the file where you will found the inbound and outbound sides of your integration app. These flows has Exception Strategy that basically consists on invoking the defaultChoiseExceptionStrategy defined in errorHandling.xml file. It is intented to define the application API.

errorHandling.xml

This is the right place to handle how your integration will react depending on the different exceptions. This file holds a Choice Exception Strategy that is referenced by the main flow in the business logic.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.