openMaximo¶
openMaximo opens a Maximo URL in an external browser tab, without the Insight Explorer. It works similarly to the open action, but Maximo is always opened directly in a standalone browser tab instead of being embedded in the Insight Explorer.
| actionValues | |
|---|---|
event |
Maximo event to trigger (e.g. loadapp). |
value |
The Maximo application to load (e.g. WOTRACK). |
uniqueid |
The unique ID of the object to load. Context-specific values can be used: ${WORKORDERID}. |
target |
(optional) Named browser tab target. When set, the same tab is reused for subsequent calls with the same target name. |
Open in new tab¶
Each call opens a new browser tab.
{
"label": "Open Maximo",
"action": "openMaximo",
"icon": "icon-arrow-right",
"actionValues": [
{
"event": "loadapp"
},
{
"value": "WOTRACK"
},
{
"uniqueid": "${WORKORDERID}"
}
]
}
Reuse tab with target¶
When a target is specified, the browser tab with that name is reused instead of opening a new one.
{
"label": "Open Maximo with same target",
"action": "openMaximo",
"icon": "icon-arrow-right",
"actionValues": [
{
"event": "loadapp"
},
{
"value": "WOTRACK"
},
{
"uniqueid": "${WORKORDERID}"
},
{
"target": "maximo"
}
]
}