CurrentRecordIsUpdated (System function): Difference between revisions
m (1 revision) |
mNo edit summary |
||
Line 12: | Line 12: | ||
==Usage Notes== | ==Usage Notes== | ||
<ul> | <ul> | ||
<li><var>CurrentRecordIsUpdated</var> is available in <var class="product">[[Sirius Mods| | <li><var>CurrentRecordIsUpdated</var> is available in <var class="product">[[Sirius Mods|Sirius Mods]]</var> Version 7.7 and later. | ||
</ul> | </ul> | ||
==Example== | ==Example== | ||
The following request fragment sketches a record updating loop that reports to the audit trail if this is an initial update for each record in the transaction: | |||
<p class="code">%recs is object recordset in file myfile | <p class="code">%recs is object recordset in file myfile | ||
%rec is object record in file myfile | %rec is object record in file myfile | ||
Line 29: | Line 29: | ||
... | ... | ||
end for | end for | ||
</p | </p> | ||
==See also== | ==See also== |
Revision as of 01:35, 3 May 2011
Is the current record updated? (System class)
[Introduced in Sirius Mods 7.7]
The CurrentRecordIsUpdated is shared function which returns a Boolean value that indicates whether the current record in the current record-oriented loop has been updated in the current transaction.
Syntax
%boolean = %(System):CurrentRecordIsUpdated
Syntax terms
%boolean | A Boolean enumeration value indicating whether the current record has been updated. For more information about these enumerations, see "Using Boolean enumerations". |
---|---|
%(System) | The class name in parentheses denotes a shared method. |
Usage Notes
- CurrentRecordIsUpdated is available in Sirius Mods Version 7.7 and later.
Example
The following request fragment sketches a record updating loop that reports to the audit trail if this is an initial update for each record in the transaction:
%recs is object recordset in file myfile %rec is object record in file myfile fd to %recs end find for each record in %recs %rec = CurrentRecord if %(system):currentRecordIsUpdated ne true then audit 'First update of Record num: ' %rec:RecordNumber end if ... end for
See also
- RecordIsUpdated reports whether a record you identify by filename and record number has been updated within the current transaction.