DeliveryAX字段中的RelationShip在Dynamics AX中的SalesTable中

时间:2016-09-06 09:20:13

标签: dynamics-ax-2012

**我需要从SalesTable中检索DeliveryName字段。它们之间的关系是什么?如何从SalesTable中检索DeliveryName **

2 个答案:

答案 0 :(得分:2)

您想要的评论从DeliveryName获得SalesTable,但您需要CustInvoiceJourSalesTable之间的关系。

关系是CustInvoiceJour.SalesId == SalesTable.SalesId

<强>代码:

Select DeliveryName from SalesTable where SalesTable.SalesId == CustInvoiceJour.SalesId;

答案 1 :(得分:0)

DeliveryNameSalesTable上的字段 - 没有特殊关系,因为这是纯文本字段。