stop auto numbering before submitting record
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2023 06:57 AM
hi,
i have created child table "abc", where parent table is " Task". here, the number field gets incremented everytime, when clicked on new record button. However, i want the record to get increment only after submitting the record.
Please help me to achieve this.
Thanks
Neelufer

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2023 07:56 AM
Hi,
You have to do few configurations:
1. Open the dictionary of Number field and create dictionary override record for Number column:
2. Set table as your table and Check override Dictionary checkbox.
Save the dictionary override record.
3. Create before insert Business rule like below:
use below line in your Business Rule Script:
current.number = getNextObjNumberPadded();
Thanks
Anil Lande