To show the filter on the report form which we are filtering from request page it was done so i think to share it with you, below is the process to do it.
For Item Report.
1. Create a global variable ItemFilter datatype of text.
2. Inculde the ItemFilter variable in the dataset.
Now add the code on OnPreReport Trigger.
ItemFilter := Item.GetFilters; // Where Item is the table of Item
Step 2: Layout
Now you can simply add the ItemFilter field on report body and save it.
After the above step you are able to display the filters on report form.
Thanks.
*This post is locked for comments