on 2016 Sep 07 3:37 PM
Hello experts,
I tried to hide the approver role in the collaborator list without success. I used "Page Customization" for hiding the role. I used the settings as follows:
I used the "Object Reference" in order to hide the "Approver" role:
Nevertheless, the "Approver" role did not disappear (see screenshot).
Am I doing anything wrong?
Best regards,
Heiko
Hi Heiko,
If you want to disable the Approver role permanently, you can inactive it then it will not appear in drop down list for all the business documents.
Setup--> Document Set up--> Collaborator role definitions --> Approver.
If requirement is not hiding permanently, then let us know the requirement scenario.
Regards,
Lava
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Lava,
thanks for your answer. The approver role is important. It is a system role so we cannot set the status to "Inactive". The problem is that users have the possibility to choose the "Approver role" so that the workflow doesn't work properly.
It would be helpful to hide this role. In addition to that we have other roles in our script which cannot be set to "Inactive" as well.
Do you have any idea how we can solve this issue?
Best,
Heiko
Hi Heiko,
The only posbility is to validate the Colloblorator role definion for the respective group member in that document via script.
coll = doc.getCollaborators();
itr = coll.iterator();
while(itr.hasNext()){
member = itr.next();
if(!member.getSilent()){
role = member.getCollaboratorRole().toString();//validate the value"Approval"
Thanks
Sonu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.