ISProvider.EdiAddress

Description

The practice EDI address.

Syntax

object.EdiAddress

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

Return Value

string

Example

Display the practice EDI address.

Dim aFilter 
Dim aProviders
Dim aProvider
Dim aMessage

Set aFilter = Profile.CreateProvidersFilter
aFilter.Category = 1 'pcPractice  
set aProviders = Profile.LoadProvidersByFilter(aFilter)

aMessage = aMessage & vbNewLine &_
  "The number of the providers with the category 'Practice' is " &_
  aProviders.Count

for each aProvider in aProviders
  aMessage = aMessage & vbNewLine & "The EDI Address for the practice '" &_
    aProvider.FullName & "' is " & aProvider.EdiAddress 
next
 
Profile.MsgBox (aMessage) 
Note:

In Profile Client v8 on User Interface EDI Address can be found in Organisation > People&Places > Organisational Structure > Edit Practice Node > Special > EDI Address field..

Version information

Added in v7.8.0