The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

What is the correct way to reference duedate with SIL

Conor Crowley
March 23, 2014

I am trying to create a field which identifies the earliest due date for issues linked to a particular issue. So far it has worked for created dateswithout any issue but every way I try to reference the due date it fails

The code looks a bit like this

for(my_linked_issue_key in my_linked_issues_array){
    if (%my_linked_issue_key%.duedate <= dependentDue)
    {
        dependentDue = %my_linked_issue_key%.duedate;    
    }
}

return dependentDue;

If i replace %my_linked_issue_key%.duedate with %my_linked_issue_key%.created everything works fine but unfortunately I am not interested in created dates.

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Answer accepted
Silviu Burcea
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
March 26, 2014

Hi Conor,

Have you tried dueDate ? Here are the rest of the standard variables: http://confluence.kepler-rominfo.com/display/SIL/Variable+Resolution

Hope that helps,

Silviu

Conor Crowley
April 2, 2014

I have to admit I feel a bit foolish.

You are correct. I didnt try camel case. That link is really useful too, thank you