It's all about the answers!

Ask a question

How to extract Iteration Start Date and End Date along with Iteration Name and put them as 3 different values in RTC Customized Work Item


PRASANTA CHAUDHURI (11031925) | asked Jan 02 '15, 9:30 a.m.
How to extract Iteration Start Date and End Date along with Iteration Name and put them as 3 different values in RTC Customized Work Item
Explanation ::
---------------

Iteration Name                 Iteration Start Date         Iteration End Date

---------------------                             --------------------------     -------------------------

Iteration 1                           08/20/2014                         09/19/2014

Iteration 2                           09/20/2014                         10/25/2014

Iteration 3                           10/26/2014                         11/20/2014

Where "Iteration Name", "Iteration Start Date" and "Iteration End Date" are the Customized Attribute in Customized WorkItem Type say "Iteration_Information"

Request to help me with code and how to do it

Thanks

PKC

Prasanta Kumar Chaudhuri

One answer



permanent link
sam detweiler (12.5k6195201) | answered Jan 02 '15, 9:42 a.m.
because the Jazz runtime doesn't provide javascript support for interrogating iteration contents
see https://jazz.net/wiki/bin/view/Main/AttributeCustomization,
you will have to write a server side extension..see https://jazz.net/library/article/1000

download the javadoc (from the rtc product download page) and look at the Project and DevelopmentLines objects

for (IDevelopmentLineHandle dlh : Project_area.getDevelopmentLines())
{
}


Your answer


Register or to post your answer.