The field Original Estimate is made as Mandatory using the Validator at the Create Issue Work Flow action - But even after the values are entered in that field it is still saying orginal estimate is required
instead of making the original estimate as mandatory, We made the entire time tracking field as mandatory and wrote a post function to copy the original estimate into remaining estimate by default while creating the issue to avoid the above
Thanks for the response. My only concern with this is that we have a lot of active projects in the company and I'm concerned that changing a field to be required might affect other projects that use Time Tracking. I'll give that a go and see if I get any angry phone calls from my colleagues!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had to create a separate field configuration for the specific issue types that require Time Tracking (as we have several issue types used on the same database), but it worked! I didn't need the post functions - as soon as I added Time Tracking as a required field then the Original Estimate field on my issue creation form was marked as required and seemed to process correctly once a value was entered for Original Estimate.
Thanks you both for your help. I'm not sure how to award you some extra Karma, but you deserve it!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can accept saravanan's answer and that would give them karma. I converted my comment to an answer in case you want to accept it, but saravanan's gave more information (mine was just more of a follow-up on your comment). :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just make sure that the field configuration scheme you use is only associated with your project and you won't affect anyone else's. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How do you reference original estimate in simple validation script to ensure it is required based on a specific issue type on create issue. tried the following code:
if (issue.issueTypeObject.name == "Task"){ breturn = true; if(cfValues['Original Estimate'] != null && !cfValues['Original Estimate'].equals("")){ breturn = true; } else { breturn = false; } return breturn; } else { return true; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Using Jira 5.2 ---- Should the field be timetracking instead of Original Estimate?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes - time tracking consists of original estimate , remaining estimate etc - i made the entire time tracking field as mandatory to avoid the issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not able to make it a mandatory field due to other issue types not requiring it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
create a seperate work flow and field configuration scheme for the issue type that requires it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In your case you could still set "0m" as a 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.
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.