动态斧头 2009 登陆页面

发布于 2024-11-24 19:11:46 字数 90 浏览 0 评论 0原文

我想在某些用户打开 Dynamics ax 2009 时将其重定向到 aot 中的特定表单。最好的方法是什么?今天,他们直接进入了角色中心页面。

谢谢

I would like to redirect some of my users to a specific form in aot when they open dynamics ax 2009. What is the best way to that? Today, they directly go to the role center page.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

悲念泪 2024-12-01 19:11:47

您在这里问两个问题:如何从代码中打开特定表单,以及如何在打开 AX 时自动完成某些操作。

我目前无法访问 AX,但以下代码应该可以帮助您解决第一个问题。

FormRun formRun;
;

formRun = new MenuFunction(menuitemdisplaystr(___FormMenuItemName___), MenuItemType::Display).create(new Args(this));
formRun.init();
formRun.run();
formRun.detach();

至于第二个问题,您只需将代码添加到 ApplicationInfo 类的 StartupPost 方法中即可。

You're asking 2 questions here: how to open a specific form from the code, and how to get something done automatically when AX is opened.

I don't have an access to AX at this moment but the following code should help you with the first question.

FormRun formRun;
;

formRun = new MenuFunction(menuitemdisplaystr(___FormMenuItemName___), MenuItemType::Display).create(new Args(this));
formRun.init();
formRun.run();
formRun.detach();

As to the second question, you just need to add your code to method StartupPost of either Application or Info class.

扮仙女 2024-12-01 19:11:47

首先,您必须为表单创建一个菜单项。

然后在Info类中,通过调用菜单项来修改startupPost()方法:

new MenuFunction(menuitemDisplayStr(YourMenuItem), MenuItemType::Display).run();

Firstly you have to create a menu item for the form.

Then in the Info class, modify the startupPost() method by calling the menu item:

new MenuFunction(menuitemDisplayStr(YourMenuItem), MenuItemType::Display).run();

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