When you define a view, SAP ASE verifies that all the tables or views listed in the from clause exist. Similar checks are performed when you query through the view.
Between the time a view is defined and the time it is used in a statement, things can change. For example, one or more of the tables or views listed in the from clause of the view definition may have been dropped. Or one or more of the columns listed in the select clause of the view definition may have been renamed.
All the tables, views, and columns from which the view was derived still exist.
The datatype of each column on which a view column depends has not been changed to an incompatible type.
If the statement is an update, insert, or delete, it does not violate the restrictions on modifying views.
If any of these checks fails, SAP ASE issues an error message.