bpanda
29th October 2015, 09:05
Hello,

We have a requirement to hide / restrict one field on the reports from showing it's value for some specific user.
Is there anything on std or tools to achieve such requirement without doing any customization?

Please give your comments.

Thanks & Regards
Biswajyoti Panda

bhushanchanda
29th October 2015, 09:58
Hi,

By no customization, do you mean, without even touching the layout/report/report script?

RameshS
29th October 2015, 10:26
Hi

You can do it in report conditions or in the report script, but that report needs to customized.

bpanda
30th October 2015, 07:59
No customization....

The requirement is like, let's say on report we have many fields.
Form those fields we need to hide the value of one specific field for specific users.
Means to restrict some specific users to see the value of that field on report.
If anything can be done like user and field level authorization or variable level authorization for reports to restrict user.

bdittmar
30th October 2015, 13:15
Hello,
without customization of the report, your're not able to get the goal ;-)

One way:

define a bool and do something like:

if logname$ = "user1" or logname$ = "user2" ..... then bool = false else bool = true.
At report field use this bool.

By the way, there are many solutions to achieve your requirement, but not without costomizing.

Regards