Product Support Notice

Size: px
Start display at page:

Download "Product Support Notice"

Transcription

1 PSN # PSN003169u Product Support Notice 2011 Avaya Inc. All Rights Reserved. Original publication date: 4-Feb-11. This is Issue #02, published date: 17- Nov-11. Severity/risk level High Urgency Immediately Name of problem Avaya Interaction Center Releases and users need to set ResetScriptIteration to 1 in WACD configuration if the new behavior introduced in the fix of wi is not desired by the customer. Products affected Avaya Interaction Center: Releases and SP. Problem description In Avaya IC SP, a new parameter ResetScriptIteration for WACD was introduced as a part of the fix wi (When the WebACD is restarted the queue scripts for recreated tasks restart from iteration 0). However, the information about this parameter and other configuration details related to the fix are not present in the IC and IC Release Notes. Resolution In wi , changes were made in WACD server to persist priority, workgroup & iteration counter into the database. With these changes when WACD server is restarted, rather than starting from the iteration counter from 0, WACD will recreate tasks at the same priority and workgroup that it had prior to the restart. However, enabling of this new behavior depends on the parameter ResetScriptIteration. A) If the parameter is set to 1, WACD will behave as it used to, before the fix, i.e. queue scripts will start from iteration zero. B) If the parameter is set to 0, WACD will recreate tasks at the same priority and workgroup that it had prior to the restart. By default, (i.e. if not configured) WACD server considers the value of ResetScriptIteration parameter to be 0 unless the value is explicitly set to 1 in the WACD configuration in IC Manager. Configuration steps to be performed after installing IC or IC SP: A) If the old behavior of WACD server is desired, i.e. value of iteration counter will be reset to zero on WACD restart, perform the following steps for all WACD servers: 1. Login to ICManager 2. Go to the Server tab and double click on a WACD server to edit its configuration. 3. Go to the configuration tab and add a new configuration parameter Name: ResetScriptIteration Value: 1 4. Hit OK to save the WACD configuration and restart the WACD server. B) If it is desired that WACD does not reset the counter on restart, perform the following steps on Windows machine (Where Design and Admin is installed): 1. Gathering database information a. Login into ICManager b. Open Tools menu and click on "IC Data Sources..." c. Once "IC Data Sources..." dialog opens expand "interaction_center" d. Click on ccqdbconnection. e. Note down Database Name and Database Server Values. 2. Changing w_script_details There are different queries for SQL Server, DB2 & Oracle a. For Microsoft SQL and DB2 Databases execute the following query for the database noted down in the above steps. Please use respective Database GUI Client to execute below query. update w_scripts_detail set script_text =' This is the default script It looks for the following key-values Expectedqueuetime - If present, it will display the expected hold time

2 Workgroup - The value should be a Workgroup to enqueue to Agent - The value should be an agent name to enqueue to Priority - The priority of an enqueue (team or agent) Say - A string message to say to the customer PushURL - A URL to push to the customer Wait - A value (in secs) to wait before processing the next set of keys If Expectedqueuetime is defined, get the expected hold time if acd.getvalue("expectedqueuetime") <> "0" then acd.sv("time", ACD.ExpectedQueueTime(10)) if acd.gv("time") = 0 then say("an agent will be with you shortly.") if acd.gv("time") <> -1 then say("your approximate wait time is " & acd.gv("time") & " minutes.") First check if pacagentname is provided. If so, this will be used first, and the main loop only entered if the requested agent does not become available within 30 seconds if acd.getvalue("pacagentname") <> "0" then acd.getagent(acd.getvalue("pacagentname")).enqueue() Say("Agent " & acd.getvalue("pacagentname") & " will be with you shortly.") Start the loop while (acd.gv("exit") = 0) acd.sv("exit", 1) Check to see if a team is defined and if so, check for a priority if acd.getvalue("workgroup" & acd.gv("cnt")) <> "0" then ACD.GetTeam(acd.GetValue("Workgroup" & acd.gv("cnt"))).enqueue(low) ACD.GetTeam(acd.GetValue("Workgroup" & acd.gv("cnt"))).enqueue(normal) ACD.GetTeam(acd.GetValue("Workgroup" & acd.gv("cnt"))).enqueue(high) ACD.GetTeam(acd.GetValue("Workgroup" & acd.gv("cnt"))).enqueue(urgent) 2011 Avaya Inc. All Rights Reserved. Page 2

