Hi,
I am storing online entity data in collection for offline use using SaveData and using it by using LoadData function. When I use any Boolean filter it gives me 0 records, but for other filters like status (Option Set), Lookup it is working as expected. Same filter works on same collection when I am online or online till first screen as on start online data is getting collected in collection. Also checked following thing:
1. Row counts for offline data is matching
2. Changing filter syntax like using = true, =Boolean(1) etc.
//Saving data on app start.
ClearCollect(
colAllMyItems,
My Items'
);
SaveData(colAllMyItems, /colAllMyItems/ );
//Loading data while offline
LoadData(colAllMyItems, /colAllMyItems/, true);
//Filtering Collection offline
ClearCollect(
colAllMyItems,
Filter(
colAllMyItems,
Contact.Contact = gblDeceased.Contact,
Returned = false,
'To be returned?'
)
);
Could anyone help me with this?