How to Show Record producer and Catalog Item On the PopUp
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Create UI Action
- Go to: UI Actions
- Table: (e.g., Incident / your table)
- Check:
- Client
- Workspace Form Button
function onClick(g_form) {
// Replace with your Record Producer sys_id
var producerSysId = 'PUT_YOUR_SYS_ID_HERE';
var url = "/com.glideapp.servicecatalog_cat_item_view.do?sysparm_id="
+ producerSysId +
"&sysparm_view=workspace" +
"&sysparm_stack=no";
g_modal.showFrame({
title: "Create Request", // Popup Title
url: url,
size: 'xl', // sm | md | lg | xl | full
height: 600 // Adjust as needed
});
}When we click on the UI Button in the Workspace we can able to see the record producer
0 REPLIES 0
