ISExternalProvider.FullName

Description

The full name of the provider of medical services who is external to the organisation.

Syntax

object.FullName

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

Return Value

string

Example

Display the full name of the provider of medical services who is external to the organisation.

Dim aExtProvider 
Dim aCode
Dim aMessage

aCode = "JT"
Set aExtProvider = Profile.LoadExternalProvider(aCode)

if aExtProvider.ID = 0 then 
  aMessage = "No external provider with the specified code" 
else
  aMessage = aMessage & vbNewLine & "The full name of the provider is " &_ 
    aExtProvider.FullName
end if
 
Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface Full Name can be found in Organisation > External Providers > Basic > General > Full Name field.

Version information

Added in v7.8.0