Metrics for "Actual end date" (work_end) are not getting triggered once the parent Project is closedIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> <!-- table.tocTable { border-top-color: #393939; border-right-color: #393939; border-bottom-color: #393939; border-left-color: #393939; background-color: #1a1b1f; } table.noteTable { border-top-color: #393939; border-right-color: #393939; border-bottom-color: #393939; border-left-color: #393939; background-color: #1a1b1f; } table.internaltable th { border-top-color: #353535; border-right-color: #353535; border-bottom-color: #353535; border-left-color: #353535; background-color: #1a1b1f; } table.internaltable td { border-top-color: #393939; border-right-color: #393939; border-bottom-color: #393939; border-left-color: #393939; color: #e8e7e3; } .title { color: #e56268; } h1 { color: #e56268; } h2 { color: #c3bfb8; } h3 { color: #e8e7e3; text-decoration-color: initial; } h4 { color: #c3bfb8; } h5 { color: #e8e7e3; } h6 { color: #e8e7e3; } --> Symptoms Metrics for "Actual end date" (work_end) field are not firing when "Actual end date" field value is changed after the parent Project is closed Release Kingston Patch 9 Cause The metric is being set on the pm_project table, rather than on the pm_project_task table. This is the issue. Resolution To test the above, a metric was created in an OOB (Out of Box) Kingston instance for the "Actual end date" (work_end) field on the pm_project table. Both a Project and a child Project Task were then created.When the newly created Project Task was closed, a value was populated in the "Actual end date" field on the Project Task. This is expected. A "metric.update" entry was created in the Event Logs, as the parent Project was still open and active (it closed just after the child Project Task was closed).After the Project was closed (active = false), the value within the "Actual end date" field was manually changed to see if another "metric.update" entry would be created in the Event Logs. While the change did save to the Project Task and was reflected in the parent Project after a short delay, no "metric.update" entry was created in the Event Logs as the parent Project was active = false.This is expected behavior for the Platform. To properly create a metric for "Actual end date" which fires even if the parent Project is active = false, create the metric on pm_project_task rather than on pm_project. This will allow changes to the "Actual end date" field to fire the metric properly, and reporting can be done off of said metric.