3 ACD.GetTeam(Cstr(acd.getvalue("Workgroup" & acd.gv("cnt")))).enqueue() Check to see if an agent is defined and if so, check for a priority if acd.getvalue("agent" & acd.gv("cnt")) <> "0" then ACD.GetAgent(acd.GetValue("Agent" & acd.gv("cnt"))).enqueue(low) ACD.GetAgent(acd.GetValue("Agent" & acd.gv("cnt"))).enqueue(normal) ACD.GetAgent(acd.GetValue("Agent" & acd.gv("cnt"))).enqueue(high) ACD.GetAgent(acd.GetValue("Agent" & acd.gv("cnt"))).enqueue(urgent) ACD.GetAgent(Cstr(acd.getvalue("Agent" & acd.gv("cnt")))).enqueue() check for a say value if acd.getvalue("say" & acd.gv("cnt")) <> "0" then say(acd.getvalue("say" & acd.gv("cnt"))) check for a push url value if acd.getvalue("pushurl" & acd.gv("cnt")) <> "0" then pushurl(acd.getvalue("pushurl" & acd.gv("cnt"))) check for a wait value if acd.getvalue("wait" & acd.gv("cnt")) <> "0" then acd.setvalue("sleep", acd.getvalue("wait" & acd.gv("cnt"))) sleep(int(cdbl(acd.getvalue("sleep")))) If this was the 1st time through and no values were set, then we need to do a normal routing. if acd.gv("exit") = 1 AND acd.gv("cnt") = 0 then say("please wait for the next available econtact agent.") while(true) ACD.GetTeam("Default").Enqueue() Say("Please continue to wait...") wend 2011 Avaya Inc. All Rights Reserved. Page 3

4 If any values were set for this count then up the counter and continue, otherwise, set the counter back to zero and start over. if acd.gv("exit") = 0 then acd.sv("cnt", acd.gv("cnt") + 1 ) acd.sv("cnt", 0) wend' where script_name='defaultqueuescript'; b. For Oracle, execute the following query for the schema noted down. Please use Oracle GUI Client to execute below query. set scan off; declare sscriptvar varchar2(32767) := ' This is the default script It looks for the following key-values Expectedqueuetime - If present, it will display the expected hold time Workgroup - The value should be a Workgroup to enqueue to Agent - The value should be an agent name to enqueue to Priority - The priority of an enqueue (team or agent) Say - A string message to say to the customer PushURL - A URL to push to the customer Wait - A value (in secs) to wait before processing the next set of keys If Expectedqueuetime is defined, get the expected hold time if acd.getvalue("expectedqueuetime") <> "0" then acd.sv("time", ACD.ExpectedQueueTime(10)) if acd.gv("time") = 0 then say("an agent will be with you shortly.") if acd.gv("time") <> -1 then say("your approximate wait time is " & acd.gv("time") & " minutes.") First check if pacagentname is provided. If so, this will be used first, and the main loop only entered if the requested agent does not become available within 30 seconds 2011 Avaya Inc. All Rights Reserved. Page 4

5 if acd.getvalue("pacagentname") <> "0" then acd.getagent(acd.getvalue("pacagentname")).enqueue() Say("Agent " & acd.getvalue("pacagentname") & " will be with you shortly.") Start the loop while (acd.gv("exit") = 0) acd.sv("exit", 1) Check to see if a team is defined and if so, check for a priority if acd.getvalue("workgroup" & acd.gv("cnt")) <> "0" then ACD.GetTeam(acd.GetValue("Workgroup" & acd.gv("cnt"))).enqueue(low) ACD.GetTeam(acd.GetValue("Workgroup" & acd.gv("cnt"))).enqueue(normal) ACD.GetTeam(acd.GetValue("Workgroup" & acd.gv("cnt"))).enqueue(high) ACD.GetTeam(acd.GetValue("Workgroup" & acd.gv("cnt"))).enqueue(urgent) ACD.GetTeam(Cstr(acd.getvalue("Workgroup" & acd.gv("cnt")))).enqueue() Check to see if an agent is defined and if so, check for a priority if acd.getvalue("agent" & acd.gv("cnt")) <> "0" then ACD.GetAgent(acd.GetValue("Agent" & acd.gv("cnt"))).enqueue(low) ACD.GetAgent(acd.GetValue("Agent" & acd.gv("cnt"))).enqueue(normal) ACD.GetAgent(acd.GetValue("Agent" & acd.gv("cnt"))).enqueue(high) ACD.GetAgent(acd.GetValue("Agent" & acd.gv("cnt"))).enqueue(urgent) ACD.GetAgent(Cstr(acd.getvalue("Agent" & acd.gv("cnt")))).enqueue() check for a say value if acd.getvalue("say" & acd.gv("cnt")) <> "0" then say(acd.getvalue("say" & acd.gv("cnt"))) 2011 Avaya Inc. All Rights Reserved. Page 5

6 check for a push url value if acd.getvalue("pushurl" & acd.gv("cnt")) <> "0" then pushurl(acd.getvalue("pushurl" & acd.gv("cnt"))) check for a wait value if acd.getvalue("wait" & acd.gv("cnt")) <> "0" then acd.setvalue("sleep", acd.getvalue("wait" & acd.gv("cnt"))) sleep(int(cdbl(acd.getvalue("sleep")))) If this was the 1st time through and no values were set, then we need to do a normal routing. if acd.gv("exit") = 1 AND acd.gv("cnt") = 0 then say("please wait for the next available econtact agent.") while(true) ACD.GetTeam("Default").Enqueue() Say("Please continue to wait...") wend If any values were set for this count then up the counter and continue, otherwise, set the counter back to zero and start over. if acd.gv("exit") = 0 then acd.sv("cnt", acd.gv("cnt") + 1 ) acd.sv("cnt", 0) wend'; begin update qw_text set text=sscriptvar where qwkey=1; end; 3. On Design and Admin machine login to ICManager and restart the WACD server. Workaround or alternative remediation Remarks The parameter ResetScriptIteration is applicable only for the contacts. Setting the parameter ResetScriptIteration to 1 reverts to the older behavior of WACD for contacts. WACD will reset the iteration counter for contacts on its restart i.e. WACD will not maintain contact s priority and workgroup after it restarts. Introducing this parameter resulted into regression issues for and chat contacts, workitems: wi , wi These WI s are fixed in IC7.2.4 SP. WI has been created to incorporate this information in IC SP Release Notes. Patch Notes The information in this section concerns the patch, if any, recommended in the Resolution above. Backup before applying the patch 2011 Avaya Inc. All Rights Reserved. Page 6

