You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi, Requirement - If 'Planned start date' (custom field) is less than two days from now, and 'Env' (custom field) is 'PRD', then only Emergency change category ticket can be created.
I'm writing a JMWE scripted workflow validation to achieve this (not a scripting expert)
if (issue.get("Env") == "PRD")
{ if ((issue.get("Change category") != "Emergency"))
{(issue.get("Planned start date") > new Date() +2)
}}
The problem with this is, that even if Change category is selected as Emergency, it does not allow the ticket creation. What am I doing wrong? Pls help.
Hi Himanshu,
I believe what you want is:
issue.getAsString("Change category") != "Emergency" || issue.getAsString("Env") != "PRD" || issue.get("Planned start date") > new Date() +2
Had to make a slight logical adjustment to your recommendation, but worked like a charm. Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We often have questions from folks using Jira Service Management about the benefits to using Premium. Check out this video to learn how you can unlock even more value in our Premium plan. &nb...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.