To set a number sequence you have to first create the a number sequence and in the initValue() method of the table initialize the value of the particular field to the next available number from the number sequence you created.
example:
NumberSeq numSeq;
;
numSeq = NumberSeq::newGetNumFromCode(the num seq you created);
table.field = numSeq.num();
Comments
To set a number sequence you have to first create the a number sequence and in the initValue() method of the table initialize the value of the particular field to the next available number from the number sequence you created.
example:
NumberSeq numSeq;
;
numSeq = NumberSeq::newGetNumFromCode(the num seq you created);
table.field = numSeq.num();
Regards