ISRxMedication.ItemOrderNumber

Description

The item order number of the Rx medication.

Syntax

object.ItemOrderNumber

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

Return Value

string

Example

Display the short information about the loaded Rx medication, including its item order number.

Dim aRxMedication
Dim aRxMedicationInfo  
 
Set aRxMedication = Profile.LoadRxMedication(2068)

if aRxMedication is nothing then 
  Profile.MsgBox("There is no Rx Medication with the specified ID")
  exit sub
end if

aRxMedicationInfo = _
  "Rx name: " & aRxMedication.RxName & vbNewLine &_
  "Date: " & aRxMedication.Date & vbNewLine &_
  "Ordered date: " & aRxMedication.OrderedDate & vbNewLine &_  
  "GUID: " & aRxMedication.GUID & vbNewLine &_
  "Item Order Number: " & aRxMedication.ItemOrderNumber & vbNewLine
if aRxMedication.Diagnosis.Id > 0 then 
  aRxMedicationInfo = aRxMedicationInfo & "Diagnosis: " &_
    aRxMedication.Diagnosis.Description   
end if        

Profile.MsgBox(aRxMedicationInfo)    
Note:

In Profile Client v8 on User Interface Item Order Number can be found in Clinical > Medical Record > MedChart > Item Order.

Version information

Added in v8.5.0