i want configure following functionality.
I want to create child ticket just after create parent ticket rather create separately and link.
how can configure this functionality on my instance.
Hello,
Just a quick update about this question in order to better clarify it:
You can easily create a sub-task from an existing parent issue by navigating to parent issue > click more actions (•••) > Create Sub-task in Jira server, or Clicking in Create subtask () at Jira Cloud.
When it comes to Automation:
Jira Cloud - You can automatically create sub-tasks when creating its parent by using the inbuilt Automation functionality (Project settings > Automation). It's easy and very intuitive:
Jira Server - You will need a third-party plugin to achieve this. Here are some options:
Hi Gayan,
You can do this using the Power Scripts add-on.
There is a video tutorial walking you through in detail here.
Here is the code:
string issue_project = project;
string issue_parent_key = key;
string issue_type = "Sub-Task";
string issue_summary = "New subtask for " + key;
string issue_priority = "Minor";
string issue_description = "";
string[] issue_components;
date issue_dueDate = currentDate() + "30d";
interval issue_estimate = "1h 30m";
string issue_security_level;
string[] issue_fields_mapping;
if(customfield_14822 == "Yes") {
string subTaskKey = createIssue(project, issue_parent_key, issue_type, issue_summary, issue_priority, issue_description, issue_components, issue_dueDate, issue_estimate, issue_security_level, issue_fields_mapping);
linkIssue(subTaskKey, issue_parent_key, "Relates");
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is not an answer, but an observation. It is unexplainable that this functionality is not available out of the box. Why would you want to run a script to create child issues? And I am not talking about subtasks. I think Atlassian need to fix this bug, not have their clients run around putting in workarounds for such basic functionality requirements.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Generally you don't want to create sub-tasks automatically in the processes Jira is mainly aimed at supporting. That's why there's nothing built-in. It's not "basic functionality", it's "good to have when we're using Jira for some stuff that it's not really built for"
Although Automation was one of the apps that provided the function and is now part of Jira Cloud, so Atlassian have put it in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How is creating a child issue not basic functionality?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, I was not as clear as I should have been there.
Creating child issues automatically is not "basic functionality".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I agree, but you should be able to manually create child issues of your choice based on your configured hierarchy?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, and you can.
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.
Depends on what type of "child" issue you are thinking of.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am aware that you can link via the epic/parent link from anywhere as long as it follows your setup hierarchy. What I am saying that from a parent you cannot create a child that you want in a different project from the parent.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes you can. Sorry, but I don't think I understand what you're asking now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Going to have to agree with @Garth Hume's original comment here.
This seems like it should be pretty core to just move a ticket between being a child and a parent. Basically every competing tool does this fluidly.
This was also clearly intended in the design as there is an option in each issue called "Add parent". When you click this the modal title doesn't say "Add parent" - it says "Add epic". Then all the language in the modal is about parents. Clearly, the original design was meant to allow this functionality and someone messed up.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The answer seems to be that it is not easy to do. Would I be better off creating a feature and then the children would fall under the feature? Still does not address the possible need for grandchildren.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You'd need to hack the create functionality, dealing with the cases where people do not want to create a sub-task straight away as well.
Could you use a "create sub task" post-function on the create transition to generate one automatically?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there any possibilities to control child ticket create (lest say if user checked particular check box)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You'll need code that can pick up the data on the parent issue and decide whether to create sub-tasks or not.
Do you have any of the scripting add-ons?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To create a child I must hack the create functionality?!? LAME!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, just click "create sub-task" in the new issue. Or automate it.
Most people do not want to have to create a sub-task.
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.