ISProvider.Type_

Description

The type of the provider.

Category PPPU Type Concept Code
puctPractice = 1 putyPrimaryCare = 1 ichPrT_PrimaryCare = 'IH121'
puctPractice = 1 putySpecialist = 2 ichPrT_Specialist = 'IH122'
puctPractice = 1 putyAEClinic = 4 ichPrT_AEClinic = 'IH123'
puctPractice = 1 putyDental = 5 ichPrT_Dental = 'IH124'
puctPractice = 1 putyPhysiotherapy = 6 ichPrT_Physiotherapy = 'IH125'
puctPractice = 1 putyHospital = 7 ichPrT_Hospital = 'IH126'
puctPractice = 1 putyParamedical = 9 ichPrT_Paramedical = 'IH127'
puctPractice = 1 putyNonMedical = 10 ichPrT_NonMedical = 'IH128'
puctPractice = 1 putyOther = 12 ichPrT_Other = 'IH129'
puctProvider = 2 putyMedical = 1 ichPvT_Medical = 'IH019'
puctProvider = 2 putyParamedical = 9 ichPvT_Paramedical = 'IH020'
puctProvider = 2 putyAdministrative = 12 ichPvT_Administrative = 'IH021'
puctProvider = 2 putyGP = 11 ichGP = 'IH036'
puctProvider = 2 putyOther = 12 ichPvT_Other = 'IH022'
puctProvider = 2 putyHomeCareWorker =13 ichPvT_HomeCareWorker = 'zE.6S'
puctPOS = 3 putyPrimaryCare = 1 ichPsT_PrimaryCare = 'IH217'
puctPOS = 3 putySpecialist = 2 ichPsT_Specialist = 'IH218'
puctPOS = 3 putyAEClinic = 4 ichPsT_AEClinic = 'IH219'
puctPOS = 3 putyDental = 5 ichPsT_Dental = 'IH220'
puctPOS = 3 putyPhysiotherapy = 6 ichPsT_Physiotherapy = 'IH221'
puctPOS = 3 putyHospital = 7 ichPsT_Hospital = 'IH222'
puctPOS = 3 putyParamedical = 9 ichPsT_Paramedical = 'IH223'
puctPOS = 3 putyNonMedical = 10 ichPsT_NonMedical = 'IH224'
puctPOS = 3 putyOther = 12 ichPsT_Other = 'IH225'
puctPOS = 3 putyAdministration = 14 ichPsT_Administration = 'IH22A'
puctPOS = 3 putyClinical = 15 ichPsT_Clinical = 'IH22B'
puctPOS = 3 putyBilling = 16 ichPsT_Billing = 'IH550'
puctUser = 4, puctResource = 5 putyMedical = 1 ichUsT_Medical = 'IH130'
puctUser = 4, puctResource = 5 putyParamedical = 9 ichUsT_Paramedical = 'IH226'
puctUser = 4, puctResource = 5 putyAdministrative = 12 ichUsT_Administrative = 'IH131'
puctUser = 4, puctResource = 5 putyOther = 12 ichUsT_Other = 'IH194'

Syntax

object.Type_

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

Return Value

string

Example

Display some information about the provider, including the type of the provider.

Dim aFilter 
Dim aProviders
Dim aProvider
Dim aMessage

Set aFilter = Profile.CreateProvidersFilter

aFilter.Category = 2 'pcProvider  

set aProviders = Profile.LoadProvidersByFilter(aFilter)
aMessage = aMessage & vbNewLine &_
  "The number of the providers is " & aProviders.Count

aMessage = aMessage & vbNewLine &_
  "FullName:" & vbTab & "Type_:"
for each aProvider in aProviders 
  aMessage = aMessage & vbNewLine &_
    aProvider.FullName & vbTab &_
    aProvider.Type_
next

Profile.MsgBox (aMessage)  
Note: The property is obsolete. You should use ISProvider.TypeConcept. The mapping of the concept codes for provider's different categories is presented in the table above.

In Profile Client v8 on User Interface Type can be found in Organisation > People&Places > People and Places > Open the selected Provider > General > Type field.

Version information

Added in v7.8.0