Hi
I'm trying to add inventory field for Inventory availability report (705)
I get it working on classic side but on RDLC it wont calculate the field.
I have calcfields on the section side though, do I have to do add something on the rdlc side too so it calculates there?
K.S.
0
Answers
It works as expected... More or Less...
Item, Body (6) - OnPreSection()
You've to move your code under the correct DataItem trigger.
It works as expected... More or Less...
Item - OnPreDataItem()
IF ISSERVICETIER THEN
GetCurrentKey := Item.CURRENTKEY;
Item.CALCFIELDS(Item.Inventory); // <
Have you already tried the same code in Item - OnAfterGetRecord()?
It works as expected... More or Less...
Aa, that sorted it. now it works
Cheers guys
Chn