You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Team ,
I am trying to write a script for a field behavior in JIRA. As part of which I am trying to fetch the Summary ( system field ) value from a JIRA ticket. But as result the value in log shows a Null value for Summary.
I tried using below but know luck.
-- FormField ExtractType = getFieldById("summary")
-- FormField ExtractType = getFieldByName("summary")
Can someone help me to show how to get values of a summary field.
Thanks.
It's:
getFieldById("summary"
or
getFieldByName("Summary")
Once you have the field, you call getFormValue() on it to get the actual summary. On which field have you attached this script?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Summary is the name of the system summary field. Do you have a a custom field called Summary?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No we don't have any Summary custom field. We are using Summary system field only.
We even tried this with other system fields but getting the same error - Null value
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Moin, or Jamie - did anything ever come of this question?
I believe I am having the same problem, my code is as so:
import com.atlassian.jira.component.ComponentAccessor
def summary = getFieldById("summary")
summary.setHelpText ("Summary is: "+getFieldByName("Summary").getFormValue())
I have tried a range of syntax:
getFieldByName("Summary").getFormValue()
getFieldById("summary").getFormValue()
getFieldByName("Summary").getValue()
getFieldById("summary").getValue()
Unfortunately in all cases my help text simply states the summary is Null, even when editing a ticket which has a summary set.
Any help would be greatly appreciated
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.
You can get summary like this;
underlyingIssue?.summary
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The manager’s daily activities include a list of challenges to reach high levels of efficiency for their teams. Part of these challenges is related to how to deal with the worklog systems sin...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.