ISProvider.NPICode

Description

The NPI code of the provider.

Syntax

object.NPICode

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

Return Value

string

Example

Display the provider's NPI code.

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 of the specified category is " &_
  aProviders.Count

for each aProvider in aProviders
  aMessage = aMessage & vbNewLine & "The NPI code for '" &_
    aProvider.FullName & "' is " & aProvider.NPICode 
next
 
Profile.MsgBox (aMessage)  
Note:

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

Version information

Added in v7.9.2