I'm building an automation that's working as expected except I'm trying to add a part where the reporter of the new epic is the person who triggered the automation. I know I got the smart value part right because the right person's name shows up in the audit log each time, but the error "inactive user" still shows up (and the reporter's name is Anonymous in the new epic). The admins have looked at our permission settings and we know that's not the problem - has anyone else run into this?
thanks for your question. First think I would check is:
Could you please post a screenshot of your rule and the assignment part?
I just checked the project permissions and yes to both of your questions. However when I looked at the reporters section I saw this:
Could this be the issue?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kai Becker Well I just tried adding every permission imaginable to the "modify reporter permission" and I'm getting the same "inactive user" error message.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A bit late, but I think the problem is the .displayName in your smart value, just use {{initiator}} and it will get the user ID, which is what it needs.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Majken Longlade Thank you for your suggestion, it worked for me!
I was using {{initiator.displayName}} and running into the same error. The audit log for the automation rule showed it running successfully, but the initiator's user name wasn't showing up in the field. I changed it to just {{initiator}} and it worked, now the initiator's user name appears in the field I wanted.
Thank you again, much appreciated!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad to hear! For anyone else who comes along, what's going on is that while user picker fields show you the username, the selection is based off the user ID. When you manually fill in a user picker it lets you search by username, but when you make a selection from the list it's setting the user ID as the actual input into the field. So when using Automation rules or APIs with user picker fields, you have to give it the user ID.
Generally when you're copying from one field to the same type of field, you don't want to add any parameters to the smart value. That's only useful if you're trying to eg take the email address from a user picker field, and put it in an email field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.