ISProvider.Qualifications

Description

The provider's qualifications.

Syntax

object.Qualifications

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

Return Value

string

Example

Display the provider's qualifications.

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

for each aProvider in aProviders
  aMessage = aMessage & vbNewLine & aProvider.FullName &_
    " / Qualifications: " & aProvider.Qualifications 
next
 
Profile.MsgBox (aMessage)  
Note:

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

Version information

Added in v7.11.0