Hi all,
i have created a report using Dimension Value and Sales Invoice Line Data Items.
Here i want to print the date selected on request form to the header section of the Dimension Value data item. for this i have written the code under OnPreSection trigger of Dimension value's header section, the code is:
DateFilter :-- Text (30)
DateFilter:="Sales Invoice Line".GETFILTER("Sales Invoice Line"."Posting Date");
and i have assogned this DateFilter variable to a textbox under hedaer section of Dimension value dataitem,
but its not working, its showing nothing.
can anybody help me.
Markandey Pandey
0
Comments
the OnPreDataItem of the dataitem was already called and you are "within" the dataitem (on same or nested level) - it means you are inside the scope of the dataitem
or
you are in OnPreReport trigger. In this trigger, all filters of all dataitems are available (but cannot be changed, because they will be reset in OnPreDataItem trigger).
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
i got ur point.