如何判断哪个模块调用了该程序

发布于 2024-11-01 05:49:42 字数 136 浏览 1 评论 0原文

使用[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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲凉≈ 2024-11-08 05:49:42

表单或报表的执行上下文中没有“模块”的概念。因此没有系统函数可以返回该值。

如何解决依赖于上下文的行为(该行为取决于调用者)?

查找表单中的常用方法是检查 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/or element.args().record()
  • element.args().parmEnumType() and element.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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文