ISClaim.Date

Description

The date and time of the claim.

Syntax

object.Date

Part Attribute Type Description
object Required
The object always implements the ISClaim interface

Return Value

DateTime

Example

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

Dim aFilter
Dim aClaims, aClaim
Dim aMessage
Dim i

Set aFilter = Profile.CreateClaimFilter
aFilter.DateFrom = #06/08/2018#
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 is " & vbTab &_
    aClaim.Date
next      

Profile.MsgBox(aMessage) 
Note:

In Profile Client v8 on User Interface Date can be found in Organisation > Control Centre > Financial > Billing > Details > Date > Time field.

Version information

Added in v7.8.0
return type changed from int to DateTime in v8.5.0