Adding a Timestamp to a New Table for Browsing

When creating a new table for browsing, include a column named timestamp in the table definition.

The column is automatically assigned a datatype of timestamp; you do not have to specify its datatype.

For example:
create table newtable(col1 int, timestamp, col3 char(7))

Whenever you insert or update a row, the SAP ASE server timestamps it by automatically assigning a unique varbinary value to the timestamp column.