This article is Data Center.
Problem
The customer wants a Structure table to show every user their next tickets with values. As a user, I should be able to see only the issues that are assigned to me. I tried inserting issues with assignee = currentUser(), but it didn’t work.
I tried with transformations with JQL assignee = currentUser(), and I have a result. But how can I force this transformation, or limit the other transformations?
Solution
The currentuser() function not working in insert generators is an expected behaviour: generators always run on the owner’s behalf. But it works if you and other users use a transformation with the same function.