Click or drag to resize

ConneXionFindClaimNotesForCustomer Method

Used to Find the claim notes for customer.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindClaimNotesForCustomer(
	ClaimNote ClaimNote,
	ref ClaimNote[] ClaimNotes
)

Parameters

ClaimNote
Type: ConneXionClaimNote
Claimnote object to Find
ClaimNotes
Type: ConneXionClaimNote
List of claimnotes.

Return Value

Type: ConneXionResult
ConneXionResult.
Remarks

Required Fields

  • TAMUserName
  • TAMPassword
  • TAMCentralAgency - only if agency is on AppliedOnline
  • LicenseKey - only if agency is an Agency of Vendor
  • PolicyIndex
  • ClaimRec
Examples
VB
Dim oConneXionClaimNote As New ConneXion.ConneXion
Dim oClaimNote As New ConneXion.ClaimNote
Dim oClaimNotes() As ConneXion.ClaimNote
Dim oResult As ConneXion.ConneXionResult

oClaimNote.TAMUserName = "EXEC"
oClaimNote.TAMPassword = "PSWD"
oClaimNote.PolicyIndex = "ABBOJO1-1"
oClaimNote.ClaimRec = "000030"

oResult = oConneXionClaimNote.FindClaimNotesForCustomer(oClaimNote, oClaimNotes)

If oResult.Success Then
    txtResult.Text = oResult.Description
Else
    txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " & oResult.Description & vbCrLf & "TAMErrorNumber: " &
     oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
End If
See Also