Reputation: 1081
I have a storemanager dashboard which makes use of Microsoft Dynamics AX database. To avoid writing a lot of code, I plan on using CRT (commerce runtime) which would give me some form of abstraction and also saves my time writing a lot of code by using other integration methods like AIF and .net business connector.
But, my doubt is, the description of CRT says that it makes use of CRT channel database.
Will it have required amount of data that ax database would have and is it the right way to go forward, when you have to make use of Dynamics AX database (central db) that has all the data?
Upvotes: 2
Views: 249
Reputation: 18061
See this overview of the Commerce Runtime Architecture.
If the dashboard can use the services of the CRT, then use that.
The CRT database is not the AX database and contain a subset of the AX data, and is asynchronously updated using a one- or two-way sync depending on the data.
You will have to decide whether this is okay for your application.
Upvotes: 2