Specifications

Event Types
Process Event Type
Use the Process event source to define an event that involves the start or stop
of a process.
Start
Stop
Example
The following example of a PeopleSoft rule set matches the first choice
statement if either of the additional processes has started, and matches the
second choice statement if either of the additional processes has stopped.
resources
{
require one
{
resource Process { ExecutableName="PSTOOLS" }
resource Process { ExecutableName="PSIDE" }
resource Process { ExecutableName="PSTORES" }
resource Process { ExecutableName="PSQED" }
}
additional
{
resource Connection { }
resource Process { ExecutableName="SQRW" }
resource Process { ExecutableName="PSCRRUN" }
}
}
transaction "Report"
module "Report"
{
event "Begin" Windows SetTitle { Title=contains:"CONCORD\\" }
choice
{
event "StartA" Process Start { ExecutableName="SQRW" }
event "StartB" Process Start { ExecutableName="PSCRRUN }
}
choice
{
event "StopA" Process Stop { ExecutableName="SQRW" }
event "StopB" Process Stop { ExecutableName="PSCRRUN }
}
}
BT Language Reference 131