使用 Azure 数据工厂下沉到动态通用数据模型。
资源:
Col1: CustomerName
Col2: CustomerGroup
目的地 - CDM
Col1: CustomerName
Col2: CustomerGroup (this is Lookup Column in Dynamics)
在 ADF 中映射失败时:
Src.CustomerName -----------> Dst.CustomerName
Src.CustomerGroup ----------> Dst.CustomerGroup
遵循文档@ https://docs.microsoft.com/en-gb/azure/data-factory/connector-dynamics-crm-office-365#writing-data-to-a-lookup-field并将映射更新为以下:
Src.CustomerName -----------> Dst.CustomerName
Src.CustomerGroup ----------> Dst.CustomerGroup**@EntityReference**
这有效,但没有用值填充列Dst.CustomerGroup
任何线索..