I wish to run (for example) the Customer Summary Aging (report 105) but it requires onPreReport filter such as PeriodStartDate - how do we pass additional filters for ShowReport Actions?
it is possible to pass values to the report (action -> Connection between WP Requests). There you can set default values and other values from the current web part request.
In Navision you have always to do some programming for the report to be run. This is the place where you can apply the passed values or set your own values.
yes you can filter on existing table fields - but cannot pass a variable in the report ie Request Form fields ie startdate or periodlength or a boolean ie Open Items etc - will need to put some code in the onprereport to force these variables.
Comments
it is possible to pass values to the report (action -> Connection between WP Requests). There you can set default values and other values from the current web part request.
In Navision you have always to do some programming for the report to be run. This is the place where you can apply the passed values or set your own values.
HTH,
Rainer
yes you can filter on existing table fields - but cannot pass a variable in the report ie Request Form fields ie startdate or periodlength or a boolean ie Open Items etc - will need to put some code in the onprereport to force these variables.
Thanks again, Matthias.