ISClaim.ID

Description

ID of the claim.

Syntax

object.ID

Part Attribute Type Description
object Required
The object always implements the ISClaim interface
Restriction: This property is readonly.

Return Value

int

Example

Display the number of the claims loaded on the basis of the selected filter, their dates, time and IDs.

Dim aFilter
Dim aClaims, aClaim
Dim aMessage
Dim i

Set aFilter = Profile.CreateClaimFilter
aFilter.DateFrom = #06/08/2017#
set aClaims = Profile.LoadClaims(aFilter)   

aMessage = "Claims Count = " & aClaims.Count
for i = 0 to aClaims.Count - 1
  set aClaim = aClaims.Item(i)
  aMessage = aMessage & vbNewLine & "Date/Time of the claim with ID " &_
    aClaim.Id & " is " & vbTab & aClaim.Date
next      

Profile.MsgBox(aMessage) 
Note:

In Profile Client v8 on User Interface Claim ID can be found in Report > Find Objects > Quote > ID.

Version information

Added in v7.8.0