Hello everyone,
i have this problem that i can't solve, so i hope you can help me.
Warehouse management > Load planning workbench
Line Details Table

I have this code ( in a button) that filters the data from the Picture in the Left, that removes the data with X (filters InventTrans.StatusIssue == 4)
everything is working and is filtered, but there's one problem that i noticed,
the Dimensions from InventDim (BatchNumber, Size, Color, Style, Configuration)
is not refreshing based on the filtered data, (see the 2 pictures, the Batch number did not move, but the item number moved.
I tried ds.refresh, executequery, but i can't seem to make it work,
this is my button click (WORKING)
while select * from WHSLoadLine
join inventTransOrigin
where WHSLoadLine.InventTransID == inventTransOrigin.InventTransId
join inventTrans
where inventTransOrigin.RecId == inventTrans.InventTransOrigin
&& inventTrans.StatusIssue == 4
&& inventTrans.inventDimId == WHSLoadLine.InventDimId
&& WHSLoadLine.LoadId == WHSLoadTable.LoadId