Hello,
Is it possible to connect one dynamics sales database to multiple business central databases. If yes, what to be considered in the process and before that?
Hello,
Is it possible to connect one dynamics sales database to multiple business central databases. If yes, what to be considered in the process and before that?
The only issue I can see here is the ModifiedBy Filter that is used when searching for modified records in CRM which will then be synced to BC.
But that is only an issue in BiDirectional mappings and can be overcome simply by having a single field mapping that is unidirectional--FromIntegrationTable.
Here is the base code that determines if "ModifiedBy" should be a filter:
codeunit 5340 "CRM Integration Table Synch." ... local procedure IsModifiedByFilterNeeded(IntegrationTableMapping: Record "Integration Table Mapping"): Boolean begin if IntegrationTableMapping."Delete After Synchronization" then exit(false); if IntegrationTableMapping.Direction = IntegrationTableMapping.Direction::Bidirectional then exit(not HasUnidirectionalFieldMappingFromIntegrationTable(IntegrationTableMapping)); exit(true); end;
Am I missing something else NorthW ?
That is not possible with the out of the box integration between sales & Business Central.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,214 Most Valuable Professional
nmaenpaa 101,156