Field edit can be used to locally check
the syntactical errors made by end user( mostly). It can be used for complex checking operations too but rarely. Field Edit is fired each time the value of field is changed. So it can be used check errors on that particular field in that particular row.
Save edit is used to check the logical existence or invalid data inputs.It can be used for complex checking operations.
Example if a broker becomes ineffective after a particulate date, and if some calculations are done after that date, logic can be written in save edits to stop further processing and help the user identify another broker whose effective date is valid for the date specified.
Save edit is used to check the logical existence or invalid data inputs.It can be used for complex checking operations.
Example if a broker becomes ineffective after a particulate date, and if some calculations are done after that date, logic can be written in save edits to stop further processing and help the user identify another broker whose effective date is valid for the date specified.
Field Edit is used to validate the data in that single row and field alone. But, SaveEdit can be used to validate value in all the fields of the record as well as cross comparison with other rows.
FieldEit fires when user changes a value in a field whereas SaveEdit fires when user clicks on the save button.