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

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 Leaders.
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

Suggest an answer

Log in or Sign up to answer