T O P I C R E V I E W |
WildCard |
Posted - 06/12/2015 : 05:56:28 Hi,
do I have to be Admin to create calculated measures in an OLAP report and set the security to public? Or is there a method to give that permission to normal users, too? |
2 L A T E S T R E P L I E S (Newest First) |
WildCard |
Posted - 06/15/2015 : 05:21:06 Thank you very much, the workaround actually works. :) |
admin |
Posted - 06/12/2015 : 10:10:16 Starting with build 189, only Admin or Writer user can save calculations to public.
Starting with new build 190, there will be a new application setting under Admin > Settings > Security > “Everyone can save calculated members to public”.
One workaround is to modify "C:\inetpub\wwwroot\ReportPortal\olap\CalculatedField.aspx", Line 85. Change: <%If Session("IsAdmin") = True OrElse Session("IsWriter") = True Then%>
To:
<%If True Or Session("IsAdmin") = True OrElse Session("IsWriter") = True Then%>
|
|
|