You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This method redirects users to a new URL. You can specify the frame where the content should load (e.g., the current frame or a specific one).
3
+
4
+
### Example: Open All Active Incidents of the Caller
5
+
6
+
var callerID = g_form.getValue("caller_id");
7
+
var url = "incident_list.do?sysparm_query=active=true^caller_id=" + callerID;
8
+
g_navigation.open(url, "_blank");
9
+
10
+
This code opens a list of all active incidents for a specific caller in the current frame. It’s perfect for quickly accessing incidents tied to a particular user without leaving your current workflow.
0 commit comments