Axapta:Group By 子句后出现 "The record has never been selected" 错误

Axapta: "The record has never been selected" error after Group By clause

我是 Axe 2009 的新手。 我想在加入另一个 table B 后更新 table A 中的记录字段,我想在其 ID 上应用分组依据。

我尝试 运行 以下代码,但它抛出错误“无法编辑 tableA 中的记录。从未选择该记录”:

where select forupdate tableA group by tabAid, Dimension[5]
join tableB group by tabBid, Dimension[5]
where tableA.tabAid == tableB.tabBid && tableB.Dimension[5] != "" && tableA.Dimension[5]
{
     if(tableA.Dimension[5] != lines.Dimension[5])
     {
          ttsbegin;
          tableA.Dimension[5] = tableB.Dimension[5];
          tableA.update()
          ttscommit;
     }
}

我认为这应该是由于在 tableA 上使用了 Group By 子句引起的,但是如果我删除它,在 if 检查中,tableA.Dimension[5] 是空的。

请有人帮助我。 谢谢。

是的,问题出在 Group by 子句上。尝试这样的事情。

ttsbegin;
while select forupdate tableA where tableA.Dimension[5] != ""
join tableB where tableB.tabBid == tableA.tabAid && tableB.Dimension[5] != ""
{
     if(tableA.Dimension[5] != tableB.Dimension[5])
     {          
          tableA.Dimension[5] = tableB.Dimension[5];
          tableA.update()          
     }
}
ttscommit;

*我的代码没有编译器,可能需要一些调整。