ジョブ/コードでベンダー フォームを開きたいとしましょう。特定のベンダーのベンダー フォームを開くために後で使用する非常に単純な select ステートメントをコーディングしました。どうすればこれを達成できますか?
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);
仕入先フォームは開いていますが、データが設定されていません。どんな助けでも大歓迎です。