ISCareVisit.PlanStreamID

Description

ID of the care plan pathway the intervention template is part of.

Syntax

object.PlanStreamID

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

Return Value

int

Example

Display ID of the care plan pathway the intervention template is part of.

Dim aCarePlan
Dim aMessage
Dim aVisits
Dim aVisit

Set aCarePlan = Profile.LoadCarePlanByCode ("FLU") 
set aVisits = aCarePlan.Visits

if aVisits.Count = 0 then
  aMessage = aMessage & vbNewLine & "There are no care visits!"
else
  
  for i = 0 to aVisits.Count - 1
    set aVisit = aVisits.Item(i)
    aMessage = aMessage & vbNewLine & "ID of the care plan pathway " &_
    "the intervention template '" & aVisit.Description &_
    "'" & " is part of = "  & aVisit.PlanStreamID
  next

end if       
   
Profile.MsgBox (aMessage)   
Note:

In Profile Client v8 on User Interface Plan Stream ID cannot be found.

Version information

Added in v7.8.0