7 Download Patch install instructions Verification Failure Patch uninstall instructions Service-interrupting? No Security Notes The information in this section concerns the security risk, if any, represented by the topic of this PSN. Security risks Avaya Security Vulnerability Classification Not Susceptible Mitigation For additional support, contact your Authorized Service Provider. Depending on your coverage entitlements, additional support may incur charges. Support is provided per your warranty or service contract terms unless otherwise specified. Avaya Support Contact Telephone U.S. Remote Technical Services Enterprise U.S. Remote Technical Services Small Medium Enterprise U.S. Remote Technical Services BusinessPartners for Enterprise Product BusinessPartners for Small Medium Product Please contact your distributor. Canada Caribbean and Latin America Europe, Middle East, and Africa Asia Pacific Disclaimer: ALL INFORMATION IS BELIEVED TO BE CORRECT AT THE TIME OF PUBLICATION AND IS PROVIDED AS IS. AVAYA INC., ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES (HEREINAFTER COLLECTIVELY REFERRED TO AS AVAYA ), DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND FURTHERMORE, AVAYA MAKES NO REPRESENTATIONS OR WARRANTIES THAT THE STEPS RECOMMENDED WILL ELIMINATE SECURITY OR VIRUS THREATS TO CUSTOMERS SYSTEMS. IN NO EVENT SHALL AVAYA BE LIABLE FOR ANY DAMAGES WHATSOEVER ARISING OUT OF OR IN CONNECTION WITH THE INFORMATION OR RECOMMENDED ACTIONS PROVIDED HEREIN, INCLUDING DIRECT, INDIRECT, CONSEQUENTIAL DAMAGES, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF AVAYA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE INFORMATION PROVIDED HERE DOES NOT AFFECT THE SUPPORT AGREEMENTS IN PLACE FOR AVAYA PRODUCTS. SUPPORT FOR AVAYA PRODUCTS CONTINUES TO BE EXECUTED AS PER EXISTING AGREEMENTS WITH AVAYA. All trademarks identified by or TM are registered trademarks or trademarks, respectively, of Avaya Inc. All other trademarks are the property of their respective owners Avaya Inc. All Rights Reserved. Page 7

Product Support Notice

Product Support Notice PSN # PSN003109u Product Support Notice 2010 Avaya Inc. All Rights Reserved. Original publication date: 13-Dec-10. This is Issue # 1, published date: 13-Dec-10. Severity/risk level High Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN020232u Product Support Notice 2016 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 18-Dec-15.

More information

Product Support Notice

Product Support Notice PSN # PSN003614u Product Support Notice 2013 Avaya Inc. All Rights Reserved. Original publication date: 12-Apr-12. This is Issue #05, published date: 8- Severity/risk level High Urgency Immediately Feb-13.

More information

Product Support Notice

Product Support Notice PSN # PSN003178u Product Support Notice 2011 Avaya Inc. All Rights Reserved. Original publication date: 15-Feb-11. This is Issue # 1, published date: 15- Severity/risk level High Urgency Immediately Feb-11.

More information

Product Support Notice

Product Support Notice PSN # PSN027012u Product Support Notice 2015 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 11-Feb-15.

More information

Product Support Notice

Product Support Notice PSN # PSN002704u Product Support Notice 2009 Avaya Inc. All Rights Reserved. Original publication date: 30-Nov-09. This is Issue #01, published date: 30-Nov-09. Severity/risk level Medium Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN004088u Product Support Notice 2013 Avaya Inc. All Rights Reserved. iginal publication date: 18-Oct-13. This is issue #01, published date: 18-Oct-13. Severity/risk level High Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN027005u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 08-Oct-14.

More information

Product Support Notice

Product Support Notice PSN # PSN003993u Product Support Notice 2013 Avaya Inc. All Rights Reserved. Original publication date: 17-Jun-13. This is Issue #01, published date: 17-Jun-13. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN # PSN003851u Product Support Notice 2012 Avaya Inc. All Rights Reserved. Original publication date: 14-Dec-12. This is Issue #01, published date: 14-Dec-12. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN # PSN004170u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Original publication date: 07-May-14. This is Issue #01, published date: 07-May-14. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN # PSN003716u Product Support Notice 2013 Avaya Inc. All Rights Reserved. Original publication date: 05-June-12. This is Issue #07, published date: 22-April-13. Severity/risk level High Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN003205u Product Support Notice 2012 Avaya Inc. All Rights Reserved. Original publication date: 08-Mar-11. This is Issue #2, published date: 17- Severity/risk level Medium Urgency Immediately Apr-12.

