Journalreadsession()

Reads a journal file looking for the specific session

Usage

STRUCTURE = Journalreadsession( file, session )
Argument Summary
file full path of the journal file to read
session the number of the session to read, starts at 1. This is pointer to the session as per the JournalRead()

Calling

Supports named-parameter calling allowing you to use the function like:

Journalreadsession(
   file=?, 
   session=?
);

Supports passing parameters as a structure using ArgumentCollection:

Journalreadsession( ArgumentCollection={
   file : ?, 
   session : ?
} );