Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Finance | Project Operations, Human Resources, ...
Answered

How to have millisecond from current time ?

(0) ShareShare
ReportReport
Posted on by 312
Hi,
 
When creating log table, I want to record what time my method being called, up to millisecond.
At first I'm using this :
         System.DateTime localDateTime = DateTimeUtil::applyTimeZoneOffset(DateTimeUtil::getSystemDateTime(), DateTimeUtil::getUserPreferredTimeZone());
         logTable.ID = localDateTime.ToString('yyyyMMdd_HHmmss.fff');
 
This is no working, so change to this:
         System.DateTime localDateTime = DateTimeUtil::applyTimeZoneOffset(DateTimeUtil::getSystemDateTime(), DateTimeUtil::getUserPreferredTimeZone());
         logTable.ID = strFmt(/%1%2/,localDateTime.ToString('yyyyMMdd_HHmmss'), localDateTime.Millisecond);        
 
Also only give me 0 for he millisecond.
 
Some thread give idea to use WinAPI::GetTickcount(), https://community.dynamics.com/forums/thread/details/?threadid=a7ca3807-2760-4b5e-bab8-7dce477659c6, but I think it is not suitable since it is normally for calculate process time between two tickCount.
 
Thanks
  • Martin Dráb Profile Picture
    234,599 Most Valuable Professional on at
    How to have millisecond from current time ?
    Teevo, the problem likely is that you're converting the System.DataTime value to utcDateTime (by using DateTimeUtil) and because utcDateTime doesn't support milliseconds, the information gets lost there.
  • Teevo Profile Picture
    312 on at
    How to have millisecond from current time ?
    Yes,
     
    I ended up using that instead.
     
    Many thanks.
  • Verified answer
    Mohamed Amine Mahmoudi Profile Picture
    24,296 Super User 2025 Season 1 on at
    How to have millisecond from current time ?
    Hi @Teevo,
     
    Try this (it worked for me) 
    System.DateTimeOffset dt = System.DateTimeOffset::Now;
    int ms = dt.Millisecond;
    Best regards,
    Mohamed Amine MAHMOUDI
  • Teevo Profile Picture
    312 on at
    How to have millisecond from current time ?
    Hi Martin,
     
    When testing, I always get zero if using System.DateTime::Now(). 
    I'm wondering whether I'm doing correctly or not ? 
    Here is my test :
     
    Thanks.
  • Verified answer
    Martin Dráb Profile Picture
    234,599 Most Valuable Professional on at
    How to have millisecond from current time ?
    AX/F&O normally doesn't work with miliseconds, therefore I don't expect that getSystemDateTime() gives you this information. System.DateTime::Now should.
  • Suggested answer
    Mohamed Amine Mahmoudi Profile Picture
    24,296 Super User 2025 Season 1 on at
    How to have millisecond from current time ?
    Hi @Teevo,
     
    if you want to get milliseconds you can use DateTimeOffset
    System.DateTimeOffset dt = System.DateTimeOffset::Now;
    int ms = dt.Millisecond;
    Best regards,
    Mohamed Amine MAHMOUDI
  • Teevo Profile Picture
    312 on at
    How to have millisecond from current time ?
    Hi Layan,
     
    Meaning like the first statement ? 
              System.DateTime localDateTime = DateTimeUtil::applyTimeZoneOffset(DateTimeUtil::getSystemDateTime(), DateTimeUtil::getUserPreferredTimeZone());
             logTable.ID = localDateTime.ToString('yyyyMMdd_HHmmss.fff');
     
     
    it's not working. or I did it wrongly ?
     
     
  • Layan Jwei Profile Picture
    7,898 Super User 2025 Season 1 on at
    How to have millisecond from current time ?
    Hi Teevo,
     
    Did u try to use this directly?
    DateTimeUtil::getSystemDateTime()
     
    Thanks,
    Layan Jweihan

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Ramesh Kumar – Community Spotlight

We are honored to recognize Ramesh Kumar as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Finance | Project Operations, Human Resources, AX, GP, SL

#1
Abhilash Warrier Profile Picture

Abhilash Warrier 565

#2
Martin Dráb Profile Picture

Martin Dráb 536 Most Valuable Professional

#3
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 402 Super User 2025 Season 1

Product updates

Dynamics 365 release plans