how to switch view from ui action
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
Hi All,
How we can directly switch to a particular view from a ui action? Tried few scripts but not working as expected.
// Redirect to newly created record with view
var url = '/u_email_client.do?sys_id=' + response + '&sysparm_view=genai_standardquery&sysparm_clear_stack=true';
// window.top.location = url;
g_navigation.open(url);
//action.setRedirectURL(response);
//g_navigation.openRecord('u_email_client', response, 'genai_standardquery');
//g_navigation.openRecord('u_email_client', response, 'GenAI_StandardQuery');
//g_navigation.openRecord('u_email_client', response, 'BPO_HRquery');
//top.window.location = '/u_email_client.do?sys_id=' + response + '&sysparm_view=GenAI_StandardQuery';
// var url = new GlideURL(g_form.getTableName() + '.do');
// url.addParam('sys_id', g_form.getUniqueValue());
// url.addParam('sysparm_view', 'GenAI_StandardQuery');
// window.location.href = url.getURL();
//action.setRedirectURL(current.getTableName() + '.do?sys_id=' + current.sys_id + '&sysparm_view=' + viewName + '&sysparm_view_forced=true');
//var link ="u_email_client.do?sys_id="+response+"&sysparm_view=genai_standardquery";
Regards,
Jobin
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Hello @jobin1 ,
You can acheive this requirnment using below ui action .
Here v1 is my viewName (Note : I tried above ui action in xanadu version)
I recommend you don't try to change view like this means using ui action. In Servicenow there is ootb option to change view always try to use that .
If this helps you then mark it as helpful and accept as solution.
Regards,
Aditya
