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
1. Added "open in SOW" Button to open the record in service operations workspace, since it is gaining popularity now.
2
+
1. Added "open in Workspace" Button to open the record in workspace(defined in option schema), since it is gaining popularity now.
3
3
2. Enhanced the visibility condition so that the button is only visible on pages having sys_id and table in url.
4
4
3. Enhanced css to improve visibility of button.
5
+
4. This button wll look for the table to workspace mapping (in option schema) and create the URL to open record in respective workspace. If now mapping is found, the record is opened in SOW workspace(default).
6
+
5. The button name has been changed to generic title "Open In Workspace"
5
7
6
-
Widget will create a button that will only be visable to users with the itil role that will take them to the same record in platform. will work with the form and standard ticket pages (or anywhere with the table and sysId in the url.
8
+
**Sample**
9
+
{
10
+
"name":"define_workspace",
11
+
"type":"json",
12
+
"label":"Define Table Workspace JSON Mapping",
13
+
"value":{
14
+
"sn_grc_issue":"risk/privacy", // will open issue records in RISK workspace
15
+
"sn_si_incident":"sir" // will open security incidents in SIR workspace.
16
+
}
17
+
}
18
+
19
+
Widget will create a button that will only be visible to users with the itil role that will take them to the same record in platform. will work with the form and standard ticket pages (or anywhere with the table and sysId in the url.
data.workspace_url="now/"+tableWorkspaceMapping[key]+"/record/"+data.table+"/"+data.sys_id;// if table to workspce mapping is found, the create workspace URL.
13
+
else
14
+
data.workspace_url="now/sow/record/"+data.table+"/"+data.sys_id;// open in SOW
0 commit comments