Creating Custom Screen Pops

The Skybox integrated eXperience (SiX) offers the ability to add custom screen pops.  This can be virtually any ServiceNow screen that can be accessed via a URL.

1

Studio Access

In order to configure screen pops in your ServiceNow, you will need access to your CXone scripting via the CXone Studio application.  The screen pop will be configured in the IVR.  SiX Agent supports 2 different methods of passing a screen pop URL to ServiceNow.

RunApp - This action would be placed in the OnAnswer branch of your queue script.  The ActionType needs to be set to OpenURL.

Reqagent - By setting the ScreenPopURL property.

2

URL Format

The URL passed for the Screen Pop must be the correct format for the SiX Agent to be able to parse it and send it to ServiceNow. A hint would be to log in to your ServiceNow instance and navigate to a screen that you would want to pop. Copy that URL as a starting point.

The SiX Agent expects the nav_to.do in the URL as well as the <page>.do or <page>_list.do for the page you want to pop. For example: incident.do will pop an incident form.  It is ok to include URL Encoding as the SiX Agent will interpret it when sending the URL to ServiceNow.

Example URLs in Standard View
https://xxxxx.service-now.com/nav_to.do?uri=%2Fincident.do%3Fsys_id%3D4acc64f7db90c050955bc7ec0b9619a7

https://xxxxx.service-now.com/nav_to.do?uri=%2Fsn_customerservice_case.do%3Fsys_id%3D4c71fed3db573f00955bc7ec0b9619ae
%26sysparm_view%3Dcase%26sysparm_record_target%3Dsn_customerservice_case

https://xxxxx.service-now.com/nav_to.do?uri=%2Fsys_user_list.do?sysparm_query=active%3Dtrue%5EtitleISNOTEMPTY&sysparm_list_mode=grid

TOP