Create A Unique Id For Each Document

Create a new Text field in your form. The field needs to be a Computed field,
using the formula below. There are a number of ways to do this, so note that
here we get the last number used for the document ID, add 1, and write it bacj
out to the enviromental variable. Within the document we put the users first
name in front of the number.
ENVIRONMENT UniqueID := @Text(@TextToNumber(@Environment("UniqueID")) + 1);
@Implode(@Left(@Explode(@UserName; " "); 1); "") + UniqueID

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.