Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Issue with script based calculated value in RTC 3.0.1.3.

I have created three new attributes of type "Duration" --  "QA Estimate", "Dev Estimate" and "Total Estimate". The "Total Estimate" attribute uses calculated value from the script TimeEstCalc.js and has dependencies on "QA Estimate" and "Dev Estimate" attributes.

Here is the TimeEstCalc.js script:

dojo.provide("com.example.common.TimeEstCalc");

 

(function() {

    dojo.declare("com.example.common.TimeEstCalc", null, {

 

        getValue: function(attribute, workItem, configuration) {

 

                                             return workItem.getValue("devEstimate") + workItem.getValue("qaEstimate");

 

        }

    });

})();

After I enter values into "QA Estimate" and "Dev Estimate" fields in the newly created work item, and trying to save the work item, I get the error:

The value of attribute 'Total Estimate' is not valid. Enter a valid duration (w = weeks, d = days, h = hours, m = minutes).

So looks like the "Total Estimate" attribute expects values to be entered instead of returning the calculated value based on the script.

I have script execution enabled in teamserver.properties.

Not sure what I am doing wrong.

Anatoliy

0 votes



2 answers

Permanent link
Hi Anatoliy,

I found this article that has a section on calculated values:  https://jazz.net/library/article/1003/#calc-values .  In their example, their return statement includes strings representing days, hours, and minutes:
return days +" d, "+  hours +" hr, "+ minutes  +" min";
I'm wondering if adding those strings to your return statement would fix your problem.

0 votes


Permanent link
Hi Lauren, thank you -- I will look into that. Looks like I created a double post -- I received another answer from Brian Fleming. Is there a way to remove one of the posts ?

0 votes

Comments

Hi Anatoliy,
You should be able to close one of your questions by clicking the "close" option above your name in your original question.

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,941

Question asked: Nov 29 '12, 3:11 p.m.

Question was seen: 4,438 times

Last updated: Nov 30 '12, 12:43 p.m.

Confirmation Cancel Confirm