Using Datcenter -- 8.20.x
having JSU, JMWE and Scriptrunner
How to make "Custom field" in Sub-task issue (at a particular transition) mandatory based on the "issuetype of parent field.
Example In the below Status "Deliverd" (this is subtask wrflw) a particular custom field lets say "customer Name"
should be made Mandatory when the issuetype of parent is story
Hi @Naresh
You can use a Field Required Validator (JMWE App), select the required field, and add conditional validation like:
issue.parent?.issueType?.name == "Story"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can the same can be applied to check for parent status ?
issue.parent?.status?.name == "Baselined"
Where "Baselined" is the status of Parent issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Naresh absolutely. Check out the inline help system below the editor to find out everything you can do with Jira expressions.
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.