LoadChangedRecords (XmlDoc subroutine)
Load ChangedRecords into this XmlDoc (XmlDoc class)
[Introduced in Model 204 7.8 βeta]
This subroutine adds to an XmlDoc object a subtree that contains all record numbers that were changed within the current transaction.
Syntax
doc:LoadChangedRecords[( [Fields= boolean])]
Syntax terms
doc | XmlDoc object |
---|---|
Fields | Boolean value If TRUE is specified, the fields from the changed record will be included within the subtree. |
Usage notes
Examples
As a simple example,
FRN %x change bar to ("BAR" %x) end for %doc = new %doc:loadChangedRecords(Fields=true) %doc:print
The XmlDoc would have a structure similar to the following:
<ChangedRecords> <Record version="version#" file="file" number="%x"> <field ...> ... first field from record %x </field> ... </Record> </ChangedRecords>