- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2025 09:58 AM
There is a UI action on the Transfer Order Line table. This UI action allows users to move multiple transfer order lines through the stages of the workflow:
I want to customize this modal to include additional stages / add fields. Where can I find this modal? I looked in the UI Pages module but could not find anything.
The "Bulk Update" UI action script:
/* global assetSetDomainParameters */
function openModal() {
var maxCount = g_scratchpad.sn_itam_bulk_update_max_tol;
var maxExceededMsg = '';
getMessage('More than {0} lines are selected; the bulk update is limited to {0} lines.', function(translatedMsg) {
maxExceededMsg = new GwtMessage().format(translatedMsg, maxCount);
});
var sysId = g_form.getUniqueValue();
var DialogClass = window.GlideModal ? GlideModal : GlideDialogWindow;
var gm = new DialogClass('alm_bulk_update_tol_tasks');
// Sets the dialog title
gm.setTitle(getMessage('Bulk Update - Transfer Order Lines'));
gm.setPreference('sysId', sysId);
gm.setPreference('maxCount', maxCount);
gm.setPreference('maxExceededMsg', maxExceededMsg);
// to pass domain params
assetSetDomainParameters(gm);
gm.setWidth(550);
// Opens the dialog
gm.render();
}
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2025 10:03 AM - edited 04-15-2025 10:05 AM
It should be in the UI Pages module; the sys_id of the record is 41b98231b7e11010249a6f28ee11a94f (at least in my new Yokohama PDI).
You can use this link: https://INSTANCE.service-now.com/nav_to.do?uri=sys_ui_page.do?sys_id=41b98231b7e11010249a6f28ee11a94f
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2025 10:03 AM - edited 04-15-2025 10:05 AM
It should be in the UI Pages module; the sys_id of the record is 41b98231b7e11010249a6f28ee11a94f (at least in my new Yokohama PDI).
You can use this link: https://INSTANCE.service-now.com/nav_to.do?uri=sys_ui_page.do?sys_id=41b98231b7e11010249a6f28ee11a94f