Salesforce to Workday Financials Account - Customer Migration
home
Moves a large set of accounts from Salesforce to Workday Financials. You can trigger this manually, or programmatically with an HTTP call. Accounts are upserted so that the migration can be run multiple times without creating duplicates. This template uses batch to efficiently process many records at a time.
License Agreement
This template is subject to the conditions of the MuleSoft License Agreement. Review the terms of the license before downloading and using this template. You can use this template for free with the Mule Enterprise Edition, CloudHub, or as a trial in Anypoint Studio.
Use Case
As an admin I want to migrate Salesforce accounts to Workday customers.
This template provides help for the process of migrating accounts from Salesforce, where you can specify the filtering criteria and desired behavior when the corresponding customer already exists in Workday.
As implemented, this template leverages the Mule batch module. The batch job in this template:
- Queries all existing accounts at Salesforce that match the filtering criteria to get the Salesforce IDs.
- Queries Workday for existing customers based on the Salesforce IDs retrieved in step 1.
- Inserts or updates customers in the Workday system based on the results of these queries.
- Sends the migration results to the email addresses that you configure and outputs to the console as well.
Considerations
There are certain prerequisites that must be considered to run this template. All of them deal with the preparations in both source and destination systems, that must be made for the template to run smoothly. Failing to do so can lead to unexpected behavior of the template.
Salesforce Considerations
- Where can I check that the field configuration for my Salesforce instance is the right one? See: Salesforce: Checking Field Accessibility for a Particular Field.
- Can I modify the Field Access Settings? How? See: Salesforce: Modifying Field Access Settings.
As a Data Source
If a user who configures the template for the source system does not have at least read only permissions for the fields that are fetched, then an InvalidFieldFault API fault displays.
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. Reference your WSDL or the
describe call for the appropriate names.'
]
row='1'
column='486'
]
]
Workday Considerations
As a Data Destination
There are no considerations with using Workday as a data destination.
Workday Financials Considerations
As a Data Destination
Important: When creating new Workday customers, an existing customer category must be chosen. To do this, this template uses a lookup table with predefined mappings between Salesforce data (Industry) and Workday Customer Category ID. Workday customer categories can be user defined, therefore for the mapping, you must edit this manually before running this template.
To view all Workday Customer Categories, type "customer categories" into the search field in Workday and select the Customer Categories report.
In the report you should see all the customer categories available. Select Integration IDs > View Integration IDs from available actions of each customer category and update the function industryToCustomerCategoryMapping in the template's DataWeave component 'Prepare put customer request' manually. The default customer category ID can be edited inside the same DataWeave component in the row where customer category ID is set. This category is used if the source account's Industry value does not match the defined mappings in the function.
Run it!
Simple steps to run this template.
Whichever way you choose to run this template, this is an example of the output you see after browse to the HTTP endpoint:
Batch Process initiated
ID: 6eea3cc6-7c96-11e3-9a65-55f9f3ae584e
Records to be processed: 3
Started execution on: Mon Jan 25 10:08:16 CET 2019
Running On Premises
In this section we help you run this template on your computer.
Where to Download Anypoint Studio and the Mule Runtime
If you are new to Mule, download this software:
Note: Anypoint Studio requires JDK 8.
Importing a Template into Studio
In Studio, click the Exchange X icon in the upper left of the taskbar, log in with your Anypoint Platform credentials, search for the template, and click Open.
Running on Studio
After you import your template into Anypoint Studio, follow these steps to run it:
- Locate the properties file
mule.dev.properties
, in src/main/resources. - Complete all the properties required per the examples in the "Properties to Configure" section.
- Right click the template project folder.
- Hover your mouse over
Run as
. - Click
Mule Application (configure)
. - Inside the dialog, select Environment and set the variable
mule.env
to the valuedev
. - Click
Run
.
Running on Mule Standalone
Update the properties in one of the property files, for example in mule.prod.properties, and run your app with a corresponding environment variable. In this example, use mule.env=prod
.
After this, you can trigger the use case by browsing to the local HTTP connector with the port you configured in your file. For example for port 9090
browse to http://localhost:9090/migrateaccounts
and this outputs a summary report and sends it in the email.
Running on CloudHub
When creating your application in CloudHub, go to Runtime Manager > Manage Application > Properties to set the environment variables listed in "Properties to Configure" as well as setting the mule.env value.
Once your app is all set up and started, if you choose as the domain name sfdcaccountmigration
to trigger the use case, browse to http://sfdcaccountmigration.cloudhub.io/migrateaccounts
and the report is sent to the emails you configure.
Deploying a Template in CloudHub
In Studio, right click your project name in Package Explorer and select Anypoint Platform > Deploy on CloudHub.
Properties to Configure
To use this template, configure properties such as credentials, configurations, etc.) in the properties file or in CloudHub from Runtime Manager > Manage Application > Properties. The sections that follow list example values.
Application Configuration
Application Configuration
- http.port
9090
- page.size
200
Salesforce Connector Configuration
- sfdc.username
bob.dylan@orga
- sfdc.password
DylanPassword123
- sfdc.securityToken
avsfwCUl7apQs56Xq2AKi3X
Workday Connector Configuration
- wdayf.username
joan
- wdayf.tenant
acme_pt1
- wdayf.password
joanPass123
- wdayf.host
your_impl-cc.workday.com
- wdayf.country
USA
- wdayf.state
USA-CA
- wdayf.postalCode
90001
- wdayf.city
San Francisco
- wdayf.street
Main Street 123
- wdayf.phone
123-4567
SMTP Services Configuration
- smtp.host
smtp.gmail.com
- smtp.port
587
- smtp.user
gmail_user
- smtp.password
gmail_password
Email Details
- mail.from
batch.migrateaccounts.migration%40mulesoft.com
- mail.to
your.email@example.com
- mail.subject
Batch Job Finished Report
API Calls
Salesforce imposes limits on the number of API calls that can be made. However, we make API call to Salesforce only once during migration, so this is not something to worry about.
Customize It!
This brief guide provides a high level understanding of how this template is built and how you can change it according to your needs. As Mule applications are based on XML files, this page describes the XML files used with this template. More files are available such as test classes and Mule application files, but to keep it simple, we focus on these XML files:
- config.xml
- businessLogic.xml
- endpoints.xml
- errorHandling.xml
config.xml
This file provides the configuration for connectors and configuration properties. Only change this file to make core changes to the connector processing logic. Otherwise, all parameters that can be modified should instead be in a properties file, which is the recommended place to make changes.
businessLogic.xml
Functional aspect of the template is implemented on this XML, directed by one flow responsible of executing the logic. For the purpose of this particular template the mainFlow just executes a batch job which handles all the migration logic. This flow has Error handling that points to errorHandlingFlow defined in errorHandling.xml file.
endpoints.xml
This is the file where you find the inbound side of your integration app. This template has only an HTTP Listener as the way to trigger the use case.
HTTP Listener Connector - Start Report Generation
${http.port}
is set as a property to be defined either in a property file or in CloudHub environment variables.- The path configured by default is
migrateaccounts
and you are free to change for the one you prefer. - The host name for all endpoints in your CloudHub configuration should be defined as
localhost
. CloudHub routes requests from your application domain URL to the endpoint.
errorHandling.xml
This file handles how your integration reacts depending on the different exceptions. This file provides error handling that is referenced by the main flow in the business logic.