Contact Center 6.0 Scripting Question

Contact Center 6.0 Scripting Question

NewsGroups | Search | Tools
 comp.dcom.sys.nortel  Post an article  get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
Contact Center 6.0 Scripting Question John 04-25-2007
Posted by John on April 25, 2007, 1:47 pm
If you were  Registered and logged in, you could reply and use other advanced thread options
We have voice prompt that we manually invoke during heavy call volumes
stating "We are currently experiencing Heavy call Volumes, Please expect
long wait times" or something along those lines.

It has a Boolean script variable of "true" or "false" that has to be
manually changed.

I am wondering if there is any way to automate this prompt so that if a
specific Application or skillset or CDN sees a specific number of calls over
a specified period of time it would be able to automatically invoke that
message instead of having a supervisor (who is not always around) manually
invoke the voice prompt.


Thx again,

John Mitchell



Spring Sale Save 20% Banner - Sale Ended 5/3/07 So Updated to NonPromo Ad
Posted by Renegade on May 3, 2007, 4:30 am
If you were  Registered and logged in, you could reply and use other advanced thread options
Hi John,

We're currently on Symposium 5.
I would imagine this should work for you.
Determine how many calls waiting you need to have Q'd before you want
this msg to be played.
Then create a Global Variable (say Heavy_Call_Vol_GV) that will
contain this digit. I can't remember the intrinsic for Calls Waiting,
and lets say your Boolean Variable is called Bool_Var for this
exercise. You will need to fill Bool_Var with "False" at the top of
the script. Now have a check near the top of your script that might
go something along the lines of:

if Heavy_Call_Vol_GV = (whatever the intrinsic for Calls Waiting is)
then
Bool_Var = "true"
else execute (section name)
end if

But that's working on the way that I structure my scripts, yours could
be entirely different. It's kinda hard without having your script in
front of me.
On tope of that i haven't had to write or mod a script for a while so
I'm a bit rusty, and all my books are at the office.
Hope that helped a little.


> We have voice prompt that we manually invoke during heavy call volumes
> stating "We are currently experiencing Heavy call Volumes, Please expect
> long wait times" or something along those lines.
>
> It has a Boolean script variable of "true" or "false" that has to be
> manually changed.
>
> I am wondering if there is any way to automate this prompt so that if a
> specific Application or skillset or CDN sees a specific number of calls over
> a specified period of time it would be able to automatically invoke that
> message instead of having a supervisor (who is not always around) manually
> invoke the voice prompt.
>
> Thx again,
>
> John Mitchell



Posted by Renegade on May 3, 2007, 4:31 am
If you were  Registered and logged in, you could reply and use other advanced thread options
Actually, that End If will need to go before the Execute SectionName,
and the else will need to be dropped.
Bah, my poor beer soaked memory........


> Hi John,
>
> We're currently on Symposium 5.
> I would imagine this should work for you.
> Determine how many calls waiting you need to have Q'd before you want
> this msg to be played.
> Then create a Global Variable (say Heavy_Call_Vol_GV) that will
> contain this digit. I can't remember the intrinsic for Calls Waiting,
> and lets say your Boolean Variable is called Bool_Var for this
> exercise. You will need to fill Bool_Var with "False" at the top of
> the script. Now have a check near the top of your script that might
> go something along the lines of:
>
> if Heavy_Call_Vol_GV = (whatever the intrinsic for Calls Waiting is)
> then
> Bool_Var = "true"
> else execute (section name)
> end if
>
> But that's working on the way that I structure my scripts, yours could
> be entirely different. It's kinda hard without having your script in
> front of me.
> On tope of that i haven't had to write or mod a script for a while so
> I'm a bit rusty, and all my books are at the office.
> Hope that helped a little.
>
>
>
>
> > We have voice prompt that we manually invoke during heavy call volumes
> > stating "We are currently experiencing Heavy call Volumes, Please expect
> > long wait times" or something along those lines.
>
> > It has a Boolean script variable of "true" or "false" that has to be
> > manually changed.
>
> > I am wondering if there is any way to automate this prompt so that if a
> > specific Application or skillset or CDN sees a specific number of calls over
> > a specified period of time it would be able to automatically invoke that
> > message instead of having a supervisor (who is not always around) manually
> > invoke the voice prompt.
>
> > Thx again,
>
> > John Mitchell- Hide quoted text -
>
> - Show quoted text -



Posted by John on May 4, 2007, 1:40 pm
If you were  Registered and logged in, you could reply and use other advanced thread options
Thx for the update, and I can relate to "My poor beer soaked memory". I
don't actually do much scripting and was wondering if it was a possibility.
I will follow through with our second level external support to have them
help me implement the script.

Thx again,

John


> Actually, that End If will need to go before the Execute SectionName,
> and the else will need to be dropped.
> Bah, my poor beer soaked memory........
>
>
>> Hi John,
>>
>> We're currently on Symposium 5.
>> I would imagine this should work for you.
>> Determine how many calls waiting you need to have Q'd before you want
>> this msg to be played.
>> Then create a Global Variable (say Heavy_Call_Vol_GV) that will
>> contain this digit. I can't remember the intrinsic for Calls Waiting,
>> and lets say your Boolean Variable is called Bool_Var for this
>> exercise. You will need to fill Bool_Var with "False" at the top of
>> the script. Now have a check near the top of your script that might
>> go something along the lines of:
>>
>> if Heavy_Call_Vol_GV = (whatever the intrinsic for Calls Waiting is)
>> then
>> Bool_Var = "true"
>> else execute (section name)
>> end if
>>
>> But that's working on the way that I structure my scripts, yours could
>> be entirely different. It's kinda hard without having your script in
>> front of me.
>> On tope of that i haven't had to write or mod a script for a while so
>> I'm a bit rusty, and all my books are at the office.
>> Hope that helped a little.
>>
>>
>>
>>
>> > We have voice prompt that we manually invoke during heavy call volumes
>> > stating "We are currently experiencing Heavy call Volumes, Please
>> > expect
>> > long wait times" or something along those lines.
>>
>> > It has a Boolean script variable of "true" or "false" that has to be
>> > manually changed.
>>
>> > I am wondering if there is any way to automate this prompt so that if a
>> > specific Application or skillset or CDN sees a specific number of calls
>> > over
>> > a specified period of time it would be able to automatically invoke
>> > that
>> > message instead of having a supervisor (who is not always around)
>> > manually
>> > invoke the voice prompt.
>>
>> > Thx again,
>>
>> > John Mitchell- Hide quoted text -
>>
>> - Show quoted text -
>
>



Similar ThreadsPosted
Contact Center Manager May 29, 2008, 5:36 am
Reporting for Contact Center: Custom Realtime Reports or custom Software Wallboard April 23, 2008, 10:00 am
BCM Call Center Question? September 17, 2005, 2:28 am
Symposium Scripting May 29, 2008, 11:55 am
Contact management February 8, 2005, 8:20 pm
M9617 USB with Nortel Contact Manager February 18, 2005, 3:35 pm
reporting for call center July 4, 2006, 12:34 pm
Symposium 6.0 / Call Center 6.0 October 15, 2006, 9:13 am
Reporting for call center October 17, 2007, 3:59 pm
AboveNet Launches Data Center Connectivity Service Using Nortel Optical Solution March 22, 2006, 12:23 pm

other useful resources:
The Federal Communications Commission (FCC)
Telecommunications Industry Association
Electronic and Software Security Products and Services
International Telecommunication Union

Custom CGI Perl and PHP programming by 1-Script.com

Contact Us | Privacy Policy
The site map in XML format XML site map