I have a form where InventSum table is being used as one of the data sources. I need to remove the lines from the form where InventSum.physcialInventCalculated() is 0.
The method has the following calculation in it:
display public InventQtyPhysicalOnhand physicalInventCalculated()
{
return this.PostedQty + this.Received - this.Deducted + this.Registered - this.Picked;
}
So in other words if the above-mentioned calculation equals 0 then that line of InventSum should not be displayed in the form.
Is there any way to achieve this functionality through form code?