How to get request page filter in navision report.



For getting the value whatever selected by end user on request page of report we use "GETFILTER" function.

Syntax : <Table Name>.GETFILTER(<Field Name>);
Example:

MESSAGE(FORMAT("Bank Account Ledger Entry".GETFILTER("Posting Date")));
it will shows posting date for 'Bank Account Ledger Entry' table selected by user.

Comments

Popular posts from this blog

How to get column value from the selected row in data grid in wpf c#.net