如何判断哪个模块调用了该程序
使用[Dynamics][AX]时有可以使用的系统功能吗 确定调用程序时用户处于哪个模块? 我想为员工执行不同的 X++ 查找代码, 对于 ProjJournalTable 表单,但这会 根据调用的模块是不同的员工列表 形式。希望这是清楚的! - 梅芙
When using [Dynamics] [AX] is there a system function that can be used
to determine which module the user was in when the program was called?
I want to execute different X++ lookup code for employee,
for the ProjJournalTable form, but this would
be a different employee-list depending on which module is calling
the form. Hope that's clear! - Maeve
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表单或报表的执行上下文中没有“模块”的概念。因此没有系统函数可以返回该值。
如何解决依赖于上下文的行为(该行为取决于调用者)?
查找表单中的常用方法是检查
element.args()
中的以下之一:element.args().dataset()
和/或element .args().record()
element.args().parmEnumType()
和element.args().parmEnum()
element.args().parm()
element.args().caller()
element.args().parmObject()
取一个例如,查看表单
LedgerAccountLookup
,您可以通过在名为“init”的表单方法中搜索“args”来找到更多内容。There is no concept of "module" in the execution context of a form or report. Therefore there is no system function to return that.
How to get around context dependant behaviour, where the behaviour depends on the caller?
The usual method in say a lookup form is to inspect
element.args()
for one of:element.args().dataset()
and/orelement.args().record()
element.args().parmEnumType()
andelement.args().parmEnum()
element.args().parm()
element.args().caller()
element.args().parmObject()
Take a look on the form
LedgerAccountLookup
for example, you can find many more by searching for "args" in form methods named "init".