I’m encountering an issue with a custom IdentityAttribute rule that maps a location code to the corresponding country and city. Is there a way to include a condition in the rule to return the correct attribute based on what I need to map, or do I have to duplicate the rule for each attribute?
Thanks
You can have a single rule to return two different information. the thing is ta ISC does not show multi value attributes. so you need two different attributes.
Create one rule that returns a string in this format: firstValueAUNIQUESEPARATORsecondValue
Use the same rule as an input to a split transform for both identity attributes and use first or second values as required
“AUNIQUESEPARATOR” should be a string that will never appear in firstValue or secondValue. You can use something like “XXXXXXXXXXXXXX”