Dynamics AX 中获取系统日期和当前日期的函数是什么?
在 Microsoft Dynamics AX 中使用 X++ 获取系统日期和当前日期的函数调用是什么?
What are the function calls to get the System Date and Current Date using X++ in Microsoft Dynamics AX?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用类 DateTimeUtil 中的静态方法:
两者都返回 UTC 日期和时间,但会转换为本地时间显示。
请参阅最佳实践。
Use the static methods within class DateTimeUtil:
Both return UTC date and times, but will be converted to local time on display.
See Best Practice.
systemDateGet() 和 Today()
http://msdn.microsoft.com/en-我们/library/aa672952.aspx
systemDateGet() and Today()
http://msdn.microsoft.com/en-us/library/aa672952.aspx
在动力学斧头< 2009 年
当前日期:
系统日期:
In Dynamics Ax < 2009
Current Date:
System Date:
SystemDateGet() 是在显示方法中获取当前日期的命令。
Today() 方法,它可能返回不同的日期(它
返回机器日期,而不是 Dynamics AX 的日期)。
SystemDateGet() is the command to get current date in a display method.
today() method, which might return a different date (it
returns the machine date, not the date from Dynamics AX).