Dynamics AX & 365 Finance & Operations

Integration Framework v2 allows you to integrate with both:

  • Dynamics AX 2012 installations
  • Dynamics 365 Finance & Operations installations.

Read more about how each feature is implemented on these systems below.

With the Import Currencies Job and Task you can bring over the system currency from your remote system to Dynamicweb. Please note that no other currencies but the system currency are currently transferred.

Standard request:

XML
<GetEcomData>
<tables>
<Currencies type="all"/>
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response: 

XML
<?xml version="1.0" encoding="utf-8"?>
<tables>
<table tableName="EcomCurrencies">
<item table="EcomCurrencies">
<column columnName="CurrencyCode"><![CDATA[USD]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

The only mandatory column is CurrencyCode (EUR, DKK, etc.).

With the Import Languages Job and Task you can bring over a language from your remote system to Dynamicweb. The language transferred is the default language selected when installing the code unit in your ERP system.

Standard request:

XML
<GetEcomData>
<tables>
<Languages type="all"/>
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables>
<table tableName="EcomLanguages">
<item table="EcomLanguages">
<column columnName="LanguageId"><![CDATA[en-us]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Product units – e.g. pieces, boxes or boatloads – can also be imported and synchronized between the ERP and the Dynamicweb solution.

Standard request:

XML
<GetEcomData>
<tables>
<Units type="all"/>
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables batchId="{9620FFC9-F952-41AB-8A51-FBFB63861101}">
<table tableName="EcomVariantsGroups">
<item table="EcomVariantGroups">
<column columnName="VariantGroupId"><![CDATA[AxUnits]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

With the Import Manufacturers feature you can bring over manufacturers from your remote system to Dynamicweb. Products can then be associated with these manufacturers, which enables you to show manufacturer data (such as a name, web site and phone number) along with the product.

Standard request:

XML
<GetEcomData>
<tables>
<Manufacturers type="all"/>
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables batchId="{F5ECCC2B-C09A-43A3-BD79-CBF017F01842}">
<table tableName="EcomManufacturers">
<item table="EcomManufacturers">
<column columnName="ManufacturerId"><![CDATA[US-102]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

With the Import Customers feature you can bring over customers from your remote system to Dynamicweb. Imported customers can then place orders. Impersonation is currently not implemented which means that a Customer / Company is the same as a User / Login.

Standard request:

XML
<GetEcomData>
<tables>
<Customers type="all"/>
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables batchId="{1B532C48-0DB5-4F6E-B67F-4F346AB73087}">
<table tableName="AccessUser">
<item table="AccessUser">
<column columnName="AccessUserExternalId"><![CDATA[US-011]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

With the Import Product Groups feature you can bring over product groups from your remote system to Dynamicweb. Imported groups are used to categorize your products in the backend and frontend (although the two don’t need to match).

Standard request:

XML
<GetEcomData>
<tables>
<ProductGroups type="all"/>
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables batchId="{42B57240-4F38-4BE7-A0CE-6E9A19880F3E}">
<table tableName="EcomGroups">
<item table="EcomGroups">
<column columnName="GroupId"><![CDATA[22565420921]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

With the Import Products feature you can bring over ecommerce products from your remote system to Dynamicweb. These products can then be assigned to the product groups as imported using the Import Product Groups job and task, as well as to other groups that have not been imported (to create a marketing focused product hierarchy for example).

This endpoint also returns Product Category Field values.

Standard request:

XML
<GetEcomData>
<tables>
<Products type="all"/>
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables batchId="{730F14F3-FC64-4721-9871-9447E3E911C5}">
<table tableName="EcomProducts">
<item table="EcomProducts">
<column columnName="ProductId"><![CDATA[D0005]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

With the Import Related Products Job and Task you can bring over related products from your remote system to Dynamicweb.

Standard request:

XML
<GetEcomData>
<tables>
<RelatedProducts type="all"/>
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables batchId="{F2670AB1-FF90-4FA6-A911-7275E4977DCE}">
<table tableName="EcomProductsRelated">
<item table="EcomProductsRelated">
<column columnName="ProductRelatedProductId"><![CDATA[D0001]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

With the Import Prices feature you can bring over the current prices for your ecommerce products from your remote system to Dynamicweb. The setup of the endpoint, data integration job and scheduled task is very similar to those for products. The big difference is that the prices endpoint has been optimized for speed, so you can run it more frequently. It’s optimized by only returning the data needed to update a price and doesn’t bring back other data such as the product name, description, custom fields etc.

Prices are returned in a single currency - the System Currency of your ERP system. If you need prices in the currency specified by a customer’s trade agreement in the ERP system, then you must use price requests in the Live Integration.

Standard request:

XML
<GetEcomData>
<tables>
<ProductPrices type="all" />
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables batchId="{1AE6FEA5-DEF9-432B-BE8B-A9807DF5BFAB}">
<table tableName="EcomProducts">
<item table="EcomProducts">
<column columnName="ProductId"><![CDATA[T0004]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

With the Import Product Stock feature you can bring over the current stock levels for your ecommerce products from your remote system to Dynamicweb. The setup of the endpoint, data integration job and scheduled task is very similar to those for products. The big difference is that the stock endpoint - just like the Product Prices endpoint - has been optimized for speed so you can run it more frequently.

Standard request:

XML
<GetEcomData>
<tables>
<ProductStock type="all" />
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables batchId="{CED00060-BC6F-4564-9C8B-5F064E816AAD}">
<table tableName="EcomProducts">
<item table="EcomProducts">
<column columnName="ProductId"><![CDATA[L0001]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

With the Import Orders feature you can bring over up-to-date information about your orders from your remote system to Dynamicweb. This is often used to bring over information such as the track and trace code from the shipping provider. Another common scenario is to import orders that were never placed through Dynamicweb, so the customer can see a full order history of web orders and other orders in the customer center.

Standard request:

XML
<GetEcomData>
<tables>
<SalesHeaders type="all"/>
</tables>
</GetEcomData>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Standard response:

XML
<?xml version="1.0" encoding="utf-8"?>
<tables batchId="{53237F99-27A9-42A2-90AF-330F142B0B1E}">
<table tableName="EcomOrders">
<item table="EcomOrders">
<column columnName="OrderCreated"><![CDATA[TRUE]]></column>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

XML attributes are used by both batch integration add-ins and the live integration to trigger a particular behavior on the remote side or in the Connectors, such as batch sizes, reimports, and so on.

Some attributes may have to be added manually to your request, depending on the integration architecture.

Here is a (partial) list of attributes and what they are used for:

Attribute

Values

Use

CustomModifier

Any string

When two instances of a website point to one remote instance, this attribute allows the data to be synchronized independently.