You are on page 1of 1

To create a primary key using sequence in Oracle ADF while create operation.

We have the primary key for any table.


We open the EO of that table. Go to attribute tab. select Primary key ID and go to property.
Select the default value to be Expression . and put value as
(new
oracle.jbo.server.SequenceImpl(SEQUENCE_NUMBER,adf.object.getDBTransaction())).getSequenceNumber()
see the below screen shot

That it.. When you use create operation.Primary key will be generated automatically.
Happy Coding.

You might also like