Redirect some users always to Servic Operations Workspace for consult Incidents and requirements

av00
Tera Contributor

We need that only a number of users with an specific group or role can open their incidents and requirements -not changes- in service Operations Workspace uniquely. When they try to consult from a list or from the searchbox of the Service Management screen, they have to redirect exclusively that workspace. Is that possible?

1 ACCEPTED SOLUTION

kaushal_snow
Giga Sage

@av00 ,

 

Yes , you can redirect specific users (by role or group) to the SOW instead of the classic UI by configuring the Landing page redirection settings in SOW Admin Center, enabling the Homepage Destination Rule and using audience criteria (e.g., group membership or roles) to target only your chosen users......

 

If you found my response helpful, please mark it as ‘Accept as Solution’ and ‘Helpful’. This helps other community members find the right answer more easily and supports the community.

 

Thanks and Regards,
Kaushal Kumar Jha - ServiceNow Consultant - Lets connect on Linkedin: https://www.linkedin.com/in/kaushalkrjha/

View solution in original post

2 REPLIES 2

SVimes
Kilo Sage

An onLoad Client Script like this could be part of what you are looking for. You would just need to add the criteria to evaluate either directly in the Client Script or in a Display Business Rule writing to g_scratchpad for the Client Script to refer to.

function onLoad() {
   //Type appropriate comment here, and begin script below
   g_navigation.open("/now/sow/record/incident/" + g_form.getUniqueValue(), '_self');
}

 

Sable Vimes - CSA

kaushal_snow
Giga Sage

@av00 ,

 

Yes , you can redirect specific users (by role or group) to the SOW instead of the classic UI by configuring the Landing page redirection settings in SOW Admin Center, enabling the Homepage Destination Rule and using audience criteria (e.g., group membership or roles) to target only your chosen users......

 

If you found my response helpful, please mark it as ‘Accept as Solution’ and ‘Helpful’. This helps other community members find the right answer more easily and supports the community.

 

Thanks and Regards,
Kaushal Kumar Jha - ServiceNow Consultant - Lets connect on Linkedin: https://www.linkedin.com/in/kaushalkrjha/