Article Number
000039050
Applies To
RSA Product Set: RSA Identity Governance & Lifecycle
RSA Version/Condition: 7.1.1, 7.2.0
Issue
When attempting to create an Account Template Parameter, the following error occurs and the Account Template definition cannot be saved. In the user interface go to (
Requests >
Configuration >
Account Templates tab > {
Account Template name} >
Edit.)
Special characters other than '_' and '$' are not allowed for variables in the Name field.
Image description
Cause
This is a known issue reported in engineering ticket ACM-105533.
This is a change in product behavior. Starting in 7.1.1 P01, special characters other than '_' and '$' are not allowed in variable names used in Account Template parameters in RSA Identity Governance & Lifecycle.
This issue manifests in the following ways:
- Any existing variables in the system that have special characters are not converted to the required format. For example:
Image description
- If you have migrated from an earlier version where the special characters were allowed, your connectors will not deploy, nor can you use any of your existing account template parameters for further connector definitions.
Resolution
This issue is resolved in RSA Identity Governance & Lifecycle 7.2.0 P03.
Workaround
Edit existing Account Templates and remove special characters from any Template Parameters if they exist. (
Requests >
Configuration >
Account Templates tab > {
Account Template name} >
Edit.)
To find all the account template parameter names, execute the following SQL query as
avuser:
Select * from t_av_account_template_param;
To find parameters with specific special characters, add a
where clause. In the following example, the SQL query finds all account template parameters with a space.
Select * from t_av_account_template_param where name like '% %';
Notes