Agent Workspace - UI Action to open a UI Page in a sub tab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2019 07:55 AM
Hi Community!
In the Agent Workspace, I would like to place a UI Action in order to open a IU Page in a sub tab, or to show the results of a query, let's say the list of Incidents opened by the same user in the last three days in a subtab?
Does anyone knows how to make it possible?
Best Regards
- Labels:
-
Multiple Versions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2020 09:36 AM
Hey sir,
Try the g_aw.openRecord(). It's used in a few OOB UI actions to open new tabs in the workspace.
This one opens the Sys_user record of the caller in a new tab from a incident:
function onClick(g_form) {
g_aw.openRecord("sys_user",g_form.getValue("caller_id"), { "mode": "form" });
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2021 08:08 PM
I'm seeing a lot of use cases for sys_user but none for opening related tasks themselves. I checked and 'Copy Incident' seems to open a related incident, but I can't get this to work with g_aw.openRecord, does anyone know how to use this method to open task type records?