Announcements
Hello All,
I am having a field DMFTransfer status which is an ENUM with not started, Completed, Error as its values. I want to filter the list page while opening with all the records not eqaul to completed.
Please guide me here to achieve the same.
Thanks
Thanks it worked
If you haven't specifically selected hidden, you should be able to see it with ctrl + G.
Hello Ergun,
I tried the following code,
public void initializeQuery(Query _query) { QueryBuildRange transferStatusRange; super(_query); transferStatusRange = _query.dataSourceTable(tableNum(CGIPickUpdateStaging)).addRange(fieldNum(CGIPickUpdateStaging, TransferStatus)); transferStatusRange.value(SysQuery::valueNot(DMFTransferStatus::Completed)); }
But the form is filtered as expected but I couldnt able to see the completed record even if I wanted to. Hope you can understand.
Thanks
You can use initializeQuery
André Arnaud de Cal...
293,304
Super User 2025 Season 1
Martin Dráb
232,149
Most Valuable Professional
nmaenpaa
101,156
Moderator