
static void createdDateTime(Args _args)
{
PurchTable purchTable;
TransDate getDate;
int days,months,years;
select firstonly purchTable;
getDate = DateTimeUtil::date(purchTable.createdDateTime);
days = dayofmth(getDate);
months = mthofyr(getDate);
years = year(getDate);
}
Leave a comment