When our users create a ticket they must specify a site. How can I add that information to the summary field while still retaining what the user entered into the summary field?
I've tried using the Automation under project settings but the summary text is overwritten. Ideally I'd like to prepend the summary text with the site.
Hello Bill,
Alexey's answer is true.
However if you want to try this without the plugin you may be able to do the following:
Go to the workflow associated with the projects (sites) you are trying to capture. Click on the first stem of the workflow after Create. Then you will need to click on Post functions in the box which pops up. Then click Add Post function. Then look for the post function called Set Field Value. Select it by clicking the radio button. Scroll to the bottom of that page and click Add. In the form that appears set the Field to Summary. And set the value to {{ issue.fields.summary }} -- {{issue.fields["Project"].name}}
Scroll to the bottom then hit Update. You will have to Publish Draft for your workflow to take effect. Then just run a test ticket. You should see the summary and the project name appear together.
Hello,
You can do it with the Power Scripts add-on.
You can write a post function with a code like this:
summary = summary + " " + #{Site}
You can use the 30 days trial period. You can find more info about post functions here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the suggestion.
Do you know if there's a way I can do it without an add-on?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you both for your help. I ended up solving my issue using an add-on but only got there because both of you pointed me in the right direction.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad to help Bill.
Joe
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.