More information

Product Support Notice

Product Support Notice PSN # PSN002343u Product Support Notice 2009 Avaya Inc. All Rights Reserved. Original publication date: 28-Jul-09. This is Issue #01, published date: 28- Severity/risk level Medium Urgency When convenient

More information

Product Support Notice

Product Support Notice PSN # PSN003171 Product Support Notice 2011 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 07-Mar-2011.

More information

Product Support Notice

Product Support Notice Product Support Notice 2016 Avaya Inc. All Rights Reserved. PSN # PSN004991u Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 02-Dec-16.

More information

Product Support Notice

Product Support Notice PSN # PSN020351u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 07-May-18.

More information

Product Support Notice

Product Support Notice PSN # PSN004053u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Original publication date: 30-Aug-13. This is Issue #03, published date: 24-Jan-14. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN # PSN003940u Product Support Notice 2013 Avaya Inc. All Rights Reserved. Original publication date: 03-Apr-13. This is Issue #01, published date: 03-Apr-13. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice Product Support Notice 2009 Avaya Inc. All Rights Reserved. PSN # PSN002354u Original publication date: 29-Apr-09. This is Issue # 01, published date: Severity/risk level Medium Urgency When convenient

More information

Product Support Notice

Product Support Notice Product Support Notice 2009 Avaya Inc. All Rights Reserved. PSN # PSN002461u Original publication date: 6-Jul-09. This is Issue # 01, published date: 6- Severity/risk level Medium Urgency When convenient

More information

Product Support Notice

Product Support Notice PSN # PSN020381u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 10-Dec-18.

More information

Product Support Notice

Product Support Notice PSN # PSN004730u Product Support Notice Original publication date: 19-May-16. This is Issue #01, published date: 20-May-16. Severity/ risk level Name of problem Avaya Aura Application Enablement (AE) Services

More information

Product Support Notice

Product Support Notice PSN# PSN002369u Product Support Notice 2009 Avaya Inc. All Rights Reserved. Original publication date: 11-May-09. This is Issue #1, published 11-May- Severity/risk level High Urgency When convenient 09.

More information

Product Support Notice

Product Support Notice PSN# PSN003312u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Original publication date: 09May11. This is Issue #59, published date: Severity High Urgency Immediately 13September2018 /risk

More information

Product Support Notice

Product Support Notice PSN # PSN027026u Product Support Notice 2015 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 18-Dec-15.

More information

Product Support Notice

Product Support Notice PSN # PSN027020u Product Support Notice 2015 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 21-May-15.

More information

Product Support Notice

Product Support Notice PSN # PSN005110u Product Support Notice 2017 Avaya Inc. All Rights Reserved. Original publication date: 8 Dec. 2017. This is Issue #03, published date: 22 Dec. 2017 Severity/risk level High Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN020361u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 11-Oct-18.

More information

Product Support Notice

Product Support Notice PSN # PSN004275u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Original publication date: 17-Sep-2014. This is Issue #01, published date: Severity/risk level Medium Urgency When convenient

More information

Product Support Notice

Product Support Notice PSN # PSN005154u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Original publication date: 23 March 2018. This is Issue #02, published date: 13 April 2018. Severity/risk level High Urgency

More information

Product Support Notice

Product Support Notice PSN # PSN004084u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Original publication date: 06-Nov-13. This is Issue #03, published date: 10-Oct-14. Severity/risk level Medium Urgency When

More information

Service Pack Release Notes

Service Pack Release Notes SP # 4.1.2 Service Pack Release Notes Original publication date: 01-December-2008. This is Issue #1, published date: 01-December-2008. Target Products Converged Network Analyzer, version 4.0 and above

More information

Windows Security Updates for August (MS MS06-051)

Windows Security Updates for August (MS MS06-051) Windows Security Updates for August 2006 - (MS06-040 - MS06-051) Original Release Date: August 8, 2006 Last Revised: November 22, 2006 Number: ASA-2006-154 Risk Level: High Advisory Version: 3.0 Advisory

More information

Product Support Notice

Product Support Notice PSN # PSN004435u Product Support Notice 2015 Avaya Inc. All Rights Reserved. Original publication date: 04-Mar-15. This is Issue #01, published date: 04-Mar-15. Severity/risk level Medium Urgency Immediately

More information

Product Correction Notice (PCN) Issue Date: August 9, 2010 Archive Date: Not Applicable Supplement 3 Date: March 22, 2011 PCN Number: 1738P

Product Correction Notice (PCN) Issue Date: August 9, 2010 Archive Date: Not Applicable Supplement 3 Date: March 22, 2011 PCN Number: 1738P (PCN) Issue Date: August 9, 2010 Archive Date: Supplement 3 Date: March 22, 2011 PCN Number: 1738P SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products and systems: Avaya S8510

More information

