Service Builder UI List/Form buttons in SOW
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2025 05:56 AM
Hi,
When installing "Service Builder" it comes with 4 UI actions for creating and updating Service and Offerings.
The actions are working in Core UI but they are not configured to work on SOW. Can anyone here in the community assist with how I should write the scripts in the actions to make them work in SOW?
Here is the core ui script for the oob "Create service in service builder" ui action:
function openServiceBuilder() {
var checkoutUtil = new GlideAjax('sn_service_builder.ASBClientUtilAjax');
checkoutUtil.addParam('sysparm_name','getServiceBuilderUrl');
checkoutUtil.addParam('sysparam_table', g_list.getTableName());
checkoutUtil.getXMLAnswer(navigateToBuilder);
}
function navigateToBuilder(url) {
if (url) {
g_navigation.openPopup(url);
g_navigation.reloadWindow();
}
}
The other 3 are similar so if I get help with this one I can do the others as well.
/Magnus
0 REPLIES 0