Hi.
I have a app that patch to a dataverse and to a collection. After the patching, I have a code that are filtering a pickinglist. It works with if a take the data from the dataverse but not from the collection. Why?
The colPickedParts is the collection and it don´t work, but if I put in the Dataverse insted, it works fine.
ClearCollect(
colPicked1;
Filter(
colPickedParts;
PopID = gblpopid1 && Plocklåda = gblBox1
)
);;
ClearCollect(
SListTask1;
Filter(
colPickTot1;
PartNumber = PartNumber &&
Not(PartNumber in Filter(colPicked1; Artikel = PartNumber).Artikel)
)
);;