Share all details related to your problem, including any error messages you may have received.
Hello, all. I’m trying to fix a legacy issue where one of the identity attributes was written in Upper case as “AttributeOne” where it should be written as “attributeOne”.
With this, I’m seeing a couple problems:
The attribute “AttributeOne” is now a named column, which is being seen as a class by IIQ. It’s a know issue, and it hasn’t caused any major issues, but keeps giving us errors in a lot of aggregations;
The attribute is not searchable, even if marked so;
I found ways to fix it, but I’ll need to find out every reference to it in the object code, so I can replace it with the correct casing.
Have you had any similar experience? Is there a way to find that in the debug page?
Thanks a lot.
To find out references you can dump all rules, workflows, application xmls into one object using export command.
Grep on the object file to find the exact references of the attribute if you are in Linux os if not use powershell commands to find out the references of attribute.
This way you can get to see the references then you can modify code accordingly.
Another way is find out all the logs with errors and fix all of the references.