- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2018 01:19 AM
We have a requirement to open a server record(form view) using an ui action 'Decomission server'.The ui action is in task form. While clicking' Decomission server' the server record which is mentioned in the task should be opened,so that support engineer can decommion the server easily.
Kinldy help to achieve this.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2018 03:10 AM
try now
function set()
{
var cec = g_form.getValue('cmdb_ci');
var url = '/cmdb_ci.do?sys_id='+cec;
window.open(url,'_blank');
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2018 03:04 AM
Try below
action.setRedirectURL('/cmdb_ci.do?sys_id=' + current.cmdb_ci);
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2018 03:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2018 03:27 AM
Thank you so much:)
It's working.