The 'Short Description' field from the release parent is not populating the 'Project Name' field

CarolMa6
Tera Expert

Hi, 

 

I'm trying to configure the 'Short Description' field from the release parent to populate the 'Project Name' field in related tasks. However, the current business rule is incorrectly updating the related tasks using the 'Description' field from the related phase task instead of the release parent.

 

table: rm_task

when: display

script: 

(function executeRule(current, previous /*null when async*/ ) {

    current.u_project_name = current.parent.short_description;

})(current, previous);

 

Regards 

CarolMa