GetUniqueEntryID
This method returns other column values for the specified pool entry.
Note: The Remote Matching Service and alphanumeric indexes do not support this method. For these,
use the
UniqueID
property as demonstrated in the sample code below. Syntax
GetUniqueEntryId (IdHigh as Long, IdLow as Long)
Parameter | Description |
---|---|
IdHigh | [out] Upper part of the 64-bit unique ID. |
IdLow | [out] Lower part of the 64-bit unique ID. |
Sample Code
Public Function GetASSAInfo (pworkdoc as SCBCdrPROJLib.SCBCdrWorkdoc, cand as SCBCdrWkDocLib.SCBCdrCandidate) as String
'Function input: Workdoc, ASSA Candidate
Dim lNumericIdHigh as Long
Dim lNumericIdLow as Long
GetASSAInfo=""
If cand.IsIDAlphNum = True Then
GetASSAInfo = cand.UniqueID
Else
GetASSAInfo = Cand.GetUniqueEntryID(lNumericIDhigh, lnumericIdLow)
End If
End Function