Hello,
I want to make a linked Issue Field required during a transition based on Custom field value.
Here I had a custom field single select "Opinion" have 'will do' 'will not do' 'future'
During the Transition, if the Opinion is 'will do' then we need to provide required Links in Linked Issue field or else should throw an error, whereas if we select any other value (will not do or future) Transition should go forward without asking any link to fill in.
Does this work? please advice,
if (cfValues['Opinion'] == 'Will do' && cfValues['Link to Release ticket'] !== 'null') return false; else return true;
Or
if (cfValues['Decision'] == 'Will Implement' && cfValues['Link To Release ticket'] !== 'null');
else
(cfValues['Decision’]*.value in [‘will not’, ‘future’] && cfValues['Link To Release ticket'] == 'null');
Thanks.
Hi,
this might help you:
(cfValues['Opinion']?.value == 'Will do' && cfValues['Value'] != null) || (cfValues['Opinion']?.value == "Will not do") || (cfValues['Opinion']?.value == "future")
Thomas,
Really appreciated! this script exactly works,
I was wondering from where do I start learning Groovy Script and improve my stuff
Thanks a lot for the help!
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.
Hey Thomas
How to
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Thomas,
I have to make a field required based on the value in another field. We have scriptrunner add-on. What is the simplest and best way to achieve this?
Can you provide me a sample syntax for this logic?
IF dropdown_field = option3 or option4 then Text_field =Required END IF
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.
Thank you for help! I tried to write a script but this does work, can you please look it
please advice me.
if (cfValues['Opinion'] == 'Will' && cfValues['Link To Release ticket'] !== 'null');
else
(cfValues['Opinion'] == 'Will Not or Future’ && cfValues['Link To Release ticket'] == 'null');
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
did you try the step-by-step-guide in the page, I linked to? This is exactly what you need, I don't know what to explain any more than that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thomas, Thank you for the reply, The scenario in the link he said to use Two Transitions as State 1 and State 2 but
In here I need to achieve those only during One Transition by the validator, I experimented all those scripts in that link doesn't work for me, can you please help me with script!! I'm a beginner in GrovvyScipt.
Thanks.
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.