An Azure service for ingesting, preparing, and transforming data at scale.
Hey OUADAH Djilali,
it looks like the reason you’re getting rows full of NULLs is that you’ve hooked up the wrong inline dataset type in your Mapping Data Flow. “Common Data Service” is the Dataverse/OData connector – it won’t actually read your CDM model.json + its CSV partitions in ADLS Gen2. To pull real values from a Power Platform-generated CDM folder you need to use the Common Data Model file format.
Here’s what I’d try:
- In your Data Flow, edit the Source transform and choose Inline dataset.
- For Type of inline dataset, pick File, then under Format select Common Data Model.
- If you don’t see “Common Data Model” in the drop-down, choose an ADLS Gen2 inline dataset and then set Format to Common Data Model.
- Point the linked service to your Data Lake Storage Gen2 account.
- Under Options de la source → Format des métadonnées, pick Model.json (or try Manifest if you have a manifest file).
- In Emplacement racine, browse exactly to the folder containing your model.json (not to a parent or child folder).
- Expand Référence d’entité and pick your entity (
crf19_registration_distributor). - Switch to the Projection tab and click Import Projection (or turn on “Infer drifted column types” if you need to tweak date/time formats).
- Go to Aperçu des données and you should now see actual values in the columns.
A few additional troubleshooting tips if you still get NULLs:
• Make sure the CSV partitions in your CDM folder all have the correct number of delimiters (N–1 commas for N columns).
• If your model.json partition URIs include unsupported characters (like @snapshot=…), remove that from both the file name and model.json.
• Confirm your ADF/Synapse managed identity or service principal has at least “Storage Blob Data Reader” on the container.
Give that a shot and let me know what you see!
References
- Common Data Model format in Azure Data Factory: https://docs.microsoft.com/azure/data-factory/format-common-data-model
- Source transformation in mapping data flow: https://docs.microsoft.com/azure/data-factory/data-flow-source
- Troubleshoot CDM “No output data” & corpus path errors: https://docs.microsoft.com/azure/data-factory/data-flow-troubleshoot-connector-format
Note: This content was drafted with the help of an AI system. Please verify the information before relying on it for decision-making.