Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Why in Listener event does not work "CustomFieldUpdatedEvent" ?

Alex
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.
February 6, 2024

Hi, everyone!

I don't understand why my code only works with the "Issue Updated" event, but not with the other "CustomFieldUpdatedEvent" event?

 

 

import com.atlassian.jira.event.type.EventDispatchOption
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.link.IssueLink;
import java.text.SimpleDateFormat
import java.util.Date
import java.time.temporal.ChronoUnit
import java.time.ZoneId
import static java.time.DayOfWeek.*

def change = event?.getChangeLog()?.getRelated("ChildChangeItem").find {it.field=="myCFname"}

if (change){

def issue = event.getIssue()

....//
....//

Any help is important thanks.

1 answer

1 accepted

0 votes
Answer accepted
Fabio Racobaldo _Herzum_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 13, 2024

Hi @Alex ,

for my knowledge CustomFieldUpdatedEvent is not an event that a listener can catch. You correctly need to use IssueUpdated and then use changelog to figure out if a specific field has been updated during that operation.

List<GenericValue> changedItems = event.getChangeLog().getRelated("ChildChangeItem");

Hope this helps,

Fabio

Suggest an answer

Log in or Sign up to answer