Dynamics AX 中获取系统日期和当前日期的函数是什么?

发布于 2024-10-06 15:13:46 字数 59 浏览 2 评论 0原文

在 Microsoft Dynamics AX 中使用 X++ 获取系统日期和当前日期的函数调用是什么?

What are the function calls to get the System Date and Current Date using X++ in Microsoft Dynamics AX?

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

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

发布评论

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

评论(4

剪不断理还乱 2024-10-13 15:13:46

使用类 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.

微凉徒眸意 2024-10-13 15:13:46

在动力学斧头< 2009 年

当前日期:

Today()

只有在需要实际机器日期的情况下才应使用 Today 函数提供的系统日期。

系统日期:

SystemDateGet()

大多数应用程序逻辑应该使用系统函数systemDateGet,它保存系统的逻辑日期。

In Dynamics Ax < 2009

Current Date:

Today()

The system date provided by the today function should be used only where the actual machine date is needed.

System Date:

SystemDateGet()

Most application logic should use the system function systemDateGet, which holds the logic date of the system.

狼性发作 2024-10-13 15:13:46

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).

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