Share all details related to your problem, including any error messages you may have received.
Hello all
We need to create a group for some users with the right to access the Intelligence MENU → Report and see/run a two specific report .
Is it possible ? to create a workgroups that allows the use to run and see one report ?
In short you have to define your SPRIGHT which will grant access to the report. Then you have to build your new capability which would containt this spright and finaly you can assign this capability to the workgroup.
You probably want to assign the FullAccessReport SPRight, in addition to whatever report SPRights you’ve created, to your Capability. And assign that Capability to the Workgroup. Here is an example of what at capability would look like:
<Capability name="SomeCustomCapability" displayName="Some Custom Capability">
<Description>This is a custom capability which I am using as an example...</Description>
<RightRefs>
<!-- Access to the report pages. -->
<Reference class="sailpoint.object.SPRight" name="FullAccessReport" />
<!-- Access other custom reports. -->
<Reference class="sailpoint.object.SPRight" name="SomeCustomReport" />
...
If you add it properly to task definition it should work. I believe the easiest way would be if you could paste here your spright, capability, workgroup and report definitions. So we can take a look and find mistake.