Hi Community,
I have a field called Organisation and I'm looking to create an automation that sets the field to a value based on their domain when the issue is created.
For example if their domain is @XYZ.com then the Organisation field would be set to XYZ.
Thanks.
Hi @Nicholas Ren
You can use Smart Values to get the Reporters email address and use text functions to manipulate it. But there seem to be some limitations with combining operations and with using operations in combinations with Variables.
You can easily get the "gmail.com" part from "john.smith@gmail.com" by using this as the value in your automation rule:
{{assignee.emailAddress.split("@").last}}
But I couldn't figure out yet how to further slice it down to just "gmail". The below code doesn't work.
{{assignee.emailAddress.split("@").last.split(".").first}}
I read this post that suggest to use entity properties instead. Maybe you can play around with that to see if you can get that working.
Have a nice day!
Why you don't use the built-in Organization functionality that comes with JSM projects?
https://support.atlassian.com/jira-service-management-cloud/docs/group-customers-into-organizations/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would but some of our Service Desk tickets contain sensitive information and we don't want our staff to be able to search for these tickets in the Service Desk portal.
Due to this, we need to close off the Org filter and to do that, we can't use the Org functionality.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you don't want your stuff to search for these tickets, then you should setup the issue security scheme with the corresponding security levels. That would be the way to go.
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.