Examples: CommonOwner property

This script gets the common name of the person who last modified the current agent. For example, if Yukiko Kitamura/Tokyo/Production created the agent and then Mariko Ikebuchi/Tokyo/Production modified it, Mariko is considered to be the owner and the CurrentAgent property returns "Mariko Ikebuchi."

' created by Yukiko Kitamura 11/28/95
' modified by Mariko Ikebuchi 12/17/95
Dim session As New NotesSession
Dim agent As NotesAgent
Dim owner As String
Set agent = session.CurrentAgent
owner = agent.CommonOwner