0
creating a linked record in a subtable within a script
I want to create a record in a subtable from within a script.
When I use let I := create 'subtable name', it creates a record, but it is not linked to the parent table.
How do I link the new record to the parent table?
1 reply
-
Try this:
let me := this;
let i := create subtable;
i.(ParentTable := me)
Content aside
- 2 yrs agoLast active
- 1Replies
- 113Views
-
2
Following