Hi NikkiFrom the Business Object Events Overview in the documents:-
The ErrorSaving event is raised only when an exception occurs on the server while executing a Save operation. The exception displayed here originates from the server and provides the developer with detailed information as to why the query or save operation failed. This is extremely beneficial to the developer, especially when initially programming the business objects. Since the detailed error that occurred on the server is brought all the way to the form level, this releases the developer from step-by-step debug sessions to determine why the query failed. By default, a StrataFrame form will automatically display any save errors to the end-user. To prevent this message from being displayed to the end-user, the AutoShowSavingErrors property on the form must be set to False.
So, you can test and handle the ErrorSaving event and surpress the big-bad error by setting the AutoShowSavingErrors property to false.
HTH
-=Gary