Hello,
I'm having an issue with my Display Method. here it is:
Display InventQty FullQty()
{
InventSumDateTrans inventSumDateTrans;
Select PhysicalQty From InventSumDateTrans
Where InventSumDateTrans.ItemId == InventSum.ItemId;
Return InventSumDateTrans.PhysicalQty;
}
It doesn't show any error message, but when I print the Report, that particular field is empty. I don't understand why because this field is taken from a table that has informations in it. There is a report that displays this particular field from the same table without any trouble (Yet it didn't used a display method, it uses the Data Source). My Display Method looks alright and I don't understand what's going on.
Can someone help me?