In my case, I used Targeted Certification and was able to display the identity status by adding this ColumnConfig to every key that starts with uiTargetedCertificationItem in the UI config:
<ColumnConfig dataIndex="inactive" groupProperty="Identity.inactive" headerKey="inactive" hideable="true" property="Identity.inactive" sortProperty="Identity.inactive" sortable="true" stateId="inactive"/>
If this approach doesn’t work in your case, check below threads:
@maniG Did you add the helpText attribute to the ObjectConfig as shown below?
To make this work, I’m assuming you’ve already extended the schema by adding the helpText attribute to the Link and CertificationItem hbm files. After that, you’d need to update the ObjectConfig with namedColumn="true", like this:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE ObjectConfig PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<ObjectConfig name="CertificationItem">
<ObjectAttribute displayName="Help Text" editMo…
did you added the ColumnConfig in all the keys starts with uiTargetedCertificationItem in the UIConfig object?
To see the value in the certification, Once you schedule the certification campaign. go to debug and open certification definition of the campaign which you have created recently. and add the <entry key="certificationItemCustomizationRule" value="Your Rule Name"/>
thanks