Product Correction Notice (PCN) Issue Date: December 19, 2008 Archive Date: NA Supplement 6 Date: June 7, 2010 PCN Number: 1655P

Product Correction Notice (PCN) Issue Date: December 19, 2008 Archive Date: NA Supplement 6 Date: June 7, 2010 PCN Number: 1655P Product Correction Notice (PCN) Issue Date: December 19, 2008 Archive Date: NA Supplement 6 Date: June 7, 2010 PCN Number: 1655P SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products

More information

Product Correction Notice (PCN) Issue Date: June 1, 2009 Archive Date: NA Supplement 5 date: February 1, 2010 PCN Number: 1685P

Product Correction Notice (PCN) Issue Date: June 1, 2009 Archive Date: NA Supplement 5 date: February 1, 2010 PCN Number: 1685P This PCN address issues with the following products and systems: Product Correction Notice (PCN) Issue Date: June 1, 2009 Archive Date: NA Supplement 5 date: February 1, 2010 PCN Number: 1685P SECTION

More information

Symantec Enterprise Vault Technical Note

Symantec Enterprise Vault Technical Note Symantec Enterprise Vault Technical Note FSA Reporting deployment guidelines 8.0 Symantec Information Foundation Symantec Enterprise Vault: FSA Reporting deployment guidelines The software described in

More information

Product Correction Notice (PCN) Issue Date: February 1, 2008 Archive Date: NA PCN Number: 1632P

Product Correction Notice (PCN) Issue Date: February 1, 2008 Archive Date: NA PCN Number: 1632P Product Correction Notice (PCN) Issue Date: February 1, 2008 Archive Date: NA PCN Number: 1632P SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products and systems: MultiVantage

More information

Symantec Endpoint Protection Integration Component User's Guide. Version 7.0

Symantec Endpoint Protection Integration Component User's Guide. Version 7.0 Symantec Endpoint Protection Integration Component User's Guide Version 7.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms

More information

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition Nokia Intellisync Mobile Suite Client Guide S60 Platform, 3rd Edition Published May 2008 COPYRIGHT Copyright 1997-2008 Nokia Corporation. All rights reserved. Nokia, Nokia Connecting People, Intellisync,

More information

Product Support Notice

Product Support Notice PSN # PSN004621u Product Support Notice 2016 Avaya Inc. All Rights Reserved. Original publication date: 22-Dec-2015. This is Issue #03, published date: Severity/risk level Medium Urgency When convenient

More information

Symantec Backup Exec System Recovery Granular Restore Option User's Guide

Symantec Backup Exec System Recovery Granular Restore Option User's Guide Symantec Backup Exec System Recovery Granular Restore Option User's Guide Symantec Backup Exec System Recovery Granular Restore Option User's Guide The software described in this book is furnished under

More information

Product Support Notice

Product Support Notice Product Support Notice 2007 Avaya Inc. All Rights Reserved. PSN# PSN001471u Original publication date: 10-Aug-2007. This is Issue #2, published 14- Severity/risk level High Urgency Optional Nov-2007. Name

More information

Symantec ApplicationHA Release Notes

Symantec ApplicationHA Release Notes Symantec ApplicationHA Release Notes Linux on KVM 6.0 December 2011 Symantec ApplicationHA Release Notes The software described in this book is furnished under a license agreement and may be used only

More information

Altiris Client Management Suite 7.1 from Symantec User Guide

Altiris Client Management Suite 7.1 from Symantec User Guide Altiris Client Management Suite 7.1 from Symantec User Guide Altiris Client Management Suite 7.1 from Symantec User Guide The software described in this book is furnished under a license agreement and

More information

Product Support Notice

Product Support Notice PSN # PSN004561u Product Support Notice 2017 Avaya Inc. All Rights Reserved. Original publication date: 25-Aug-15. This is Issue #07, published date: 14-Dec-17. Severity/risk level High Urgency Immediately

More information

Product Correction Notice (PCN)

Product Correction Notice (PCN) Product (PCN) Issue Date: February 06, 2009 Archive Date: February 28, 2010 PCN Number: 1675B SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products and systems: Proactive Contact

More information

Altiris Software Management Solution 7.1 from Symantec User Guide

Altiris Software Management Solution 7.1 from Symantec User Guide Altiris Software Management Solution 7.1 from Symantec User Guide Altiris Software Management Solution 7.1 from Symantec User Guide The software described in this book is furnished under a license agreement

More information

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Installation and Configuration Guide The software described in this book is furnished under a license agreement

More information

Security Content Update Release Notes. Versions: CCS 11.1 and CCS 11.5

Security Content Update Release Notes. Versions: CCS 11.1 and CCS 11.5 Security Content Update 2016-1 Release Notes Versions: CCS 11.1 and CCS 11.5 SCU 2016-1 Release Notes for CCS 11.1 and CCS 11.5 Legal Notice Copyright 2016 Symantec Corporation. All rights reserved. Symantec,

More information

Nokia Horizon Manager Release Notes. Version1.4 SP1

