Running AX 2012 R3 CU9.
Having a bit of a problem with a computed column in a view. I'm trying to limit the data to purely data after X days ago (in this case 90 days). The obvious way I thought to do it, it doesn't seem to filter anything at all:
fieldStr(ABC_Usage_RawData, Qty),
tableStr(ABC_Usage_RawData),
fieldStr(ABC_Usage_RawData, ItemId),
SysComputedColumn::returnField(tableStr(ABC_Usage_FinalFigures), tableStr(InventTable), fieldStr(InventTable, ItemId)),
fieldStr(ABC_Usage_RawData, DatePhysical),
systemDateGet()-365
);
*This post is locked for comments