- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2024 04:34 AM
Hi,
After washington upgrade, Submit and Save button missing into new asset creation form. in Utah version, we had submit and save button into newly asset creation form. how to fix this issue.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2024 02:28 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
05-28-2024 02:28 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 !!