You can also see your call number on the new blank form if you add the following rule to your object
If YourObject IS NEW AND YourObject.AccessionNo IS UNDEFINED
Then YourObject.AccessionNo=MAX YourObject.AccessionNo+1
If you change this rule to
If YourObject IS NEW AND YourObject.AccessionNo IS UNDEFINED
Then YourObject.AccessionNo=MAX2 (MAX YourObject.AccessionNo+1, 1000)
Then you start numbering your calls from 1001, or you can make it whatever you like. I found this approach useful for generating purchase order numbers when I configured a purchasing system.