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
Hello,
You would need an add-on for it.
For example, you could use the Power Scripts add-on:
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
Thanks a lot @Alexey Matveev Will try this out and update if it works for me!
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.