25 Nov 2014

LIKE in AX 2012

Like operator in x++ as below:


static void JobLike()

    str name;
    ;
    name="suresh";

    if(name like "sur*")
    {
       info("Name is suresh ");
    }
    else
        info("Name is not suresh");
}

10 Nov 2014

First date of month + AX

If you want to get first date of month

TransDate AnyDate=systemDateget();
TransDate FirstdateOfMth; ;
FirstdateOfMth=mkdate(1,mthofyr(AnyDate),year(AnyDate));
info(date2str(FirstdateOfMth,123,2,2,2,2,4));

This is second method to get first day of month. DateStartMth is standard global method.

TransDate AnyDate=today();
TransDate FirstdateOfMth; ;
FirstdateOfMth=DateStartMth(AnyDate);
info(date2str(FirstdateOfMth,123,2,2,2,2,4));

Systemdateget and today method will give you current system date.

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...