1

假设我想在工作/代码中打开供应商表单。我编写了一个非常简单的选择语句,稍后我想用它来打开该特定供应商的供应商表单。我怎样才能做到这一点?

VendTable vend;
MenuFunction menuFunction;
Args args  = new Args();

select vend
    where vend.AccountNum like "*0009*";
info(vend.AccountNum); - shows an AccountNum

args.record(VendTable::find(vend.AccountNum));
menuFunction = new MenuFunction(menuitemdisplaystr(VendTable), MenuItemType::Display);
menuFunction.run(args);

供应商表格打开但未设置数据。任何帮助表示赞赏。

4

1 回答 1

4

如果info(vend.AccountNum);实际上向屏幕输出了一个有效的供应商,那么您的代码没有任何问题并且应该可以工作。如果它不起作用,我猜你有某种修改或损坏的供应商数据。我使用 AX 2009 进行了测试。我测试了您的代码和我自己的版本。这是我测试的工作代码:

Args        args = new Args();
VendTable   vendTable;
;

select firstonly vendTable;

if (!vendTable)
    error("Missing vendor");

args.record(vendTable);

new MenuFunction(menuitemdisplaystr(VendTable), MenuItemType::Display).run(args);
于 2013-10-29T18:47:22.487 回答