Hi all,
I have one issue that I couldn't solve it.
I have to make possible for user to change only one field in vendor card if the status is released.
What I did until now is that:
Table Vendor/ OnModify trigger:
IF xRec.FIELD = Rec.FIELD THEN
TESTFIELD(Record Status,Record Status::Open);
(That's mean that if this field is not changed then the testfield to be executed.)
Page Vendo Card/FIELD - OnValidate trigger:
CurrPage.Update();
By using this solution if the user before will change other fields and in the end will change the FIELD then all changes will be saved.
Can you help me with any solution?