Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Dynamics AX 2009 中,如何以编程方式更改表单中的不同记录?
我的表单包含一个树视图和一组绑定数据字段。单击树中的记录时(树中每个项目的数据值是我想在表单中编辑的项目的 RecId)我想将表单更改为该记录。
我一直在使用 sysSetupForm 作为使用树的示例,但是我无法隔离在其代码中发生更改记录的调用的位置。
谢谢
一些例子:
some_table table; ; table = some_table:find(recid); table_ds.findRecord(table); // it's a form datasource method