Change Interceptor UI (classic view)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
I would like to change the appearance of the 'Create New Change' interceptor and change the links to the different change models for buttons or some other functionality that makes the page more attractive and usable for fulfillers from the classic view. How can I do this?
What options do I have? I'm not finding a clear way to do it. Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
Hi @Isolda ,
You can create a UI Page
UI page HTML
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<button class="btn btn-primary" onclick="openChangeForm('normal')">Normal Change</button>
<button class="btn btn-danger" onclick="openChangeForm('emergency')">Emergency Change</button>
<button class="btn btn-success" onclick="openChangeForm('standard')">Standard Change</button>
</j:jelly>Client script
function openChangeForm(type) {
window.open('/change_request.do?sys_id=-1&sysparm_query=type=' + type); // Opens in new tab
}and create a module and add the UI Page url to the module
Result( this is a simple demo with UI page you can make this more interactive and attractive)
you can deactivate the OOB Module "Create New"
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
