Submit and Save button is missing

BanuMahalakshmi
Tera Contributor

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.

1 ACCEPTED SOLUTION

Service_RNow
Mega Sage

HI @BanuMahalakshmi 

 

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 !!

View solution in original post

1 REPLY 1

Service_RNow
Mega Sage

HI @BanuMahalakshmi 

 

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 !!