|
||||
|
||||
Just follow these steps:
- Create a field called "DocNumber" on the form.
- Make this field a "computed when composed" field.
- Create a view (it may be hidden), "(DocNumber)" based on the created form.
- This view should have "DocNumber" as the first sorted descending column.
- Write the Formula language code below in the value for the computed field called "DocNumber."
calc := @TextToNumber(@Word
(@Implode(@Text(@DbColumn
("Notes" : "NoCache"; ""; "(DocNumber)"; 1))); " "; 1))
+ 1; @If(@IsNewDoc;@If(@IsError(calc); "0000"+"1";
@If(@Length(@Text(calc))=1;"0000"+@Text
(calc);@Length(@Text(calc))=2;"000"+
@Text(calc);@Length(@Text(calc))=3;"00"+
@Text(calc);@Text(calc))); DocNumber)
Here's a shorter version of the code, which accomplishes the same thing:
calc := @TextToNumber(@Word
(@Implode(@Text(@DbColumn
("Notes" : "NoCache"; ""; "(DocNumber)"; 1))); " "; 1))
+ 1; @If(@IsNewDoc;@If(@IsError(calc); "00001";
@right("00000" + @text(calc),5)); DocNumber)
Deb L.
******************************************
Here is a LISP programming language based way to do the same thing:
Count:=125; NumberList:=0:1:2:3:4:5:6:7:8:9; NumberBase:=10; NL:=@Text(@Subset (NumberList;NumberBase)); @Subset(NL*+NL*+NL;Count);
Eric M.
******************************************
Instead of checking the length of the sequence number, try this:
@Right("0000"+@Text(calc); 5)
Gopinath P.
******************************************
Here is simplified version to make the same computation into the field "DocNumber":
calc := @TextToNumber(@Max
(@DbColumn("Notes" : "NoCache";
""; "(DocNumber)"; 1)))+1;
calc := @If(@IsError(calc); 1;calc);
@Right("00000" +@Text(calc);5)
Kari P.
******************************************
How about using the following?
calc := @Word(@Implode(@Text
(@DbColumn("Notes" : "NoCache";
""; "(DocNumber)"; 1))); " "; 1) + 1;
pad := 10;
@Repeat( "0"; pad - @Length(calc) ) + calc
Richard E.
Do you have comments on this tip? Let us know.
This tip was submitted to the SearchDomino.com tip library by member Mohammed Misbahuddin. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes, Domino, Workplace or WebSphere tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.
This was first published in May 2007