I've seen talk of setting post functions etc., but my understanding is that these can't be created in OnDemand. There also seem to be some JIRA-xxx issues where this is flagged as fixed but I don't see a way to do this.
Thanks.
Actually, you can modify the workflows to use the out of the box post functions even on onDemand. There is a post function to update the issue field and you can use that function to set the remaining estimate to 0.
You cannot edit an active workflow. Checkout http://confluence.atlassian.com/display/JIRA/Configuring+Workflow#ConfiguringWorkflow-Editinganactiveworkflow on how to do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How do I add post functions. I went to the workflow administration, clicked on the transition name and then on the Post Functions tab, but there is no create option
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there any impact on the burndown chart?
If yes then what?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please add information on how did you solve this, as I'm still struggling on figuring out which action I need to choose. If I choose "Log work" then I would like to log all the work that's required to set remaining time to 0, but there does not seem to be a way to get time remainig.
If I choose "Edit field" action, then again, I cant seem to find time remaining field on the list I can set.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I finally figured it out
I needed to write custom json.
At the step "Then:" where i need to specify action, i added "Edit field" and under "Additional Fields" text area pasted this
{
"fields": {
"timetracking": {
"remainingEstimate": "0"
}
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just an FYI that will also clear out original estimate.
Try:
{
"fields": {
"timetracking": {
"remainingEstimate": "0",
"originalEstimate": "{{issue.timetracking.originalEstimate}}"
}
}
}
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.