RDOJournalItem object

 

RDOJournalItem object represents a journal entry in a Journal folder. A journal entry represents a record of all Microsoft Outlook-moderated transactions for any given period.

RDOJournalItem is derived from the RDOMail object and as such inherits all the properties, methods and events implemented by the RDOMail object and adds the following properties

 

Everywhere RDOMail object is normally returned (RDOSession.GetMessageFromID, RDOFolder.Items, etc), RDOJournalItem will be returned if the message class is "IPM.Activity".

 

The example below creates and populates a new contact in the default Contacts folder.


 

Returned by:

Everywhere RDOMail object is normally returned (RDOSession.GetMessageFromID, RDOFolder.Items, etc), RDOJournalItem will be returned if the message class is "IPM.Activity".

 

The example below creates a new journal item of type "Phone Call" in the default Journal folder.

set Session = CreateObject("Redemption.RDOSession")
Session.Logon
set Folder = Session.GetDefaultFolder(olFolderJournal)
set Item = Folder.Items.Add
Item.Type = "Phone Call"
Item.Duration = 20
Item.Subject = "Test Phone call from Redemption"
Item.Body = "This is a test journal item created by Redemption"
Item.Save

 


Derived from: RDOMail

In addition to all the properties specific to RDOJournalItem, it also implements all properties, methods and events of the RDOMail object, from which it is derived.


Properties


ContactNames

Sets a String representing the contact names associated with the journal entry. Read only.

 

 

DocPosted

True if the journalized item was posted as part of the journalized session. Read/write, Boolean.

 

 

DocPrinted

True if the journalized item was printed as part of the journalized session. Read/write, Boolean.
 

 

DocRouted

True if the journalized item was routed as part of the journalized session. Read/write, Boolean.

 

 

DocSaved

True if the journalized item was saved as part of the journalized session. Read/write, Boolean.

 

 

Duration

Returns or sets a Long indicating the duration (in minutes) of the journal entry. Read/write.

 

 

End

Returns or sets a Date indicating the end date and time of a Journal entry. Read/write.

 

 

Start

Returns or sets a Date indicating the starting date and time for the Journal entry. Read/write.

 

 

Type

Returns or sets a String representing a free-form String field, usually containing the display name of the journalizing application (for example, "Microsoft Word") or the kind of the Journal entry (for example "Phone Call").

Read/write.