Nokia Horizon Manager Release Notes. Version1.4 SP1 Nokia Horizon Manager Release Notes Version1.4 SP1 Part No. N450000005 Rev 001 November 2005 Nokia Contact Information Corporate Headquarters Web Site Telephone http://www.nokia.com 1-888-477-4566 or 1-650-625-2000

More information

Symantec Enterprise Security Manager JRE Vulnerability Fix Update Guide

Symantec Enterprise Security Manager JRE Vulnerability Fix Update Guide Symantec Enterprise Security Manager JRE Vulnerability Fix Update Guide 2 Symantec Enterprise Security Manager JRE Vulnerability Fix Update Guide The software described in this book is furnished under

More information

Veritas CommandCentral Enterprise Reporter Release Notes

Veritas CommandCentral Enterprise Reporter Release Notes Veritas CommandCentral Enterprise Reporter Release Notes for Microsoft Windows and Solaris 5.2 RU3 February 2012 CommandCentral Enterprise Reporter Release Notes The software described in this book is

More information

Product Support Notice

Product Support Notice PSN # PSN004766u Product Support Notice Original publication date: 05-Jul-16. This is Issue #01, published date: 05-Jul-16. Name of problem Solaris Critical Patch Update R41 - April 2016 Products affected

More information

Product Correction Notice (PCN)

Product Correction Notice (PCN) Product Correction Notice (PCN) Issue Date: April 13, 2009 Archive Date: April 30, 2011 PCN Number: 1678B SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products and systems: 1608

More information

Intellisync Mobile Suite Client Guide. S60 3rd Edition Platform

Intellisync Mobile Suite Client Guide. S60 3rd Edition Platform Intellisync Mobile Suite Client Guide S60 3rd Edition Platform Published July 2007 COPYRIGHT 2007 Nokia. All rights reserved. Rights reserved under the copyright laws of the United States. RESTRICTED RIGHTS

More information

Product Correction Notice (PCN) Original Issue Date: September 10, 2006 Archive Date: N/A Supplement 5 Issue Date: May 4, 2009 PCN Number: 1567P

Product Correction Notice (PCN) Original Issue Date: September 10, 2006 Archive Date: N/A Supplement 5 Issue Date: May 4, 2009 PCN Number: 1567P Product Correction Notice (PCN) Original Issue Date: September 10, 2006 Archive Date: N/A Supplement 5 Issue Date: May 4, 2009 PCN Number: 1567P SECTION 1 - CUSTOMER NOTICE This PCN address issues with

More information

Veritas Storage Foundation and High Availability Solutions Getting Started Guide

Veritas Storage Foundation and High Availability Solutions Getting Started Guide Veritas Storage Foundation and High Availability Solutions Getting Started Guide Windows Server 2008 (x64), Windows Server 2008 R2 (x64) 6.0 21213723 (October 2011) Veritas Storage Foundation and High

More information

Nokia Intellisync Mobile Suite Client Guide. Palm OS Platform

Nokia Intellisync Mobile Suite Client Guide. Palm OS Platform Nokia Intellisync Mobile Suite Client Guide Palm OS Platform Published May 2008 COPYRIGHT Copyright 1997-2008 Nokia Corporation. All rights reserved. Nokia, Nokia Connecting People, Intellisync, and Intellisync

More information

Veritas Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint Server

Veritas Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint Server Veritas Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint Server Windows Server 2003, Windows Server 2008 5.1 Service Pack 1 Veritas Storage

More information

Converged Network Analyzer Command Reference Guide Addendum

Converged Network Analyzer Command Reference Guide Addendum Converged Network Analyzer Command Reference Guide Addendum for the Converged Network Analyzer (CNA), Adaptive Path Controller-Enterprise (APC-E), Adaptive Path Controller-Internet (APC-I), and the CNA

More information

Veritas Storage Foundation and High Availability Solutions Getting Started Guide

Veritas Storage Foundation and High Availability Solutions Getting Started Guide Veritas Storage Foundation and High Availability Solutions Getting Started Guide Windows Server 2008 (x64), Windows Server 2008 R2 (x64) 6.0.1 21271162 (October 2012) Veritas Storage Foundation and High

More information

Altiris IT Analytics Solution 7.1 from Symantec User Guide

Altiris IT Analytics Solution 7.1 from Symantec User Guide Altiris IT Analytics Solution 7.1 from Symantec User Guide Altiris IT Analytics Solution 7.1 from Symantec User Guide The software described in this book is furnished under a license agreement and may

More information

Veritas Cluster Server Library Management Pack Guide for Microsoft System Center Operations Manager 2007

Veritas Cluster Server Library Management Pack Guide for Microsoft System Center Operations Manager 2007 Veritas Cluster Server Library Management Pack Guide for Microsoft System Center Operations Manager 2007 Windows VCS Library Management Pack Veritas Cluster Server Library Management Pack Guide for Microsoft

More information

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. AIX 5.3 and 6.1

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. AIX 5.3 and 6.1 Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark AIX 5.3 and 6.1 Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark for AIX 5.3 and 6.1 The software

More information

Veritas Cluster Server Application Note: High Availability for BlackBerry Enterprise Server

