Hi All, I am planning to generate a Dynamic ID Which increments by 1 for Every record. For first record its 1 and goes on for next record 2 and then 3 and so on.
Thanks for the reply. I know Request ID is the unique iD but i also need an other field which has the unique id and gets an Increment of 1 for every new record.
I have created a integer field for this purpose and a filter which increments every time when submitted but it always shows up 1 with it.
#139258 - 12/02/0712:08 AMRe: Generate a dynmice record id
[Re: satish143]
Matt Reinfeldt
Old Hand
Registered: 06/12/01
Posts: 1419
Loc: Madison, WI
Why don't you use the same idea of the arschema form? Try creating a data form with a schema (form) name field and an integer field to hold the last value used for that form. When you create a record in your form (let's call it form 'A' for now), get the current counter value from your new form, bump it up by 1, and push that value back to your counter form (the new one). This will allow you to use the same functionality across multiple forms, if you need to.
#139487 - 01/24/0812:44 PMRe: Generate a dynmice record id
[Re: dipti]
thwe
Stealth Member
Registered: 03/11/04
Posts: 188
Loc: Germany
GUID is the best option if it has not to be visible for users.
If you want create a ID based on Request ID use a filter on submit which does a push field on the form where the qualification is 'Request ID' = $Request ID$. You could set the id within the push field or trigger other workflow (filter) which sets the id.