ailisee
12th March 2012, 11:48
I wish to customize a report which's do extra filtering base on the data set pass from the print session, but I don't allowed to modify the session script as the licensing issue.
Can we do the extra filtering of the data set sent from print session at the report script? How?
frank holland
12th March 2012, 12:43
Hi,
The only way that I know is to suppress the rows that you do not want by adding a condition to the detail row(s) of your report, e.g. by setting lattr.print = false in certain cases.
Regards,
Frank
ailisee
13th March 2012, 04:39
Thanks for your guideline.
Instead of just hiding the detail row, is there any others way?
Hitesh Shah
13th March 2012, 18:23
Hiding or not printing is as good as filtering . So please explain why / how that's not useful in filtering. May be we are missing something.
Further u can use AFS wrapper session to call standard session report one or many times in the background and use the prints values in standard report output in your custom report in custom wrapper session.
Unless there is support from standard session (like in case on generate / release outbound data in B4) , u can not combine multiple outputs of single report into single report output .
preethi
19th March 2012, 14:19
I wish to customize a report which's do extra filtering base on the data set pass from the print session, but I don't allowed to modify the session script as the licensing issue.
Can we do the extra filtering of the data set sent from print session at the report script? How?
Hi,
You can also try by entering the required condition in the report layout
baanconsultant
2nd July 2012, 11:50
You can suppress rows sent from the program script to the report script (or even add extra rows) by overriding the standard function that writes the data to the temporary file before sorting. This way, you can add data, suppress rows, sort on fields that are not sent from the program script etc, without having to write code on every detail. Search for r.write.seq.file on baanboard, you can find some excellent examples.
baanconsultant
2nd July 2012, 11:53
Here's the link:
http://www.baanboard.com/baanboard/showpost.php?p=161627&postcount=32