ISProviderPOSInfo.PayeeID

Description

The provider's internal payee number within the organisation. This may vary from one POS to another.

Syntax

object.PayeeID

Part Attribute Type Description
object Required
The object always implements the ISProviderPOSInfo interface
Restriction: This property is readonly.

Return Value

string

Example

Display some information about the places of service the provider is a member of, including the provider's internal payee numbers within the organisations.

Dim aProvider
Dim aPOSList
Dim aPOS
Dim aProv
Dim aPOSInfo
Dim aRefSystem
Dim aMessage

Set aProvider = Profile.LoadProvider ("PROV")
set aPOSList = aProvider.MemberOfPOSInfos
aMessage = aProvider.FullName &_
  " has " & aPOSList.Count & " places of service" & vbNewLine

aMessage = aMessage & vbNewLine & "POS Info: " & vbNewLine   
for each aPOSInfo in aPOSList
  set aPOS = Profile.LoadProviderById(aPOSInfo.PosID)
  set aProv = Profile.LoadProviderById(aPOSInfo.ProviderId)
  set aRefSystem = aPOSInfo.ReferenceSystem
  aMessage = aMessage &_
   "-  POS Code: " & aPOS.Code & vbNewLine &_
   "    Provider Code: " & aProv.Code & vbNewLine &_
   "    Reference System: " & aRefSystem.Description & vbNewLine &_
   "    Reference System ID: " & aPOSInfo.ReferenceSystemID & vbNewLine &_
   "    Service ID: " & aPOSInfo.ServiceID & vbNewLine &_
   "    Payee ID: " & aPOSInfo.PayeeID & vbNewLine    
next 
Profile.MsgBox (aMessage)  
Note:

In Profile Client v8 on User Interface Payee ID can be found in Organisation > People&Places > People and Places > Open the selected Provider > Member Of > Edit place > Payee ID field.

Version information

Added in v7.10.40