当数据源通过 D365 F&O 中的外连接链接连接时,子数据源中的外键字段未填充

发布于 2025-01-13 08:02:22 字数 573 浏览 0 评论 0原文

我创建了一个简单的表 SaleslineEx。它与 SalesLine 表具有外键关系。

SalesLineEx FK关系

带外部连接的 SalesLineEx 数据源

当尝试在销售行中创建新记录时,SalesLineEx 销售行字段不会填充销售行记录。

我尝试了博客中的不同解决方案,但它们不起作用。谁能给我一个解决方案吗?

I have created a simple table SaleslineEx. which has a foreign key relationship with the SalesLine table.

SalesLineEx FK relation

SalesLineEx datsource with outer join

When trying to create a new record in the sales line, the SalesLineEx sales line field does not populate with the sales line record.

Empty value in salesline field

I have tried different solutions from the blogs but they are not working. Can anyone give me a solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

路弥 2025-01-20 08:02:22

我能够通过使用 SysExtensionSerializerExtensionMap 创建扩展表和 SalesLine 之间的映射来解决此问题。
映射节点

在此处输入图像描述

添加映射后,为 SalesLine 表创建一个扩展类,并为 insert 方法创建一个 COC 方法。在下一次调用销售线 insert 方法后调用扩展表的插入操作,使用扩展表缓冲区中的 SysExtensionSerializerExtensionMap 类,如下所示。

next insert(_dropInvent, _findMarkup, _childBuffer, _skipCreditLimitCheck, _skipWHSProcesses, _interCompanyInventTransId);

    if(FormDataUtil::isFormDataSource(this))
    {
        SalesLineExt salesLineExt = this.SysExtensionSerializerMap::getExtensionTable(tableNum(SalesLineExt));
        salesLineExt.SysExtensionSerializerExtensionMap::insertAfterBaseTable(this);
    }

SalesLineExtesnionCalss

COCForInsertMethod

I was able to resolve this issue by creating the mapping between my extension table and the SalesLineusing SysExtensionSerializerExtensionMap.
Mapping node

enter image description here

After adding the mappings create an Extension class for the SalesLine table, and create a COC method for the insert method. Call the insert operation of the Extension table after the next call of the sales line insert method, using SysExtensionSerializerExtensionMap class from the extension table buffer is shown below.

next insert(_dropInvent, _findMarkup, _childBuffer, _skipCreditLimitCheck, _skipWHSProcesses, _interCompanyInventTransId);

    if(FormDataUtil::isFormDataSource(this))
    {
        SalesLineExt salesLineExt = this.SysExtensionSerializerMap::getExtensionTable(tableNum(SalesLineExt));
        salesLineExt.SysExtensionSerializerExtensionMap::insertAfterBaseTable(this);
    }

SalesLineExtesnionCalss

COCForInsertMethod

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文