RecordIsUpdated (System function): Difference between revisions
mNo edit summary |
(Automatically generated page update) |
||
(19 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{Template:System:RecordIsUpdated subtitle}} | |||
The <var>RecordIsUpdated</var> shared function returns a <var>Boolean</var> value that indicates whether a record you specify (by file name and record number) has been updated in the current transaction. | |||
==Syntax== | |||
< | {{Template:System:RecordIsUpdated syntax}} | ||
RecordIsUpdated | |||
</ | ===Syntax terms=== | ||
<table class="syntaxTable"> | |||
<tr><th>%boolean</th> | |||
indicates whether a record you specify (by file name and record number) | <td>The <var>[[Boolean enumeration]]</var> value indicating whether the record has been updated. </td></tr> | ||
has been updated in the current transaction. | |||
<tr><th><var class="nobr">%(System)</var></th> | |||
<td>The class name in parentheses denotes a [[Notation conventions for methods#Shared methods|shared]] method.</td></tr> | |||
<tr><th>string</th> | |||
<td>A string that is the name of the file that contains the record whose update status you are querying.</td></tr> | |||
< | |||
< | <tr><th>number</th> | ||
< | <td>The number of the record whose update status you are querying.</td></tr> | ||
has been updated. | </table> | ||
< | ==Usage Notes== | ||
< | <ul><li><var>RecordIsUpdated</var> is available in <var class="product">[[Sirius Mods|Sirius Mods]]</var> Version 7.7 and later. | ||
< | |||
< | |||
update status you are querying. | |||
< | |||
< | |||
</ | |||
<ul> | |||
<li>[[ | |||
</ul> | </ul> | ||
== | |||
==Examples== | |||
The following request fragment sketches a record loop that reports to | The following request fragment sketches a record loop that reports to the audit trail if this will be the initial update in the transaction for the records that satisfy a particular condition: | ||
the audit trail if this will be the initial update in the transaction for the | |||
records that satisfy a particular condition: | |||
<p class="code"><nowiki>%recs is object recordset in file myfile | <p class="code"><nowiki>%recs is object recordset in file myfile | ||
%rec is object record in file myfile | %rec is object record in file myfile | ||
Line 46: | Line 33: | ||
for each record in %recs | for each record in %recs | ||
... | ... | ||
* if some condition is satisfied | |||
%rec = CurrentRecord | |||
if %(system):RecordIsUpdated($curfile, $currec) ne true then | if %(system):RecordIsUpdated($curfile, $currec) ne true then | ||
Audit 'First update of Record num: ' %rec:RecordNumber | Audit 'First update of Record num: ' %rec:RecordNumber | ||
end if | end if | ||
... | ... | ||
* perform record update | |||
end if | end if | ||
end for | end for | ||
</nowiki></p> | </nowiki></p> | ||
==See also== | |||
<ul> | |||
<li><var>[[CurrentRecordIsUpdated (System function)|CurrentRecordIsUpdated]]</var> reports whether the currently selected record has been updated within the current transaction. | |||
<li><var>[[IsUpdated (Record function)|IsUpdated]]</var> reports whether a record referenced by a <var>[[Record class|Record]]</var> object has been updated within the current transaction. | |||
</ul> | |||
{{Template:System:RecordIsUpdated footer}} |
Latest revision as of 00:26, 16 February 2014
Is the indicated record updated? (System class)
[Introduced in Sirius Mods 7.7]
The RecordIsUpdated shared function returns a Boolean value that indicates whether a record you specify (by file name and record number) has been updated in the current transaction.
Syntax
%boolean = %(System):RecordIsUpdated( string, number)
Syntax terms
%boolean | The Boolean enumeration value indicating whether the record has been updated. |
---|---|
%(System) | The class name in parentheses denotes a shared method. |
string | A string that is the name of the file that contains the record whose update status you are querying. |
number | The number of the record whose update status you are querying. |
Usage Notes
- RecordIsUpdated is available in Sirius Mods Version 7.7 and later.
Examples
The following request fragment sketches a record loop that reports to the audit trail if this will be the initial update in the transaction for the records that satisfy a particular condition:
%recs is object recordset in file myfile %rec is object record in file myfile fd to %recs end find for each record in %recs ... * if some condition is satisfied %rec = CurrentRecord if %(system):RecordIsUpdated($curfile, $currec) ne true then Audit 'First update of Record num: ' %rec:RecordNumber end if ... * perform record update end if end for
See also
- CurrentRecordIsUpdated reports whether the currently selected record has been updated within the current transaction.
- IsUpdated reports whether a record referenced by a Record object has been updated within the current transaction.