0
Select from Choice Dynamic from button go to record in another table
let selectedDocument := 'Document Choice'; // Choice Dynamic
let rD := first(select Document where 'Document Name' = selectedDocument);
openRecord(rD)
The Choice Dynamic is in Dashboard and the another table is Document.
3 replies
-
Ready
-
FYI, if 'Document Choice' uses Document as the root table then you can use the record command to quickly get the same record and remove the select.
let rD := record(Document, number('Document Choice')); openRecord(rD)
Content aside
- Status Answered
- 2 wk agoLast active
- 3Replies
- 27Views
-
2
Following