AX / D365FO – Add minutes to a DateTime field

This simple job shows how to add 5 minutes to the system UTCDateTime

static void AddMinutes(Args _args)
{
    utcDateTime dt;
    dt = DateTimeUtil::getSystemDateTime();
    info(strFmt('Before : %1', dt));
    
    dt = DateTimeUtil::addMinutes(dt, 5);
    info(strFmt('Before : %1', dt));
}

This is the result

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s