I added a custom business class in landmark v11. Is it possible on create record to populate a field with an auto sequence? It looks like the LPL documentation says maybe. See snipit below. How do I implement this? Are there other ways to do this through a default value or a "get sequence" button click? Thank you for any information even if it is "that's impossible!"
FieldCreateRule ::= // valid in Field context with Create action
autosequence [using ( | )]
[minimize contention [and gaps]]
// if no field specified find last instance in context and increment by 1 – field must be either symbolic or relative key
// if SetName specified then find last instance using SetName – SetName must contain this field
// if RelatedField specified then increment RelatedField by 1 and use that value
// minimize contention is not valid with a RelatedField –this option can result in gaps in the numerical sequence
// typically ‘minimize contention’ will retrieve a block of numbers, when gaps are minimized as well, it retrieves one at a time