standard. When a record is saved, the constraint stores the record ID of the related Standard record — and from that point on you can traverse the relationship using the constraint name, its reference, or the parent Standard’s reference.
Defining a Standard Constraint
Use thestandard type and prepend the target Standard’s reference with @ to declare a relationship:
truck.stds
owner is a constraint that holds a reference to a PER (person) record. The constraint reference OWNR and the Standard reference @PER both give you ways to access the related record.
Traversing Related Records
Once atruck record is saved, you can navigate to the linked owner record using the constraint name, the constraint reference, or the parent Standard’s reference — all three are equivalent:
truck_example.std
When you access a Standard-type constraint, the system resolves the stored record ID and returns the full related record, making deeply nested traversals like
foundTruck.OWNR.FNAME straightforward and readable.Disambiguating Multiple Constraints of the Same Standard
If your Standard references the same parent Standard in more than one constraint, accessing the related record by the parent Standard’s reference alone is ambiguous. In that case, the system always resolves to the first constraint that uses that Standard. To target a specific constraint, use the constraint name or its reference directly:truck_example2.std