Article Details
Id:12821
Product:finPOWER Connect
Type:NEW
Version:2.03.00
Opened:20/04/2015
Closed:20/04/2015
Released:09/07/2015
Job: J015310

Credit Enquiry; GreenId; Individual Results expanded to allow finding by Name

Using the finPOWER Connect Business layer it is now possible to check whether a GreenId Individual Results items exists by Name, and get the Individual Result item by Name.

A sample code snippet is shown below, to test for the Dun & Bradstreet Credit File Header result.

Dim DnBFound As Boolean
Dim DnBSuccess As Boolean

If ResponseBackgroundCheck.IndividualResults.ExistsName("Credit History") Then
  DnBFound = True
  If ResponseBackgroundCheck.IndividualResults.ItemByName("Credit History").IsVerified Then
    DnBSuccess = True
  Else
    DnBSuccess = False
  End If
Else
  DnBFound = False
  DnBSuccess = False
End If