Hi Herman Susilo
To hide the Auto Id field, click "Hidden?" property field.
To display the generated number later on in another form (and form is tied to the same db table), you can use a textfield (set to readonly) or a customHTML like "#form.mytable.runningNumberId#" to display.
The id generator plugin does these things:
1) create the field in db,
2) take the value from env variable, add 1 and store into db,
3) update env variable with the latest counter value.
Subsequent to this, you can use textfield or textarea to display this field value in your form. Just remember to set it as readonly to prevent user from changing the value.