当数据源通过 D365 F&O 中的外连接链接连接时,子数据源中的外键字段未填充
我创建了一个简单的表 SaleslineEx。它与 SalesLine 表具有外键关系。
当尝试在销售行中创建新记录时,SalesLineEx 销售行字段不会填充销售行记录。
我尝试了博客中的不同解决方案,但它们不起作用。谁能给我一个解决方案吗?
I have created a simple table SaleslineEx. which has a foreign key relationship with the SalesLine table.
When trying to create a new record in the sales line, the SalesLineEx sales line field does not populate with the sales line record.
I have tried different solutions from the blogs but they are not working. Can anyone give me a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够通过使用
SysExtensionSerializerExtensionMap
创建扩展表和SalesLine
之间的映射来解决此问题。添加映射后,为
SalesLine
表创建一个扩展类,并为insert
方法创建一个 COC 方法。在下一次调用销售线insert
方法后调用扩展表的插入操作,使用扩展表缓冲区中的SysExtensionSerializerExtensionMap
类,如下所示。I was able to resolve this issue by creating the mapping between my extension table and the
SalesLine
usingSysExtensionSerializerExtensionMap
.After adding the mappings create an Extension class for the
SalesLine
table, and create a COC method for theinsert
method. Call the insert operation of the Extension table after the next call of the sales lineinsert
method, usingSysExtensionSerializerExtensionMap
class from the extension table buffer is shown below.