Submit and Save button missing into new asset creation form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2024 12:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2024 01:53 AM
Look like the upgrade did not work well, so need to update the plug. try to update CMDB and asset plugin. or cache.do
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/dratulgrover [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2024 02:27 AM
Please Search the Script include name as a "AssetUtils" and add this function
AssetUtils.showUIActionOverAsset = function(asset) {
// Hide the UI action over license if SAMS is active
return asset.sys_class_name.toString() !== global.AssetManagementConstants.ASSET_CLASSES.SOFTWARE_ENTITLEMENT || !GlidePluginManager.isActive('com.snc.sams');
};
than submit ui action visible.
If I could help you with your Query then, please hit the Thumb Icon and mark as Correct !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2024 10:50 PM
is this issue resolved?we are also facing the same issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2024 12:04 AM
Yes, its resolved.
GO to Script include - > search the name AssetUtils - then paste this script into script box
AssetUtils.showUIActionOverAsset = function(asset) {
// Hide the UI action over license if SAMS is active
return asset.sys_class_name.toString() !== global.AssetManagementConstants.ASSET_CLASSES.SOFTWARE_ENTITLEMENT || !GlidePluginManager.isActive('com.snc.sams');
};
Save it..then it ll work

