O25DE2: A Little Gem I found - Visualizing Table Relationships Made Easy
<for my reference only: O25 = October 2025; DE2 = with Data Entity Tag;>
While scrolling through LinkedIn, I stumbled upon something that made me happy and I think it will make your life easier too if you work with Dynamics 365 Finance & Operations.
We all know the data model in D365FO can feel like a maze sometimes. Tables, relationships, inheritance - it’s powerful, but not always easy to visualize. That’s why these two tools shared by a fellow community member may make it a bit more easy for us.
1. D365 F&O Table Relation Schema
https://daxonline.org/d365/entity-relation-schema.html
This tool generates a DBML schema for the area you select and lets you instantly visualize the data model. Perfect for:
- Getting a clear overview of how tables connect.
- Documenting your work for future reference.
- Sharing diagrams with your team (you can render DBML using https://dbdiagram.io).
When I quickly tested it with CustTable
and related tables like CustParameters
, CustSettlement
, and CustTrans
, the output looked like below. Just for your info,
CustParameters
is from AR module setup.CustSettlement
shows how transactions link during settlement.CustTrans
gives posted transaction details.
Seeing these relationships in a diagram instead of just SQL joins - might be helpful.
2. D365 F&O Table Relation Finder
https://daxonline.org/d365/table-relation-finder.html
Ever wondered “How does this table connect to that one?” Use this tool to get answers for questions like that. It finds relationships between tables - even across inheritance and linking tables.
Example: I checked CustTable
vs SalesOrderHeaderStaging
and got 51 relationship paths! From direct links like InvoiceCustomer → CustTable
to deeper chains involving Currency
, InventLocation
, and more. This first input might be helpful for you as a first step before you delve deeper.
Snapshot from my example attempt:
Why I’m Sharing This
Because a quick look at these tools made me think: “Wow, this could save few hours of digging through AOT or writing queries.” And if you’re documenting, troubleshooting, or just trying to understand the F&O data model better, maybe it is worth to give them a try.
There are other tools, which I haven't tried myself yet. But better get going - because not sure until when it will be possible to use them for free :)
Comments