Posts

Showing posts from May, 2022

Gapless Sequence

Image
                                                  Gapless Sequence For this I have create new table in HR Make two columns as Ids and Names. Now create new application as hr connection   Create model part with table2 eo,vo,app module   In eo generate java classes as shows below   We have to write doDml statement in java class     ------------------- -----------------------------------------------------------------------------------------------------     protected void create(AttributeList attributeList) {         super.create(attributeList);         SequenceImpl se = new SequenceImpl("Final_SEQ",getDBTransaction());         this.setIds(se.getSequenceNumber());   ...