Click or drag to resize

ConneXionFindFinanceableTransactions Method

Finds the financeable transactions.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindFinanceableTransactions(
	ref GeneralTransTransaction FinTransaction
)

Parameters

FinTransaction
Type: ConneXionGeneralTransTransaction
The fin transaction.

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
  • EntityId
  • EntityType
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim ofin As New ConneXion.GeneralTrans.Transaction
Dim oResult As ConneXion.ConneXionResult
Dim ofin1 As New ConneXion.GeneralTrans.Transaction

ofin.TAMUserName = "EXEC"
ofin.TAMPassword = "PSWD"
ofin.EntityId = "REMCO-1"
ofin.EntityType = "C"

oResult = oConneXion.FindFinanceableTransactions(ofin)

If oResult.Success Then
    MessageBox.Show("Find Financeable Transactions was Successful.  " & oResult.Description & ".")
    dgrdResult.DataSource = ofin.Transactions
Else
    txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " & oResult.Description & vbCrLf & "TAMErrorNumber: " &
        oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
End If
See Also