I'm trying to get a value of a custom field, but this CF is a Scripted Field, I try to get the value on the next way
log.debug('Starting...')
def assigneeManagerCF = customFieldManager.getCustomFieldObject("customfield_20083")
log.debug(assigneeManagerCF)
x = assigneeManagerCF.getValue(issue)
log.debug(x)
log.debug('End')
And this is my output:
Starting...
Days in Triage
<NOTHING>
As mentioned, this is a Scripted Field, and it should show a number.
Any ideas?
Where is this code running?
Hi Nic,
It's running on server, I'm trying that code in Console.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How are you getting the issue object? Are you sure that issue has a value for the custom field?
Also, your output bears no relation to the script, could we see the actual output?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nic,
This is how I'm getting the object:
def assigneeManagerCF = customFieldManager.getCustomFieldObject("customfield_20083")
x = assigneeManagerCF.getValue(issue)
And then trying to get the value with the variable 'x'.
I'm sure that the field has a value, after all the calculation the output is a number.
"Also, your output bears no relation to the script, could we see the actual output?"
I set it as <NOTHING> because that's the end of the output, even when I'm trying to debug an 'End' message, it is not being printed, so I think that the x = ... line is breaking the script but I don't understand why.
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.