ISProvider.PosBPayReference

Description

The B-Pay code for the place of service.

Syntax

object.PosBPayReference

Part Attribute Type Description
object Required
The object always implements the ISProvider interface

Return Value

string

Example

Display the B-Pay code for the place of service.

Dim aFilter 
Dim aProviders
Dim aProvider
Dim aMessage

Set aFilter = Profile.CreateProvidersFilter
aFilter.Category = 3 'pcPOS  
set aProviders = Profile.LoadProvidersByFilter(aFilter)

aMessage = aMessage & vbNewLine &_
  "The number of the providers is " & aProviders.Count

aMessage = aMessage & vbNewLine &_
  "Full Name:" & vbTab & "Bill Pay Code:"  

for each aProvider in aProviders
  aMessage = aMessage & vbNewLine &_
    aProvider.FullName & vbTab &_
    aProvider.PosBPayReference
next
 
Profile.MsgBox (aMessage)  
Note: This field is relevant only for Australia.

In Profile Client v8 on User Interface Bill Pay Code can be found in Organisation > People&Places > People and Places > Open the selected POS > Financial > Bill Pay Code field.

Version information

Added in v7.8.0