Veritas Cluster Server Application Note: High Availability for BlackBerry Enterprise Server Veritas Cluster Server Application Note: High Availability for BlackBerry Enterprise Server Windows Server 2003, Windows Server 2008 5.1 Service Pack 2 Veritas Cluster Server Application Note: High Availability

More information

Symantec Enterprise Security Manager Modules for Oracle Release Notes

Symantec Enterprise Security Manager Modules for Oracle Release Notes Symantec Enterprise Security Manager Modules for Oracle Release Notes Release 5.0 for Symantec ESM 9.0 and 10.0 For Red Hat Enterprise Linux, HP-UX, AIX, Solaris, and Windows Symantec Enterprise Security

More information

Relativity Data Server

Relativity Data Server Relativity Data Server Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. For Red Hat Enterprise Linux 5

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. For Red Hat Enterprise Linux 5 Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark For Red Hat Enterprise Linux 5 Symantec ESM Baseline Policy Manual for CIS Benchmark for Red Hat Enterprise Linux 5 The software

More information

Symantec Enterprise Vault Technical Note

Symantec Enterprise Vault Technical Note Symantec Enterprise Vault Technical Note Migrating Enterprise Vault to 64-bit hardware 9.0 Symantec Enterprise Vault: Migrating Enterprise Vault to 64-bit hardware The software described in this book is

More information

Security Content Update Release Notes for CCS 12.x

Security Content Update Release Notes for CCS 12.x Security Content Update 2018-1 Release Notes for CCS 12.x SCU 2018-1 Release Notes for CCS 12.0 Documentation version: 1.0 Legal Notice Copyright 2018 Symantec Corporation. All rights reserved. Symantec,

More information

Symantec ServiceDesk 7.1 SP1 Implementation Guide

Symantec ServiceDesk 7.1 SP1 Implementation Guide Symantec ServiceDesk 7.1 SP1 Implementation Guide Symantec ServiceDesk 7.1 SP1 Implementation Guide The software described in this book is furnished under a license agreement and may be used only in accordance

More information

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK Relativity Designer Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Stellar Phoenix Password Recovery For Windows Server. Version 2.0. User Guide

Stellar Phoenix Password Recovery For Windows Server. Version 2.0. User Guide Stellar Phoenix Password Recovery For Windows Server Version 2.0 User Guide Overview Stellar Phoenix Password Recovery For Windows Server is a powerful application that helps you reset a Windows Server

More information

IBM Proventia Management SiteProtector. Scalability Guidelines Version 2.0, Service Pack 7.0

IBM Proventia Management SiteProtector. Scalability Guidelines Version 2.0, Service Pack 7.0 IBM Proventia Management SiteProtector Scalability Guidelines Version 2.0, Service Pack 7.0 Copyright Statement Copyright IBM Corporation 1994, 2008. IBM Global Services Route 100 Somers, NY 10589 U.S.A.

More information

Symantec Enterprise Security Manager Modules for Microsoft SQL Server Databases Release Notes. Release 2.1 for Symantec ESM 6.0, 6.1, and 6.5.

Symantec Enterprise Security Manager Modules for Microsoft SQL Server Databases Release Notes. Release 2.1 for Symantec ESM 6.0, 6.1, and 6.5. Symantec Enterprise Security Manager Modules for Microsoft SQL Server Databases Release Notes Release 2.1 for Symantec ESM 6.0, 6.1, and 6.5.x For Windows 2000, Windows Server 2003, and Windows XP SQL

More information

Compatibility Matrixes for VMware vcenter Site Recovery Manager 4.0 and Later

Compatibility Matrixes for VMware vcenter Site Recovery Manager 4.0 and Later Compatibility Matrixes for VMware vcenter Site Recovery Manager 4.0 and Later Last Updated: 07 October 2010 The following sections describe version compatibilities for VMware vcenter Site Recovery Manager

More information

Relativity for Windows Workstations

Relativity for Windows Workstations Relativity for Windows Workstations Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS,

More information

Symantec Encryption Desktop Version 10.2 for Mac OS X Release Notes. About Symantec Encryption Desktop

Symantec Encryption Desktop Version 10.2 for Mac OS X Release Notes. About Symantec Encryption Desktop Symantec Encryption Desktop Version 10.2 for Mac OS X Release Notes Thank you for using this Symantec Corporation product. These Release Notes contain important information regarding this release of Encryption

More information

Authentication Services ActiveRoles Integration Pack 2.1.x. Administration Guide

Authentication Services ActiveRoles Integration Pack 2.1.x. Administration Guide Authentication Services ActiveRoles Integration Pack 2.1.x Administration Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

About One Identity Quick Connect for Base Systems 2.4.0

About One Identity Quick Connect for Base Systems 2.4.0 One Identity Quick Connect for Base Systems 2.4.0 October 2018 These release notes provide information about the One Identity Quick Connect for Base Systems release. About New features Resolved issues

More information

Symantec NetBackup OpsCenter Reporting Guide. Release 7.7

Symantec NetBackup OpsCenter Reporting Guide. Release 7.7 Symantec NetBackup OpsCenter Reporting Guide Release 7.7 Symantec NetBackup OpsCenter Reporting Guide The software described in this book is furnished under a license agreement and may be used only in

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Maintenance Release: 1 Release Notes Published: 2013-07-18 SWD-20130718144837059 Contents 1 New in this release...4 2 Fixed issues...5

