Roles for Update Sets

leslie8
Mega Expert

I need to allow some users to be able to create and manage their own update sets.

I have some people who want to be able to create forms, workflows and edit the dictionary. They need to capture all of their work in an update set.

There is no OOTB role for this... what are the ACLs relevant to creating a new role which allows management of update sets?

I have a general idea I just want to know all of the ACLs that apply to update sets basically.

1 ACCEPTED SOLUTION

BryanS413339635
Tera Guru

We created a pseudo admin role for this same reason. ACLs we used are create, read, and write on sys_update_set and read on sys_remote_update_set and sys_update_xml. The role contains the following other roles: update_set_picker, workflow_admin, catalog, catalog_admin, impersonater, web_service_admin



Hope this helps, Bryan


View solution in original post

3 REPLIES 3

BryanS413339635
Tera Guru

We created a pseudo admin role for this same reason. ACLs we used are create, read, and write on sys_update_set and read on sys_remote_update_set and sys_update_xml. The role contains the following other roles: update_set_picker, workflow_admin, catalog, catalog_admin, impersonater, web_service_admin



Hope this helps, Bryan


If you also want these users to retrieve update sets, add/update Read ACL to sys_update_set_source and update the UI action 'Retrieve Completed Update Sets' Condition statement to something like  … && (current.canWrite() || gs.hasRole('update_set_user')) && ...  (It gets around giving them Write access to the table.)

Ken

If you also want these users to retrieve update sets, add/update Read ACL to sys_update_set_source and update the UI action 'Retrieve Completed Update Sets' Condition statement to something like  … && (current.canWrite() || gs.hasRole('update_set_user')) && ...  (It gets around giving them Write access to the table.)

Ken