-
Suggestion
-
Resolution: Unresolved
-
None
-
1
-
If a User type attribute is configured on an Object, it would be helpful to be able to perform an AQL search against this attribute based on the Jira users active/inactive status.
This functionality can be added to JQL through 3rd party apps like ScriptRunner's InactiveUsers Method. But this functionality only works in JQL for Jira issue fields. It would be helpful to have similar functionality built out of the box in AQL.
- links to
I found two solutions for this issue:
Every user attribute field that contains an inactive account has "[X] (Inactive)" appended at the end of the value.
By using an AQL query like:
objectType = Devices AND Owner LIKE "[X]"
This will return all inactive owners, allowing you to automate task creation for reassignment.
A script can be used to identify inactive users and trigger automated actions accordingly.
I hope this helps others facing similar challenges in Jira Assets!