Hi Team,
I have created an asset custom field named "Affected Region". In this field i want to populate the values of an attribute called "Region" under the object type called "Location".
To satisfy this, i have added the below AQL in the field.
Filter issue scope (AQL): objectType = "Locations" AND Name IN Region
Allow search filtering by these attributes: Region
Object attributes to display on issue view: Region
But still, the value is not populating in the custom field. Could you please provide the right AQL to populate the value.
I'm not sure if you have the correct setup. In an asset field you can show assets objects, but you want to show regions, which is an attribute of the object.
Maybe it would be better to create an objecttype region?
Besides that you are using Filter issue scope (AQL) to filter. Why you should use Filter scope (AQL). The Filter issue scope is used to narrow down options based upon fields that are set in the issue scope.
Lastly, if you use the IN operator, you also need to add parentheses. So: Name IN ("someRegion") instead of Name IN someRegion
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.