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:
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:
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.