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.
假设我想在 NAV 2016 中使用 C/AL 编写一个简单的加法程序。如何动态要求用户输入两个数字?
在 Microsoft Dynamics AX 中,我们为此使用“对话”类。
我需要一些代码参考或描述来处理这样的过程。
在Dynamics NAV中没有类似Dynamics AX 对话框类的东西。
在这种情况下,您需要创建一个包含您的字段的页面,以便用户完成信息。然后在其他页面调用这个新页面打开它,用户可以完成de info或添加MenuSuite访问。
例子:
页 88000 计算器
变量
动作和动作代码
页面运行
然后你可以为这个页面创建一个menuSuite或者在其他页面写这个代码来打开它
PAGE.RUNMODAL(88000);
您可以使用
GetValues
为了更好地帮助您,请描述您偶然发现的要求。