X++ select 对相关表的语句

X++ select statement on related tabled

我需要帮助才能从产品表中获取与销售线相关的数据。 我的任务是获取与当前 salesid 相关的所有 Prodid。相关字段 prodtable.inventrefid == salesline.salesid。但是加入的值有点不同,所以我没有得到任何数据。 Inventrefid 有例如。 ZPR0000011,销售编号为 ZS00000011。

salesline tablebuffer = this.cursor();  
while select ProdId, CollectRefProdId from prodtable where prodtable.inventrefid == 'ZPR00000165'

我立即看到的主要问题是:

prodtable.inventrefid == 'ZPR00000165'

inventRefId 将是您的 SalesId,这是 ZS00000011 而不是 您的 ProdId.

下面是一个更正确的查询示例。您可以通过将两个选择连接在一起来优化它,以便将所有相关的 ProdTable 记录获取到 all SalesLine 给定 SalesId 的记录,您可以还要在查询中指定字段,这样您就不会返回整个缓冲区。

SalesLine           salesLine;
ProdTable           prodTable;

/*
This just chooses the first sales line with that salesid. You would need to join these together
if you wanted to do all sales lines in one query.
*/
select firstOnly salesLine
    where salesLine.SalesStatus                 == SalesStatus::Backorder       &&
          salesLine.SalesId                     == 'ZS00000011';

while select prodTable
    where prodTable.InventRefTransId            == salesLine.InventTransId      &&
          prodTable.InventRefId                 == salesLine.SalesId            &&
          prodTable.InventRefType               == InventRefType::Sales
{
    info(strFmt("Found related ProdTable record %1 - %2 (%3)", prodTable.ProdId, prodTable.CollectRefProdId, prodTable.RecId));
}