Thursday 27 March 2014

Date functions in AX 2012

static void date_Functions(Args _args)
{
    Transdate    d;
    str s;
    ;

    d = today();
  //  s =date2str(d,1,4,1,4,1,4,214);

    info(strfmt("Date - %1",d));

    //Gets the month for the given date...
    info(strfmt("Month - %1",mthofYr(d)));

    //Gets the month name from the given date...
    info(strfmt("Month Name - %1",mthname(mthofYr(d))));

    //Gets the day for the given date...
    info(strfmt("Day - %1",dayOfMth(d)));

    //Gets the day name from the given date...
    info(strfmt("Day Name - %1",dayname(dayOfwk(d))));
   // info(strfmt("Day Name - %1",dayName(s)));
    //Gets the year for the given date...
    info(strfmt("Year - %1",year(d)));

    //Gets the current weekday number from the date...
    info(strfmt("Weekday number - %1",dayOfwk(d)));

    //Gets the day of the year from the given date...
    info(strfmt("Day of year - %1",dayOfyr(d)));

    //Gets the week of the year from the given date...
    info(strfmt("Week of the year - %1",wkofyr(d)));
}


No comments:

Post a Comment