I'm try to lock all the fields when the status of the CR is transitioned to CLOSED.
I'm using Automation rule to update the Actual End date, but it fails with the below details.
I think I know what this is, but I do not want to bore you with it until I am sure.
Can you confirm:
As a user, can you go into an issue in a status before Closed, and
Thanks Nic for your response.
I see the actual end (EMPTY) in the Issue screen before "CLOSED" status. I have put an automation that if transitioned from "COMPELTED" to "CLOSED" then Actual End date is populated. if I set the jira property jira.issue.editable=false, then it fails and the Actual End Date disappears from the Issue Screen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I understand what you are doing.
I need you to tell me what is actually happening, step by step, as I asked before.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Step 1 : Transitioning from "Awaiting implementation" to Implementing ->
Actual Start gets update to now() by the Jira Automation. jira.issue.editable is not set here. All good here. Actual Start (Has a value) & Actual End (null) visible on the Issue screen.
Step 2 : Transitioning from "Implementing " to Completed ->
Note : jira.issue.editable is set to false. Automation is in place to update the Actual End date.
Actual Start has a value and Actual End date disappears from the Issue Screen. While checking the Audit log, I found the above error.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I thought this was the case.
Your automation is trying to edit an uneditable issue. Automations happen after transitions, so your Automation is trying to update an issue in "completed (and hence un-editable)" state.
You either need to provide an exemption to the "cannot edit in this status" workflow property, or move the automation into a post-function so that it updates the data during the transition, before the issue becomes uneditable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can u help me with the "cannot edit in this status" workflow property, that can be used as an exemption.
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.