Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
  • Community
  • Q&A
  • Jira
  • Questions
  • How to create a linked issue in JIRA software projects automatically for a particular issue type.

ACP 600 Question

Kaya, Rahmi
November 27, 2020

Dear Community,

 

i had the following question in my ACP Exam and can´t solve it by myself.

 

Your Scrum Software type project only uses a single shared workflow. The resolutions needs to be set manually during the Fix Transition As a project administrator, how can you achieve this ? 

 

A. Add the Resolution field to the screen associated with Fix transition.

B Add the Resolution field to all project screws.

C Check the Set Resolution option on the target status in your board configuration.

D Request a post-function to be configured for the Fix Transition

E Request a screen with the Resolution field to be associated with the Fix Transition

 

I definitely need the reason for the right answer. In my opinion it only could be  "D"

Because: As a project administrator i´m not able to configure transition screens !

 

Please give me an explanation if i´m wrong

1 answer

1 accepted

0 votes
Answer accepted
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
November 12, 2018

Hello,

You would need an add-on for it. 

For example, you could use the Power Scripts add-on:

https://marketplace.atlassian.com/apps/1210749/power-custom-fields-premium?hosting=server&tab=overview

You could add a post function with a code like this:

string issue_priority;//Possible values: "Major", "Critical" etc.
string issue_description;
string[] issue_components;
string issue_security_level;
string[] custom_fields_mapping;

if (issueType == "Type X") {
issue_priority = "Critical";
issue_description = "Description of the issue";
issue_components = components; //an array containing all the components of the current project
issue_security_level = "Administrator";
custom_fields_mapping = "STDUP|fmanaila|STDGP|jira-users";
string k = createIssue(
"PROJECT",
"",
"Task",
"Summary of the sub task" ,
issue_priority,
issue_description,
issue_components,
currentDate() + "30d",
"1h 30m",
issue_security_level,
custom_fields_mapping
);
linkIssue(key, k, "Duplicate");
}

You can read more about post functions here:

https://confluence.cprime.io/display/JJUPIN/Customizing+workflows

Sunitha Panicker
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 13, 2018

Thanks a lot @Alexey Matveev Will try this out and update if it works for me! 

Like bneuberg likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events