Skip to main content

Notifications

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
    232,982 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
    22,108 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
    232,982 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
    22,108 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,780 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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 294,233 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,982 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Product updates

Dynamics 365 release plans