Deduct days from date time

X++ to deduct days from date time:

 
        utcdatetime dateTime;
        date        datePart;
        TimeOfDay   timePart;
        int         monthPart;
 

        // option 1
        dateTime = DateTimeUtil::getSystemDateTime();
        dateTime = DateTimeUtil::addDays(dateTime , -2);
        info(strFmt("New date time is %1", dateTime));
 
        // option 2
        dateTime = DateTimeUtil::getSystemDateTime();
        datePart = DateTimeUtil::date(dateTime) - 2;
        timePart = DateTimeUtil::time(dateTime);
        dateTime = DateTimeUtil::newDateTime(datePart, timePart);
        info(strFmt("New date time is %1", dateTime));



 

Search

About

DaxOnline.org is free platform that allows you to quickly store and reuse snippets, notes, articles related to Dynamics AX.

Authors are allowed to set their own AdSense units.
Join us.

Blog Tags