Cancelling Change Request closes project task link but does not close parent project taskDescriptionWhen attaching a Change Request to a Project Task via the related link Create Change and link from Project Task, a Project Task Link record, as well as a Change Request record are created. The Project Task link acts as a bridge and is updated by updates to the Change Request. These changes will ultimately update the Project Task. (Project Task > Project Task Link > Change Request). If a Change Request is completed, both the Project Task Link and the Project Task will be set to closed complete. For users who Cancel the Change Request, the Project Task Link as being set to Closed Incomplete, but the Project Task itself was remaining in a state of Pending.Steps to Reproduce Create a ProjectCreate a Project TaskCreate Change and link from Project TaskSet created Change Request Planned start/end datesAccess, Approve > ScheduledOnce Change Request is approved and in the scheduled state, right-click in the grey header and select 'Cancel Change' Project task link will close and set to active=false with actuals not populating, however, Project task (parent) will remain in pending) WorkaroundNavigate to System Definition > Script IncludesOpen ProjectTaskLinkUtilsIn the Script field, locate line 23, which is: var util = new PlannedTaskStateUtil();Update code to the after value below before: var util = new PlannedTaskStateUtil();after: var util = new PlannedTaskStateUtil(link); Related Problem: PRB1390619