More information

Nokia Intrusion Prevention with Sourcefire. Appliance Quick Setup Guide

Nokia Intrusion Prevention with Sourcefire. Appliance Quick Setup Guide Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide Part Number N450000567 Rev 001 Published September 2007 COPYRIGHT 2007 Nokia. All rights reserved. Rights reserved under the copyright

More information

PGP Viewer for ios. User s Guide 1.0

PGP Viewer for ios. User s Guide 1.0 PGP Viewer for ios User s Guide 1.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Version 1.0.2. Last updated:

More information

One Identity Active Roles 7.2

One Identity Active Roles 7.2 One Identity December 2017 This document provides information about the Active Roles Add_on Manager7.2. About Active Roles Add_on Manager New features Known issues System requirements Getting started with

More information

Configuring Symantec. device

Configuring Symantec. device Configuring Symantec AntiVirus for Hitachi File OS device Configuring Symantec AntiVirus for Hitachi File OS device The software described in this book is furnished under a license agreement and may be

More information

Cisco Jabber IM for iphone Frequently Asked Questions

Cisco Jabber IM for iphone Frequently Asked Questions Frequently Asked Questions Cisco Jabber IM for iphone Frequently Asked Questions Frequently Asked Questions 2 Basics 2 Connectivity 3 Contacts 4 Calls 4 Instant Messaging 4 Meetings 5 Support and Feedback

More information

Release Notes. BlackBerry Enterprise Identity

Release Notes. BlackBerry Enterprise Identity Release Notes BlackBerry Enterprise Identity Published: 2018-03-13 SWD-20180606100327990 Contents New in this release...4 Fixed issues...5 Known issues... 6 Legal notice...8 New in this release New in

More information

Polycom RealPresence Resource Manager System

Polycom RealPresence Resource Manager System Upgrade Guide 8.2.0 July 2014 3725-72106-001E Polycom RealPresence Resource Manager System Copyright 2014, Polycom, Inc. All rights reserved. No part of this document may be reproduced, translated into

More information

Altiris PC Transplant 6.8 SP4 from Symantec User Guide

Altiris PC Transplant 6.8 SP4 from Symantec User Guide Altiris PC Transplant 6.8 SP4 from Symantec User Guide Altiris PC Transplant 6.8 SP4 from Symantec User Guide The software described in this book is furnished under a license agreement and may be used

More information

Configuring Symantec Protection Engine for Network Attached Storage for Hitachi Unified and NAS Platforms

Configuring Symantec Protection Engine for Network Attached Storage for Hitachi Unified and NAS Platforms Configuring Symantec Protection Engine for Network Attached Storage 7.0.1 for Hitachi Unified and NAS Platforms Configuring Symantec Protection Engine for Network Attached Storage 7.0.1 for Hitachi Unified

More information

Avaya Groupware Edition for IBM Lotus Help

Avaya Groupware Edition for IBM Lotus Help Avaya Groupware Edition for IBM Lotus Help Table of Contents Welcome to Groupware Edition for IBM Lotus Help...4 Overview...5 What is Groupware Edition for IBM Lotus?...5 Where is Groupware Edition located

More information

Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide. Sourcefire Sensor on Nokia v4.8

Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide. Sourcefire Sensor on Nokia v4.8 Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide Sourcefire Sensor on Nokia v4.8 Part No. N450000774 Rev 001 Published September 2008 COPYRIGHT 2008 Nokia. All rights reserved. Rights

More information

Configuring Symantec AntiVirus for BlueArc Storage System

Configuring Symantec AntiVirus for BlueArc Storage System Configuring Symantec AntiVirus for BlueArc Storage System Configuring Symantec AntiVirus for BlueArc Storage System The software described in this book is furnished under a license agreement and may be

More information

IBM License Metric Tool Enablement Guide

IBM License Metric Tool Enablement Guide IBM Spectrum Protect IBM License Metric Tool Enablement Guide Document version for the IBM Spectrum Protect Version 8.1 family of products Copyright International Business Machines Corporation 2016. US

More information

Product Correction Notice. Product Correction Notice (PCN)

Product Correction Notice. Product Correction Notice (PCN) (PCN) Issue Date: June 30 th, 2005 Archive Date: PCN Number: 1492P SECTION 1 - CUSTOMER NOTICE Impacted: DEFINITY ONE, IP600, and S8100 Media Servers. Description of PCN: This notice specifies embedded

More information

Symantec ApplicationHA Agent for Microsoft SQL Server 2008 and 2008 R2 Configuration Guide

Symantec ApplicationHA Agent for Microsoft SQL Server 2008 and 2008 R2 Configuration Guide Symantec ApplicationHA Agent for Microsoft SQL Server 2008 and 2008 R2 Configuration Guide Windows Server 2003 (x64), Windows Server 2008 and 2008 R2 (x64) 5.1 Service Pack 2 06/13/2011 Symantec ApplicationHA

More information