So before SLAs where a thing, I used Resolution Date - Created Date as the resolution time. Now, since the Service Desk SLAs take on a +/- figure, would it be possible to take the SLA data and subtr...
This is my current script : <!-- @@Formula: if (issue.get("Dev - Actual Effort Hours") == 0 ) return 0; return (issue.get("Dev - Actual Effort Hours") / (issue.get("Dev - Actual E...
Hi Team, I had added "JIRA Misc Custom Fields plugin" in JIRA. Later I have added the " calculate number custom fields". When I have re-indexed JIRA, Those fields are missing post re-index. No...
hi i need to show a calculated field number field with one decimal. float result result = aux1 + aux2 +aux3+ aux4+ aux5; return result: but always shows me an integer number.
We have problems with Jira, our server administrator found the problem is caused by indexes problems. Please your help, I add the catalia log. Thanks!.
I have created a Calculated Number field with the following formula: <!-- @@Formula: (issue.get("customfield_11400") != null ? issue.get("customfield_11400") : 0) + (issue.get(“customfield_11...
The following calculated field script was written by another user and am not familiar with this scripting. I recently updated our test JIRA instance from 6.3 to 7.1 and I am trying to resolve a singl...
I have defined the formula in a Last Field Value Change Date/Time Field as: <!-- @@Field: fixVersions --> however, this is never populating. Is there something wrong in the syntax?...
Hi, I'm just basically trying to make a comparison out of 2 customfields that are from the same type. I'm using a Text Calculated CF from the MISC CF add-ons. It looks like this: <!-- @@Fo...
Hello, I'm using the "JIRA Misc Custom Fields" plugin for a few custom fields. I'm looking to create a custom field that gives me the time needed to resolve an issue. Following my logic, and using ...
Hello, Is it possible to retrieve the current value of a calculated text field from within the script itself? In my scenario I have a calculated text field whose value depends on the status of the ...
I'm using the following formula <!-- @@Formula: if (issue.get("customfield_17937").getTime() == null) return null; if (issue.get("customfield_17938").getTime() == null) return null; (issue.get...
My code is as follows : <!-- @@Formula: if (issue.get("customfield_13702")==null) return null; org.apache.commons.lang.time.DateUtils.addDays(issue.get("customfield_13702"),30) --> It is w...
Copied to clipboard