Transition Validator for one custom field in the screen?

Leo Epstein
Contributor
June 1, 2021

Hello,

How can I make a custom field required on a transition with ScriptRunner?

Let's say the field has the name "xx yyy".

Many thanks in advance.

Leo

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 1, 2021

The standard answer is "use a validator" - it should be as simple as saying "customfield 'xx yyy' is not empty", you might not even need a script for it.

You might also be able to do it with a Behaviour, which works on the UI side rather than on the back-end in the workflow with a validator, but that could be a bit more complex to implement and won't catch it if people are using the REST API.

Leo Epstein
Contributor
June 1, 2021

1. The "validator" was already in the question title (see above)

2. There is no "simple validator" on the Server. And I am on the server (see above on the right).

3. Could you post a simple code please?

4. Thanks for your quick reply.

Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 1, 2021

1. Yeah, I just wanted to be clear there were other options

2. Yep, you mentioned Scriptrunner - Jira has a couple of very simple validators built in, but nothing of any serious usefulness.  SR lets you create validators that can do almost everything

3. The pseudo code is really just "if custom field has value, return true".  I don't usually do copy and paste, but in this case, it's easy enough that I can probably do it from memory

def customField = ComponentAccessor.customFieldManager.getCustomFieldObjects(issue).findByName(customFieldName)
assert customField: "Could not find custom field with name $customFieldName"

if issue.getCustomFieldValue(customField) return true
Like Leo Epstein likes this
Leo Epstein
Contributor
June 2, 2021

@Nic Brough -Adaptavist- 

Hi Nic,

Thanks a lot for your code.

Could you please inform, what should I change 

1.  to get rid of the following error message?

2. to enter my custom field named "xx yyy"?

error.jpg

Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 2, 2021

Sorry, the "if" query needs to be in braces, so

if (issue.getCustomFieldValue(customField)) return true

On the first line, replace customFieldName with "xx yyy" (with the quotes - that function is expecting a string containing the name of a field)

Like Leo Epstein likes this
Leo Epstein
Contributor
June 2, 2021

@Nic Brough -Adaptavist- 

Thanks again.

The transition screen cannot be closed though all the fields are not empty.

Can you help please?

1. The code:

def customField = ComponentAccessor.customFieldManager.getCustomFieldObjects(issue).findByName("Wiedervorlage-Datum")

assert customField: "Could not find custom field with name Wiedervorlage-Datum"

if (issue.getCustomFieldValue(customField)) return true

 

2. The two red points on the console:

02.jpg01.jpg

TAGS
AUG Leaders

Atlassian Community Events