ISProvidersFilter.FullName

Description

This filter property is used to load the collection of providers with the specified full name.

Syntax

object.FullName

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

Return Value

string

Example

Display the number of the providers loaded on the basis of the selected filter, their codes and IDs.

Dim aFilter 
Dim aProviders
Dim aProvider
Dim aMessage

Set aFilter = Profile.CreateProvidersFilter

aFilter.FullName = "Veronica Eggins"

Set aProviders = Profile.LoadProvidersByFilter(aFilter)

aMessage = vbNewLine &_
  "The number of the providers with the specified full name (" &_
  aFilter.FullName  & ") is " & aProviders.Count
  
aMessage = aMessage & vbNewLine & vbNewLine &_
  "Full Name:" & vbTab & "ID:" & vbTab & "Code:"

for each aProvider in aProviders 
  aMessage = aMessage & vbNewLine &_
    aProvider.FullName & vbTab &_
    aProvider.ID & vbTab &_
    aProvider.Code 
next

Profile.MsgBox (aMessage)  
Note:

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

Version information

Added in v7.9.2