將utcDateTime值轉換爲日期類型的最佳方式是什麼,以便我可以對其使用全局日期時間函數?Axapta:將utcDateTime轉換爲日期
int timeDiff;
date _now = systemdateget();
;
select firstOnly myUTCDateTime from _myTable
timeDiff = Global::yearDiff(_now, _myTable.myUTCDateTime);
info(strfmt('%1', timeDiff);
感謝
感謝您的幫助! – Brad