Hello,
We are using IIQ 8.4. Can you please let me know how to disable global comments ?
Thanks in advance!
Hello,
We are using IIQ 8.4. Can you please let me know how to disable global comments ?
Thanks in advance!
what you mean by disable global comments ? can you give us more specific ?
Or you mean by this one?
To disable global comments in SailPoint, follow these steps:
Go to Global Settings > IdentityIQ Configuration → Miscellaneous.
Check the “Require comments for all access items” option to require comments for all access requests.
Note that requiring comments is off by default.
Am sorry that i missed to give all information.
The page in which we select entitlements/roles, there is global comments field and comments field for each items. I would like to disable global comments field. Any ideas how it can be accomplished ?
Thanks!
there’s no OOTB configuration for this, however you can do it by overriding the css component (ui-custom.css). you can inspect the element in browser using the developer tool to find out exact component to hide
.btn-white{
display: none;
}
Thank you very much for the solution, Hemant!
Hi @ramthetribo
Could you please let us know if the solution provided by @HemantSingh worked for you? If so, it would be great if you could mark his reply as the solution — that way it’ll help others easily identify the answer when facing a similar situation. ![]()
Thanks in advance! ![]()
Hi @HemantSingh Thanks for the solution.
Global comments disappeared when removed that element. Appreciate your help.