Interaction table Role

siddharth1
Tera Contributor

Hi All,

can someone tell what role is required to give users have read access to interaction table

3 REPLIES 3

Maik Skoddow
Tera Patron
Tera Patron

Hi

you can have a look into the ACLs and then see that it is a bit complex:

One ACL provides access via script:

answer = false;
var user = gs.getUserID();
if (!current.assigned_to)
	answer = true;
else if (current.assigned_to == user)
	answer = true;
else if (current.opened_for == user)
	answer = true;
else 
	answer = gs.hasRole('sn_hr_sp.esc_admin');

 

Another ACL provides read access for the roles 

  • itil
  • interaction_agent
  • sn_esm_agent

 

SowmiyaC
Tera Contributor

how to differentiate ACL from Agent workspace and HR service delivery applications