On the Projects screen, I want to do some work when the Contract Total changes.


In the project editor, I generated the extension for the FieldUpdated event on this field. This is the signature that was created.
protected void PMProject_ProjectRevenueTotals.CuryAmount_FieldUpdated(PXCache cache, PXFieldUpdatedEventArgs e)
I moved this code from the project editor to my VS project. I got compiler errors. I changed the signature to:
protected void PMProject_ProjectRevenueTotals_CuryAmount_FieldUpdated(PXCache cache, PXFieldUpdatedEventArgs e)
It compiles and I get no errors on the screen.
However, when click Include CO, the value in the field changes to 12,500. I was hoping my extension would fire but it does not.
I set CommitChanges to true for the field but it still does not fire.
Any ideas on how I can trigger an event to fire when the value in the field changes?
