One Version of the Customer, Across Five Systems
Last updated:
The symptom
The same customer exists in the CRM, the accounting system and the operational system, with three slightly different names, two addresses and no way to tell they are the same organisation.
Every cross-system report then requires manual reconciliation, and every automation has to guess.
Four steps that fix most of it
- Choose an owner per entity. One system owns customers, one owns products, one owns suppliers. Others read.
- Create a stable internal identifier that never changes even when names and addresses do.
- Map every other system to it, storing the identifier alongside their own.
- Decide who may create a new record, and enforce it. Uncontrolled creation is where duplicates come from.
The stable identifier is the piece people skip. Matching on name and address works until a company rebrands or moves, at which point your history splits in two.
Duplicates need a decision, not just an algorithm
Matching is straightforward. Deciding what happens when two records disagree is not: which address survives, whose history is kept, who is told, and how it is reversed if wrong.
Agree those rules with the business before building anything, and keep the merge reversible.
Products are harder than customers
- Variants and pack sizes that are the same product to a customer and different to a warehouse
- Supplier codes that differ from your own
- Descriptions that change while the product does not
- Products replaced by successors that must inherit history
Start with customers, where the rules are clearer, and apply what you learn to products afterwards.
Enforce at the point of creation
The cheapest duplicate is the one never created. A creation flow that searches for existing matches before allowing a new record prevents most of the problem permanently.
It also makes the initial clean-up worth doing, because it will not simply regrow within a year.
Keep it proportionate
Full master data management is an enterprise discipline with tooling and governance. For a smaller business, the four steps above plus a monthly duplicate report is enough and is sustainable.
Frequently asked questions
Which system should own the customer record?
How do we clean up existing duplicates?
What does this cost?
Do we need a dedicated MDM tool?
Same customer in three systems, three different ways?
Tell us which systems hold customer records. We will suggest the owner, the identifier and how to stop duplicates being created.