The Flexera Community is currently in maintenance mode to prepare for the upcoming launch of the new community. Click here for more information.
I am not able to remove a tab/field from the "Asset Properties"
EXEC dbo.RemoveTabFromWebUI
@TargetTypeID = TargetTypeID,
@Name = 'My-Unique-Name'
How to know the @Name = 'My-Unique-Name'.
we have checked in the UIItem table but did not find the name.
Tab Name: Custom Properties
Please Suggest.
āJul 25, 2024 12:54 PM
I'm not immediately sure why you you considering executing the dbo.DeleteUIItem stored procedure directly. (This stored procedure is used by other stored procedure which are used when deleting custom properties and web UI tabs.)
With that said:
For example, to delete an asset UI item with the name "AssetCustPropRackNo" you would execute:
EXEC dbo.DeleteUIItem @TargetTypeID = 9, @Name = 'AssetCustPropRackNo'
āJul 28, 2024 07:57 PM
The tab named "Custom Properties" is likely a built-in tab that is displayed when you have a custom property configured without explicitly specifying any other location (tab or related property) in the UI to display the custom property.
On the assumption that you no longer need to store data in any custom property displayed on that tab, try deleting the unwanted custom property using the dbo.RemovePropertyFromWebUI stored procedure. The tab will no longer be displayed once there is no custom property that needs to be shown on it.
āJul 25, 2024 10:43 PM
Thank you Chris for your quick response.
My question is can you please help me where i can find the "@Name = @Name" . I have searched in UIItem but the Tab/Field nothing shows there. Where i can find the "@Name = @Name".
EXEC dbo.DeleteUIItem @TargetTypeID = @TargetTypeID, @Name = @Name
āJul 26, 2024 07:19 AM - edited āJul 26, 2024 07:20 AM
I'm not immediately sure why you you considering executing the dbo.DeleteUIItem stored procedure directly. (This stored procedure is used by other stored procedure which are used when deleting custom properties and web UI tabs.)
With that said:
For example, to delete an asset UI item with the name "AssetCustPropRackNo" you would execute:
EXEC dbo.DeleteUIItem @TargetTypeID = 9, @Name = 'AssetCustPropRackNo'
āJul 28, 2024 07:57 PM