Server Administration > Automate Tasks and Calculate Data Using Event Triggers > Coding Workflow and Document Triggers > Script Description
  
Script Description
The initial comment text in a workflow and document trigger script displays on the Description tab in the Windchill RV&S administration client. HTML tags provide additional formatting.
For example, the following script code:
// <b>Windchill RVS Manager Scheduled Trigger</b>
// <p>
// This script is used to escalate an item from a scheduled trigger.
// Each item that the trigger's query matches has a field, termed the
// priority field, which is incremented to the next valid value
// (subject to the maximum limits of that field).
// <p> // When escalated, the current time of the escalation can be recorded,
// to allow for the query to not match items which have been escalated
// for some period.
// <p>
// Each item that is escalated is summarized in one line,
// and is emailed to the appropriate recepient.
// If the query matches nothing, no email is sent.
//
displays as the following in the Description tab:
Windchill RVS Manager Scheduled Trigger
This script is used to escalate an item from a scheduled trigger.
Each item that the trigger's query matches has a field, termed the
priority field, which is incremented to the next valid value (subject
to the maximum limits of that field).

When escalated, the current time of the escalation can be recorded,
to allow for the query to not match items which have been escalated
for some period.

Each item that is escalated is summarized in one line, and is emailed
to the appropriate recepient. If the query matches nothing, no email
is sent.