Nortel Meridian Meridian 1 Scripting Manual page 61

Contact center manager
Hide thumbs Also See for Meridian Meridian 1:
Table of Contents

Advertisement

October 2007
Blank lines, indenting, and comments
To improve the readability of your scripts, leave blank lines between sections,
and before and after comments. Indent commands inside sections to make it easy
to identify sections. Indent commands that extend beyond one line.
Comments help others understand your intentions for a section. Although
comments are not required, they can be extremely helpful in explaining the
original purpose of the section. Comments in your scripts must begin with an
opening marker (/*) and end with a closing marker (*/).
Tabs and extra spaces within a line do not affect the script. Blank lines do not
affect the script.
ATTENTION
Example
The following example shows the correct use of comments, indenting, and blank
lines between sections:
/* This section of the script queues calls to the general skillset
during regular business hours.*/
IF (DATE = holiday_gv) OR (DAY OF WEEK = weekend_gv) THEN
EXECUTE Night_Treatment
END IF
QUEUE TO SKILLSET general_sk
QUIT
SECTION Night_Treatment
GIVE RAN closed_ran_gv
DISCONNECT
Scripting Guide for Communication Server 1000/Meridian 1 PBX
Comments in your scripts must begin with an opening
marker (/*) and end with a closing marker (*/). If you do
not include both an opening and closing marker, the script
does not validate.
Scripting rules and conventions
61

Advertisement

Table of Contents
loading

Table of Contents