Links

duplicate

To create a duplicate of a given record
With this function, you create an exact duplicate of the record to which you apply this function. Also, linked data from sub-tables will be transferred.

Syntax

duplicate(nid)

Return

nid

Examples

1
duplicate(this)
Result: The current record—with all entries—is duplicated.
1
let newRecord := duplicate(this);
2
openRecord(newRecord)
Result: Creates a duplicate of the current record and opens it.

See also

Last modified 11mo ago