RecordNumber (RecordLockingConflict property): Difference between revisions
Jump to navigation
Jump to search
m (→Example) |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Template:RecordLockingConflict:RecordNumber subtitle}} | {{Template:RecordLockingConflict:RecordNumber subtitle}} | ||
This | This <var>[[Classes and Objects#readWrite|ReadOnly]]</var> property returns the numeric value of the <var class="product">Model 204</var> internal record number of the record that has the conflict. | ||
==Syntax== | ==Syntax== |
Revision as of 16:27, 5 May 2011
Record number of the record that has the conflict (RecordLockingConflict class) This ReadOnly property returns the numeric value of the Model 204 internal record number of the record that has the conflict.
Syntax
%number = recordLockingConflict:RecordNumber
Syntax terms
%number | A numeric variable to receive the record number. |
---|---|
recordLockingConflict | A reference to an instance of a RecordLockingConflict object. |
Example
-
The following example shows all the properties of the RecordLockingConflict class. While the standard record locking conflict information is available for retrieval via the User Language functions $rlcfile, $rlcrec, $rlcuid, and $rlcusr, that information is also set in the exception object and retrievable via that object:
%rlc is object RecordLockingConflict ... %rec = new(%recnum, none, loopLockStrength=share) ... try for record %rec ... end for catch recordLockingConflict to %rlc auditText Conflict on record {%rlc:recordNumber} - in file {%rlc:filename} auditText Conflicting user was userid {%rlc:userid}, - with user number:{%rlc:userNumber} end try