动态斧头 2009 登陆页面
我想在某些用户打开 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在这里问两个问题:如何从代码中打开特定表单,以及如何在打开 AX 时自动完成某些操作。
我目前无法访问 AX,但以下代码应该可以帮助您解决第一个问题。
至于第二个问题,您只需将代码添加到
Application
或Info
类的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.
As to the second question, you just need to add your code to method
StartupPost
of eitherApplication
orInfo
class.首先,您必须为表单创建一个菜单项。
然后在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();