ISCDOTransaction.ModifiedBy

Description

The provider the CDO transaction was last modified by.

Syntax

object.ModifiedBy

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

Return Value

ISProvider

Example

Display some information about the CDO transactions, including the full name of the provider they were last modified by.

Dim aPatient
Dim aFilter 
Dim aCDOTransactions, aCDOTransaction
Dim aMessage
Dim i

Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateCDOTransFilter
aFilter.PatientId = aPatient.Id
set aCDOTransactions = Profile.LoadCDOTransactions(aFilter)

aMessage = "CDO Transactions Count = " & aCDOTransactions.Count & vbNewLine
for i = 0 to aCDOTransactions.Count - 1
  set aCDOTransaction = aCDOTransactions.Item(i)
  aMessage = aMessage & vbNewLine & (i + 1) & ") " &_
    "Created on: " & aCDOTransaction.CreatedOn & vbNewLine &_
    "     Code: " & aCDOTransaction.Code & vbNewLine &_
    "     ID: " & aCDOTransaction.ID & vbNewLine &_
    "     GUID: " & aCDOTransaction.GUID & vbNewLine &_
    "     DisplayDate: " & aCDOTransaction.DisplayDate & vbNewLine &_
    "     Modified On: " & aCDOTransaction.ModifiedOn & vbNewLine &_
    "     Modified By: " & aCDOTransaction.ModifiedBy.FullName & vbNewLine   
next    

Profile.MsgBox(aMessage)
Note:

In Profile Client v8 on User Interface Modified By cannot be found. CDO Transactions can be found in Clinical > Medical Record > Results.

Version information

Added in v7.8.0