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 BooleanDim DnBSuccess As BooleanIf ResponseBackgroundCheck.IndividualResults.ExistsName("Credit History") ThenDnBFound = TrueIf ResponseBackgroundCheck.IndividualResults.ItemByName("Credit History").IsVerified ThenDnBSuccess = TrueElseDnBSuccess = FalseEnd IfElseDnBFound = FalseDnBSuccess = FalseEnd If