I have a series of reports, some tabular and some are pageview. The users like the client side ability to change the sort order of the tabular reports. Of course I have now been requested to allow them to resort the pageview reports.
The page view reports are generated with static SQL including an
order byclause for the most likely desired sort order.
I'd like to offer a button (or something) to trigger a pop-up allowing the users to change the sort order. Then I can receive the new sort parameters and (by converting to dynamic SQL) re-execute the report using the new
order byclause.
Does this seem reasonable?
Is my assumption that mydbr.sort does not work with pageview reports correct? The mydbr.sort function will offer no value?