ISRxPreparation.IdentificationNumber

Description

The identification number of the Rx preparation.

Syntax

object.IdentificationNumber

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

Return Value

string

Example

Display some information about the Rx preparations loaded on the basis of the selected filter, including their identification numbers.

Dim aFilter
Dim aRxCollection
Dim aRxPreparation
Dim i
Dim aMessage

Set aFilter = Profile.CreateRxFilter
aFilter.RxName = "Pentasa"
aFilter.IncludePreparations = True
aFilter.IncludePackages = False
aFilter.IncludeGroups = False
aFilter.IncludeChemicals = False
aFilter.RxNameSearchMode = 1 'rnsmStartsWith
set aRxCollection = Profile.LoadRxCollection(aFilter)

aMessage = "Rx Preparations Count = " & aRxCollection.Count &_
  vbNewLine & vbNewLine & "#  Identif. Number" & vbTab & vbTab & "As String"

for i = 0 to aRxCollection.Count - 1
  set aRxPreparation = aRxCollection.Item(i)
  aMessage = aMessage & vbNewLine & (i + 1) & ")  " &_
    aRxPreparation.IdentificationNumber & vbTab & vbTab &_
    aRxPreparation.AsString  
next      

Profile.MsgBox(aMessage)    
Note: This property is specific for Canada.

In Profile Client v8 on User Interface Identification Number can be found in Maintain > Formulary > Rx > Show Information Panel > DIN, in Clinical > Medical Record > New Encounter > Scripts > Rx > Show Information Panel > DIN or in Clinical > New Encounter > Scripts > Rx > Show Information Panel > DIN.

Version information

Added in v8.4.13