RecordNumber (RecordLockingConflict property): Difference between revisions
(Created page with " <span class="pageSubtitle"><section begin=dpl_desc/>Record number of the record that has the conflict<section end=dpl_desc/></span> [[Category:RecordLockingConflict methods|Reco...") |
m (1 revision) |
(No difference)
|
Revision as of 21:43, 16 January 2011
<section begin=dpl_desc/>Record number of the record that has the conflict<section end=dpl_desc/>
RecordNumber is a member of the RecordLockingConflict class.
Syntax
%num = %rlc:RecordNumber
Syntax terms
%num | A numeric variable to receive the record number. |
---|---|
%rlc | 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