Click or drag to resize

ConneXionUpdateClaimNote Method

Used to Update the claim note.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult UpdateClaimNote(
	ClaimNote ClaimNote
)

Parameters

ClaimNote
Type: ConneXionClaimNote
Claimnote object to Update

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
  • RecordNumber
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim oClaimNote As New ConneXion.ClaimNote
Dim oResult As ConneXion.ConneXionResult

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

oResult = oConneXion.FindClaimNote(oClaimNote)

If oResult.Success Then
    oClaimNote.TAMUserName = "EXEC"
    oClaimNote.TAMPassword = "PSWD"
    oClaimNote.Note = "Update to original note"

    oResult = oConneXion.UpdateClaimNote(oClaimNote)

    If oResult.Success Then
        MessageBox.Show("Update Claim Note is Successful")
    Else
        txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " & oResult.Description & vbCrLf &
            "TAMErrorNumber: " & oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
    End If
Else
    MessageBox.Show("Find Claim Note is False")
End If
See Also