1
我是AX開發新手。我在AX中查找to_char等價物,因此我只能根據月份和年份選擇記錄。我只想選擇一個特定月份的所有記錄,而不考慮日期。如何根據月份或年份選擇斧頭中的記錄?
我是AX開發新手。我在AX中查找to_char等價物,因此我只能根據月份和年份選擇記錄。我只想選擇一個特定月份的所有記錄,而不考慮日期。如何根據月份或年份選擇斧頭中的記錄?
您將不得不使用日期範圍。
date d = today();
date d1 = startMth(d);
date d2 = endMth(d);
while select ledgerTrans
where ledgerTrans.TrandDate >= d1 &&
ledgerTrasn.TransDate <= d2
{
...
}