After following the documentation to create custom attributes they are not visible on context pages. How can we make the custom variables visible in the CAPC user interface?
DX NetOps CAPM all supported releases
Per the documentation:
TechDocs : DX NetOps CAPM 23.3 : Manage Custom Attributes
Note the following:
<Hidden>
Specify whether to hide the property by default from the inventory views in the Performance Center user interface. If this tag is set to "true," you can manually choose to display the custom attribute in the user interface. This tag impacts whether custom attributes appear by default from the inventory views only. They are available by default in other areas.
Default: "true"
To change the value to false you can do the following in a REST client:
Method: PUT
URL: http://DA:8581/rest/customattributedefinition/ITEMID
Body:
<CustomAttributeDefinition version='1.0.0'>
<Hidden>false</Hidden>
</CustomAttributeDefinition>
After doing this, the custom attributes should now be visible in the CAPM user interface (NetOps Portal).