How to check if a field has been modified

I want to check if any fields in the Sales Order(Sales Header and Sales Line) have been modified.

How to do that without writing the same code/call a function in all fields? Is there a simple way to do that without writing the same code repeatedly in all of those fields for the two tables?

Answers

  • bbrownbbrown Member Posts: 3,268
    Change Log?
    There are no bugs - only undocumented features.
  • JJMcJJMc Member Posts: 59
    You do this to know if "any" field has been modified:

    AnyFieldModified := Format(Rec) <> Format(xRec);
Sign In or Register to comment.