Date conversion

 static void dateValues(Args _args)

{
    TransDate           Tovalue, fromValue;
    Day                 dayValue;
    Months              month;
    str                 monthValue, yearvalue;

    month = mthOfYr(systemDateGet());
    monthValue = mthName(month);
    yearvalue = int2str(year(systemDateGet()));
    //info(strFmt("%1",Tovalue));
    //info(strFmt("%1",dayValue));
    info(strFmt("%1",yearvalue));

}

Comments