Thanks for the reply.
Our version is "8.0.1.1502". Below is an example of what we get right now when we click the View SQL button on an Edit Table window. Using "Export User Objects..." does the same thing.
-- Create table
create table TT_CHARGE_TYPE
(
CHARGE_TYPE_ICODE NUMBER(2) not null,
CHARGE_TYPE VARCHAR2(50) not null,
CHARGE_DESC VARCHAR2(2000) not null,
CREATION_DATE TIMESTAMP(3) not null,
UPDATE_DATE TIMESTAMP(3) not null,
LAST_UPDATE_USER VARCHAR2(8) not null,
LAST_UPDATE_APPLICATION VARCHAR2(20) not null
)
We need to be able to configure PSD 9 to do the same.