0
creating linked records from table A to tables B and C question
Is it possible to do the following:
From table A (button) script the created of a new record in Table B (easy), then create a record in Table C that is linked to Table C
Table B is an "office hours" table
Table C is an appointments table
B:C :: 1:N
7 replies
-
can you post the code you that does Table B? we can use that to build the code for Table C.
-
You can try something like:
let t := this; let newB := create TableB; newB.TableA := t; let newC := create TableC; newC.TableB := newB
-
Fred, thank you for taking the time to answer questions. Your
answers are very helpful.
Content aside
- Status Answered
- 1 yr agoLast active
- 7Replies
- 105Views
-
3
Following