Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When a new issue is created in Jira, the custom field values are not automatically populated by our application. However, this problem does not occur when updating existing Jira issues.

🧐 Cause

We receive notifications from Atlassian whenever an issue is created or updated, and we promptly act on these notifications to set the custom field values in the issues. A possible cause that the custom fields are not being updated only when you create an issue it can be that we are not getting informed by your instance when an issue is created. A cause of it can be that the workflow transition that is responsible for issue create is firing and Issue Create event is not in the post functions of this transition as shown in the screenshot.

Our application relies on receiving events from Atlassian whenever an issue is created or updated. We then promptly update the custom field values based on these events. The cause of the custom fields not being updated upon issue creation could be that our application is not receiving the necessary event from your Jira instance when an issue is created.

...

  1. Check the workflow transition responsible for issue creation.

  2. Ensure that the firing a Issue Create event is included in the post functions of this transition.

...

If the firing a Issue Create event is not present in the post functions, it needs to be added. This will ensure that our application receives the necessary event when an issue is created and can populate the custom field values accordingly.

...