
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2020 10:33 AM
We've noticed that in the Requested Items that the Variable Editor Shows, but from a Self Service Incident, the Variables do not show. Wonder if there is an easy way to fix this or any way to add it?
Solved! Go to Solution.
- Labels:
-
Agent Workspace
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2020 04:42 PM
You can update the form layout of your Incident form in the Workspace view to include "Incident Variable Editor".
Then it will show in agent workspace on that incident in a Variables section.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2024 03:30 AM
Write onload scr4ipt for that with
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2021 09:38 PM
This is helpful!
My only question would be, is there a way to hide the header when no variables are available.
As you can see in David's screenshot the 'Variables' title appears even when there are no variables to display. This was not the case pre-workspace.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2021 06:48 AM
Hi Mark,
Yes there is, with an onload client script.
You have to specify a condition though. For instance, all items that are logged via the portal get the contact type 'Self-Service'.
Then you could do something like:
function onLoad() {
if (g_form.getValue('contact_type') != 'self-service') {
g_form.setSectionDisplay('variables', false);
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2023 03:23 AM
But these variables are readonly for non admin users. How to avoid this ?