ISMovement.PhysicalLocationFromObj

Description

The location the patient moved from.

Syntax

object.PhysicalLocationFromObj

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

Return Value

ISShortCode

Example

Display the number of the movements loaded on the basis of the selected filter, some information about them, including their physical locations.

Dim aPatient
Dim aFilter                    
Dim aMovements
Dim aMovement
Dim aMessage
Dim i

Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateMovementFilter
aFilter.PatientID = aPatient.ID
set aMovements = Profile.LoadMovements(aFilter)

aMessage = "Movements Count = " & aMovements.Count
for i = 0 to aMovements.Count - 1
  set aMovement = aMovements.Item(i)
  aMessage = aMessage & vbNewLine & "-----------------------------" & vbNewLine &_
  "Description: " & aMovement.Description & vbNewLine &_
  "Date: " & aMovement.Date & vbNewLine &_
  "ID: " & aMovement.ID & vbNewLine &_
  "Length Of Stay: " & aMovement.LengthOfStay & vbNewLine &_
  "Movement Type: " & aMovement.MovType & vbNewLine &_
  "Responsible Unit: " & aMovement.ResponsibleUnit 
    
  if not aMovement.PhysicalLocationFromObj is nothing then
    aMessage = aMessage & vbNewLine & "Location: " & aMovement.PhysicalLocationFromObj.Code
  end if  
next      

Profile.MsgBox(aMessage) 
Note:

In Profile Client v8 on User Interface Location From can be found in Clinical > Medical Record > Movements > From Location or in Patient > Cases > Administrative > Movements > From Location.

Version information

Added in v7.8.0