I've been busy creating a bunch of reports that edit different columns on a main report. What's the best way to organize these edit reports? They're not anything the user will ever need to see, but if I take away permissions, then the main report won't run.
I tried just creating stored procedures and calling those, but it errored out saying that they needed to be listed as reports.
I noticed that on the mydbr demo website, the editable report sample doesn't show any of the small edit reports but instead calls them by using:
CALL sp_DBR_doc_Source('sp_DBR_editable,sp_DBR_ft_editable_more,sp_DBR_budget_edit,sp_DBR_budget_edit_comment,sp_DBR_budget_accept');
Is there a way I can emulate that? I guess I don't quite understand how to do it.
Thanks,
-nth-