Error creating Issue: Error occurs while creating issue - using scripted field

Nitin Sharma May 3, 2015

Whenever I am trying to use the scripted field, it works fine but while creating an new Issue JIRA thorws error

 

Error creating Issue: Error occurs while creating issue:This is due to the plugin being incompatible with the version of JIRA. For more details please consult logs.

MY JIRA and script runner versions are 

 

JIRA v6.1.6

Scripr Runner v. 2.1.16

 

My script is like below, please help me to find the cause.

 

import com.atlassian.jira.issue.CustomFieldManager;

import com.atlassian.jira.issue.fields.CustomField;

import com.atlassian.jira.component.ComponentAccessor;

 

 

CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager()

CustomField planned = customFieldManager.getCustomFieldObjectByName("Planned End Date");

CustomField actual = customFieldManager.getCustomFieldObjectByName("Actual End Date");

return issue.getCustomFieldValue(actual)  - issue.getCustomFieldValue(planned) ;

1 answer

0 votes
Guilherme Nogueira
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.
May 8, 2015

Hi, I just tested your code and It's working fine.

Maybe you need to change your field template?

Suggest an answer

Log in or Sign up to answer