


 



<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://docwiki.cisco.com/w/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://docwiki.cisco.com/w/index.php?title=Special:Contributions/Robapat&amp;feed=atom&amp;limit=50&amp;target=Robapat&amp;year=&amp;month=</id>
		<title>DocWiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://docwiki.cisco.com/w/index.php?title=Special:Contributions/Robapat&amp;feed=atom&amp;limit=50&amp;target=Robapat&amp;year=&amp;month="/>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Special:Contributions/Robapat"/>
		<updated>2013-05-20T17:35:54Z</updated>
		<subtitle>From DocWiki</subtitle>
		<generator>MediaWiki 1.16.0</generator>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports</id>
		<title>Historical Reports Gives VB List Box Error on Detailed Call Reports</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports"/>
				<updated>2011-11-10T04:24:40Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Historical Report Gives VB List Box Error on Detailed Call Reports  ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary''' &lt;br /&gt;
| On selecting Detailed Call CSQ Agent Report on a system that has more than 32765 distinct calling or &lt;br /&gt;
called numbers in the database, Historical Report gives VB List Box Error&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message''' &lt;br /&gt;
| The number of filter parameter values exceeded maximum entries (32765) that VB listbox can hold. &lt;br /&gt;
Only the first 32765 filter parameter values will be available for selection.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause''' &lt;br /&gt;
| This is a limitation with VB. &lt;br /&gt;
The default value is 32765 as the maximum limit of the list box is 32765. If there are more than 32765 entries, the list box of the HRC shows only up to 32765 distinct values. The rest of the values are omitted.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action''' &lt;br /&gt;
| The workaround is to limit the query to pull less than 32765 entries into the VB Box. &lt;br /&gt;
You can customize the entries of the HRC list box 'Available' such as it shows &amp;quot;first 'n' entries/first 32765 entries/last 32765 entries/32765 entries between 'x' and 'y'&amp;quot;. For this, you need to modify the xml file for the report. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;'''Workaround for 7.x systems:'''&amp;lt;/u&amp;gt; &lt;br /&gt;
&lt;br /&gt;
On the PC where the Historical Reports client is installed, navigate to &amp;amp;lt;Install Dir&amp;amp;gt;\Cisco UCCX Historical Reports\ReportTemplates\&amp;amp;lt;language&amp;amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Open ICD_Detailed_Call_CSQ_Agent_en_us.xml (Replace en_us with local language). &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
You can use 'between' keyword in the SQL query to get values between two entries. &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;Workaround for 8.x systems:&amp;lt;/u&amp;gt;'''&amp;amp;nbsp;&amp;amp;nbsp;Informix does not support the 'top' keyword, so the queries need to be modified slightly:&amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
Syntax: &lt;br /&gt;
&lt;br /&gt;
SELECT FIRST &amp;amp;lt;number&amp;amp;gt;&amp;amp;nbsp;DISTINCT &amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;; &lt;br /&gt;
&lt;br /&gt;
SELECT SKIP &amp;amp;lt;number&amp;amp;gt; FIRST &amp;amp;lt;number&amp;amp;gt; DISTINCT &amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;; &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
SELECT FIRST&amp;amp;nbsp;100 DISTINCT resourcename FROM Resource; -- gets the first 100 distinct resourceNames from resource table.&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
SELECT SKIP 100 FIRST&amp;amp;nbsp;DISTINCT 1000 resourcename FROM Resource; -- skips the first 100 and get the next distinct 1000 resourceNames from the resource table. &lt;br /&gt;
&lt;br /&gt;
More detail on keyword usage here: [http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release''' &lt;br /&gt;
| 7.0(1), 8.0(1)&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #''' &lt;br /&gt;
| CSCtg06706&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified_CCX,_Release_7.0]] [[Category:Unified_CCX,_Release_8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports</id>
		<title>Historical Reports Gives VB List Box Error on Detailed Call Reports</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports"/>
				<updated>2011-11-10T04:05:00Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Historical Report Gives VB List Box Error on Detailed Call Reports  ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary''' &lt;br /&gt;
| On selecting Detailed Call CSQ Agent Report on a system that has more than 32765 distinct calling or &lt;br /&gt;
called numbers in the database, Historical Report gives VB List Box Error&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message''' &lt;br /&gt;
| The number of filter parameter values exceeded maximum entries (32765) that VB listbox can hold. &lt;br /&gt;
Only the first 32765 filter parameter values will be available for selection.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause''' &lt;br /&gt;
| This is a limitation with VB. &lt;br /&gt;
The default value is 32765 as the maximum limit of the list box is 32765. If there are more than 32765 entries, the list box of the HRC shows only up to 32765 distinct values. The rest of the values are omitted.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action''' &lt;br /&gt;
| The workaround is to limit the query to pull less than 32765 entries into the VB Box. &lt;br /&gt;
You can customize the entries of the HRC list box 'Available' such as it shows &amp;quot;first 'n' entries/first 32765 entries/last 32765 entries/32765 entries between 'x' and 'y'&amp;quot;. For this, you need to modify the xml file for the report. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;'''Workaround for 7.x systems:'''&amp;lt;/u&amp;gt; &lt;br /&gt;
&lt;br /&gt;
On the PC where the Historical Reports client is installed, navigate to &amp;amp;lt;Install Dir&amp;amp;gt;\Cisco UCCX Historical Reports\ReportTemplates\&amp;amp;lt;language&amp;amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Open ICD_Detailed_Call_CSQ_Agent_en_us.xml (Replace en_us with local language). &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
You can use 'between' keyword in the SQL query to get values between two entries. &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;Workaround for 8.x systems:&amp;lt;/u&amp;gt;'''&amp;amp;nbsp;&amp;amp;nbsp;Informix does not support the 'top' keyword, so the queries need to be modified slightly:&amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
Syntax: &lt;br /&gt;
&lt;br /&gt;
SELECT FIRST&amp;amp;nbsp;&amp;amp;lt;number&amp;amp;gt;&amp;amp;nbsp;DISTINCT &amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;; &lt;br /&gt;
&lt;br /&gt;
SELECT SKIP &amp;amp;lt;number&amp;amp;gt; FIRST &amp;amp;lt;number&amp;amp;gt; DISTINCT &amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;; &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
SELECT FIRST&amp;amp;nbsp;100 DISTINCT resourcename FROM Resource; -- gets the first 100 distinct resourceNames from resource table.&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
SELECT SKIP 100 FIRST&amp;amp;nbsp;DISTINCT 1000 resourcename FROM Resource; -- skips the first 100 and get the next distinct 1000 resourceNames from the resource table. &lt;br /&gt;
&lt;br /&gt;
More detail on keyword usage here: [http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release''' &lt;br /&gt;
| 7.0(1), 8.0(1)&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #''' &lt;br /&gt;
| CSCtg06706&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified_CCX,_Release_7.0]] [[Category:Unified_CCX,_Release_8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports</id>
		<title>Historical Reports Gives VB List Box Error on Detailed Call Reports</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports"/>
				<updated>2011-11-10T03:47:45Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Historical Report Gives VB List Box Error on Detailed Call Reports  ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary''' &lt;br /&gt;
| On selecting Detailed Call CSQ Agent Report on a system that has more than 32765 distinct calling or &lt;br /&gt;
called numbers in the database, Historical Report gives VB List Box Error&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message''' &lt;br /&gt;
| The number of filter parameter values exceeded maximum entries (32765) that VB listbox can hold. &lt;br /&gt;
Only the first 32765 filter parameter values will be available for selection.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause''' &lt;br /&gt;
| This is a limitation with VB. &lt;br /&gt;
The default value is 32765 as the maximum limit of the list box is 32765. If there are more than 32765 entries, the list box of the HRC shows only up to 32765 distinct values. The rest of the values are omitted.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action''' &lt;br /&gt;
| The workaround is to limit the query to pull less than 32765 entries into the VB Box. &lt;br /&gt;
You can customize the entries of the HRC list box 'Available' such as it shows &amp;quot;first 'n' entries/first 32765 entries/last 32765 entries/32765 entries between 'x' and 'y'&amp;quot;. For this, you need to modify the xml file for the report. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;'''Workaround for 7.x systems:'''&amp;lt;/u&amp;gt; &lt;br /&gt;
&lt;br /&gt;
On the PC where the Historical Reports client is installed, navigate to &amp;amp;lt;Install Dir&amp;amp;gt;\Cisco UCCX Historical Reports\ReportTemplates\&amp;amp;lt;language&amp;amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Open ICD_Detailed_Call_CSQ_Agent_en_us.xml (Replace en_us with local language). &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
You can use 'between' keyword in the SQL query to get values between two entries. &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;Workaround for 8.x systems:&amp;lt;/u&amp;gt;'''&amp;amp;nbsp;&amp;amp;nbsp;Informix does not support the 'top' keyword, so the queries need to be modified slightly:&amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
Syntax: &lt;br /&gt;
&lt;br /&gt;
SELECT FIRST&amp;amp;nbsp;&amp;amp;lt;number&amp;amp;gt;&amp;amp;nbsp;&amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;; &lt;br /&gt;
&lt;br /&gt;
SELECT SKIP &amp;amp;lt;number&amp;amp;gt; FIRST &amp;amp;lt;number&amp;amp;gt; &amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;; &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
SELECT FIRST&amp;amp;nbsp;100 resourcename FROM Resource; -- gets the first 100 resourceNames from resource table.&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
SELECT SKIP 100 FIRST&amp;amp;nbsp;1000 resourcename FROM Resource; -- skips the first 100 and get the next 1000 resourceNames from the resource table. &lt;br /&gt;
&lt;br /&gt;
More detail on keyword usage here: [http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release''' &lt;br /&gt;
| 7.0(1), 8.0(1)&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #''' &lt;br /&gt;
| CSCtg06706&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports</id>
		<title>Historical Reports Gives VB List Box Error on Detailed Call Reports</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports"/>
				<updated>2011-11-10T03:46:40Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Historical Report Gives VB List Box Error on Detailed Call Reports  ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary''' &lt;br /&gt;
| On selecting Detailed Call CSQ Agent Report on a system that has more than 32765 distinct calling or &lt;br /&gt;
called numbers in the database, Historical Report gives VB List Box Error&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message''' &lt;br /&gt;
| The number of filter parameter values exceeded maximum entries (32765) that VB listbox can hold. &lt;br /&gt;
Only the first 32765 filter parameter values will be available for selection.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause''' &lt;br /&gt;
| This is a limitation with VB. &lt;br /&gt;
The default value is 32765 as the maximum limit of the list box is 32765. If there are more than 32765 entries, the list box of the HRC shows only up to 32765 distinct values. The rest of the values are omitted.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action''' &lt;br /&gt;
| The workaround is to limit the query to pull less than 32765 entries into the VB Box. &lt;br /&gt;
You can customize the entries of the HRC list box 'Available' such as it shows &amp;quot;first 'n' entries/first 32765 entries/last 32765 entries/32765 entries between 'x' and 'y'&amp;quot;. For this, you need to modify the xml file for the report. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;'''Workaround for 7.x systems:'''&amp;lt;/u&amp;gt; &lt;br /&gt;
&lt;br /&gt;
On the PC where the Historical Reports client is installed, navigate to &amp;amp;lt;Install Dir&amp;amp;gt;\Cisco UCCX Historical Reports\ReportTemplates\&amp;amp;lt;language&amp;amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Open ICD_Detailed_Call_CSQ_Agent_en_us.xml (Replace en_us with local language). &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
You can use 'between' keyword in the SQL query to get values between two entries. &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;Workaround for 8.x systems:&amp;lt;/u&amp;gt;'''&amp;amp;nbsp;&amp;amp;nbsp;Informix does not support the 'top' keyword, so the queries need to be modified slightly:&amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
Syntax: &lt;br /&gt;
&lt;br /&gt;
SELECT FIRST&amp;amp;nbsp;&amp;amp;lt;number&amp;amp;gt;&amp;amp;nbsp;&amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;; &lt;br /&gt;
&lt;br /&gt;
SELECT SKIP &amp;amp;lt;number&amp;amp;gt; FIRST &amp;amp;lt;number&amp;amp;gt; &amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;; &lt;br /&gt;
&lt;br /&gt;
Ex: &lt;br /&gt;
&lt;br /&gt;
SELECT FIRST&amp;amp;nbsp;100 resourcename FROM Resource; -- gets the first 100 resourceNames from resource table.&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
SELECT SKIP 100 FIRST&amp;amp;nbsp;1000 resourcename FROM Resource; -- skips the first 100 and get the next 1000 resourceNames from the resource table. &lt;br /&gt;
&lt;br /&gt;
More detail on keyword usage here: [http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release''' &lt;br /&gt;
| 7.0(1), 8.0(1)&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #''' &lt;br /&gt;
| CSCtg06706&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified_CCX,_Release_7.0], [Category:Unified_CCX,_Release_8.0]]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports</id>
		<title>Historical Reports Gives VB List Box Error on Detailed Call Reports</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports"/>
				<updated>2011-11-10T03:45:42Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Historical Report Gives VB List Box Error on Detailed Call Reports  ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary''' &lt;br /&gt;
| On selecting Detailed Call CSQ Agent Report on a system that has more than 32765 distinct calling or &lt;br /&gt;
called numbers in the database, Historical Report gives VB List Box Error&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message''' &lt;br /&gt;
| The number of filter parameter values exceeded maximum entries (32765) that VB listbox can hold. &lt;br /&gt;
Only the first 32765 filter parameter values will be available for selection.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause''' &lt;br /&gt;
| This is a limitation with VB. &lt;br /&gt;
The default value is 32765 as the maximum limit of the list box is 32765. If there are more than 32765 entries, the list box of the HRC shows only up to 32765 distinct values. The rest of the values are omitted.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action''' &lt;br /&gt;
| The workaround is to limit the query to pull less than 32765 entries into the VB Box. &lt;br /&gt;
You can customize the entries of the HRC list box 'Available' such as it shows &amp;quot;first 'n' entries/first 32765 entries/last 32765 entries/32765 entries between 'x' and 'y'&amp;quot;. For this, you need to modify the xml file for the report. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;'''Workaround for 7.x systems:'''&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On the PC where the Historical Reports client is installed, navigate to &amp;amp;lt;Install Dir&amp;amp;gt;\Cisco UCCX Historical Reports\ReportTemplates\&amp;amp;lt;language&amp;amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Open ICD_Detailed_Call_CSQ_Agent_en_us.xml (Replace en_us with local language). &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 callednumber FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Locate the line &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
Change this line to read &amp;amp;lt;SQL&amp;amp;gt;SELECT distinct top 32000 originatordn FROM db_cra.dbo.contactcalldetail&amp;amp;lt;/SQL&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
You can use 'between' keyword in the SQL query to get values between two entries. &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;Workaround for 8.x systems:&amp;lt;/u&amp;gt;'''&amp;amp;nbsp;&amp;amp;nbsp;Informix does not support the 'top' keyword, so the queries need to be modified slightly:&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Syntax: &lt;br /&gt;
&lt;br /&gt;
SELECT FIRST&amp;amp;nbsp;&amp;amp;lt;number&amp;amp;gt;&amp;amp;nbsp;&amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;;&lt;br /&gt;
&lt;br /&gt;
SELECT SKIP &amp;amp;lt;number&amp;amp;gt; FIRST &amp;amp;lt;number&amp;amp;gt; &amp;amp;lt;columnName&amp;amp;gt; FROM &amp;amp;lt;table&amp;amp;gt;;&lt;br /&gt;
&lt;br /&gt;
Ex:&lt;br /&gt;
&lt;br /&gt;
SELECT FIRST&amp;amp;nbsp;100 resourcename FROM Resource; -- gets the first 100 resourceNames from resource table.&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
SELECT SKIP 100 FIRST&amp;amp;nbsp;1000 resourcename FROM Resource; -- skips the first 100 and get the next 1000 resourceNames from the resource table.&lt;br /&gt;
&lt;br /&gt;
More detail on keyword usage here: [http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqlt.doc/sqlt55.htm]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release''' &lt;br /&gt;
| 7.0(1)&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #''' &lt;br /&gt;
| CSCtg06706&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified_CCX,_Release_7.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Special_characters_wrongly_spoken_in_language_other_than_English</id>
		<title>Special characters wrongly spoken in language other than English</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Special_characters_wrongly_spoken_in_language_other_than_English"/>
				<updated>2011-10-21T09:59:08Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: Created page with &amp;quot;== Special characters wrongly spoken in language other than English   ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | Special characters wrongly spoken in language other than Engl...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Special characters wrongly spoken in language other than English   ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Special characters wrongly spoken in language other than English (German/Russian) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| Ex: German umlauts are incorrectly spoken; numbers read out instead of characters&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| Following can be possibilities - &lt;br /&gt;
- Speech server configuration is not UTF-8&lt;br /&gt;
- Incorrect version of voice package installed on TTS server &lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|&lt;br /&gt;
1) Ensure the correct voice pack is installed in the TTS server. Ex: For german issue de_DE [German(German)] voice package must be installed on the TTS server. &lt;br /&gt;
2) Change encoding to UTF-8 in the configuration file:&lt;br /&gt;
Ex: For Nuance speech server, set server.mrcp1.rsspeechsynth.plainTextSSMLEncoding VXIString UTF-8 (\Nuance\Speech Server 5.0\server\config\ NSSserver.cfg) and restart NSS engine.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| |Unified CCX, Release 8.0 | Unified CCX, Release 8.5&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| CSCtr28214&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0</id>
		<title>Troubleshooting Tips for Unified CCX 8.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0"/>
				<updated>2011-10-21T09:54:03Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* General TTS Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[Hardware not supported]]&lt;br /&gt;
* [[Unable to access NTP server]]&lt;br /&gt;
* [[Hardware not supported Error seen on 7835H2 and/or 7845H2]]&lt;br /&gt;
&lt;br /&gt;
= Backup and Restore =&lt;br /&gt;
&lt;br /&gt;
= Windows to Linux Upgrade =&lt;br /&gt;
* [[Desktop Agent Config backup operation failed using PUT]]&lt;br /&gt;
* [[Backup operation failed while backing up Config/Database/Recordings using PUT]]&lt;br /&gt;
* [[Pre-Upgrade Tool backup operation is not supported]]&lt;br /&gt;
* [[CVD communication failed during backup using PUT]]&lt;br /&gt;
* [[Could not find the Engine/DB master node during backup using PUT]]&lt;br /&gt;
* [[Database size is not supported during backup using PUT]]&lt;br /&gt;
* [[CCX Node is not reachable during backup using PUT]]&lt;br /&gt;
* [[Not all the recording files are backed up during backup using PUT]]&lt;br /&gt;
* [[Power failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[Failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[FTP/SFTP path not accessible during data restore]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in deployment type]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in license package]]&lt;br /&gt;
* [[Invalid backup TAR file used during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Not enough space to stage backup file on Unified CCX 8.0(1) during restore]]&lt;br /&gt;
* [[Component activation failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Activating the node as Publisher failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Database manager is not IN_SERVICE during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of configuration data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of DB data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Node 2 CTI ports removal failed during restore]]&lt;br /&gt;
* [[Recordings not getting played after upgrade]]&lt;br /&gt;
* [[Deletion of Node 2 JTAPI user from CUCM fails during restore]]&lt;br /&gt;
* [[The VRU connection port for ICM Subsystem fails to migrate during restore of IP-IVR system]]&lt;br /&gt;
* [[Problem occurred during backing up of restore logs]]&lt;br /&gt;
* [[PUT backup fails during Desktop Agent Config backup operation]]&lt;br /&gt;
&lt;br /&gt;
= Linux to Linux Upgrade =&lt;br /&gt;
* [http://zed.cisco.com/confluence/display/TRIAGE/Upgrade+FAQs Link to Platform Upgrade FAQ]&lt;br /&gt;
* [[No valid upgrade options found while running upgrade on node2]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Telephony Subsystem =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the subsystem in full service? If not refer to section for [[#Telephony Subsystem Out Of Service or Partial Service Issues]] below&lt;br /&gt;
* Also cross check JTAPI Client and Data sync. Refer to [[JTAPI Client and data resynchronization]]&lt;br /&gt;
&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on SS_TEL]]&lt;br /&gt;
* [[Turning on Unified CCX Telephony Client traces]]&lt;br /&gt;
* [[Turning on UCM CCM and CTI SDI and SDL traces]]&lt;br /&gt;
&lt;br /&gt;
=== Telephony Subsystem Out Of Service or Partial Service Issues ===&lt;br /&gt;
* [[Trigger partition change causes JTAPI subsystem to go to Partial Service]]&lt;br /&gt;
* [[Telephony Subsystem in Partial Service - calculateGroupReadiness indicates groups NOT READY]]&lt;br /&gt;
* [[Standard CTI Enabled role for JTAPI user]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - Unable to create provider]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - DB_ACCESS_ERROR]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service/Partial Service - Unable to Register CTI Port/Route Point]]&lt;br /&gt;
* [[Trigger Configuration Error]]&lt;br /&gt;
* [[Missing AddrInService events]]&lt;br /&gt;
* [[UCM Telephony SS in partial service after fall back to Node1]]&lt;br /&gt;
* [[UCM Telephony SS in partial service on a node]]&lt;br /&gt;
* [[JTAPI Client and data resynchronization]]&lt;br /&gt;
* [[JTAPI provider goes out of service]]&lt;br /&gt;
* [[Issues in JTAPI Port Recovery]]&lt;br /&gt;
&lt;br /&gt;
=== Callflow guides ===&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - IVR Call Flow]]&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - ICD Call Flow]]&lt;br /&gt;
&lt;br /&gt;
=== Identifying Issues in Call Flow ===&lt;br /&gt;
* [[Possible Issues in an ICD call flow]] &lt;br /&gt;
* Call is rejected as soon as it is received by Unified CCX&lt;br /&gt;
** [[REMOTE_TIMEOUT - No idle channels]]&lt;br /&gt;
* Call is not offered on the CTI Port&lt;br /&gt;
** [[TRIGGER_FAIL]]&lt;br /&gt;
** [[TRIGGER_MAX_SESSION]]&lt;br /&gt;
** [[Configuration issues]]&lt;br /&gt;
* Call is rejected after it is offered on the CTI Port&lt;br /&gt;
** [[SETUP_TIMEOUT]]&lt;br /&gt;
** [[SETUP_FAIL]]&lt;br /&gt;
* Issues invoking Application Task&lt;br /&gt;
** [[Null or Default Application Task]]&lt;br /&gt;
** [[ApplicationMaxSessionsException]]&lt;br /&gt;
** [[Invalid Script]]&lt;br /&gt;
* [[Media Setup Failure]]&lt;br /&gt;
* [[Codec Mismatch between Caller and CTI Port]]&lt;br /&gt;
* [[Call fails with CallCtlConnFailed event]]&lt;br /&gt;
* [[JTAPI Exception during redirect, accept, answer, transfer request]]&lt;br /&gt;
* [[Consult call fails with RESOURCE_BUSY]]&lt;br /&gt;
* Consult Call is not answered at agent extension&lt;br /&gt;
** [[RESOURCE_NOT_ACKNOWLEDGING]]&lt;br /&gt;
** [[RESOURCE_FORWARDING]]&lt;br /&gt;
* [[Could not meet post conditions of call.transfer]]&lt;br /&gt;
* [[Transfer does not receive CiscoTransferEndEv]]&lt;br /&gt;
* [[Multiple transfer failures]]&lt;br /&gt;
* [[Transfer success is false]]&lt;br /&gt;
&lt;br /&gt;
===Other tips===&lt;br /&gt;
* [[Call aborted due to WFMaxExecutedStepsExceededException]]&lt;br /&gt;
* [[Common Cause Codes and Meta Codes in JTAPI]]&lt;br /&gt;
* [[Troubleshooting JTAPI CCN Exceptions]]&lt;br /&gt;
* [[Codec support issues]]&lt;br /&gt;
* [[Commonly used regular expressions]]&lt;br /&gt;
* [[How to escalate an issue to IPCBU JTAPI team]]&lt;br /&gt;
* http://developer.cisco.com/web/jtapi/docs&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Media subsystem =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Media Traces]]&lt;br /&gt;
* [[Turning on IPVMS Traces]]&lt;br /&gt;
===General Media Issue===&lt;br /&gt;
* [[Media subsystem is stuck in initializing state]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express = &lt;br /&gt;
* [[Enabling CME Tracing]]&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
* [[Unified CCX stops working after Unified CME is rebuilt after crash]]&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
* [[Creation of Outbound trigger DN on UCCX fails]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IPIVR/ICM =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the ICM subsystem in full service in the IVR box? If not refer to section for [[#ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ]] below.&lt;br /&gt;
&lt;br /&gt;
* Verify whether the license uploaded on the system is for IVR.&lt;br /&gt;
 &lt;br /&gt;
* [[ Logs to be enabled for IVR issues ]]&lt;br /&gt;
&lt;br /&gt;
*  After the above mentioned logs are enabled, search the MIVR logs for any Exceptions- &amp;quot;exception&amp;quot; or errors. The following exceptions seen in MIVR logs can be ignored as they are benign in nature:&lt;br /&gt;
&lt;br /&gt;
     435718: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-DISPATCH_FAILURE:A failure occured while dispatching an event: &lt;br /&gt;
     listener=com.cisco.wf.subsystems.ged125.ICMChannel$CallListenerAdapter@118cef5,Exception=&lt;br /&gt;
     java.lang.IllegalStateException: already cleared&lt;br /&gt;
     435719: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-EXCEPTION:java.lang.IllegalStateException: already cleared&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
Based on the exceptions, Isolate the issues into the following -&lt;br /&gt;
&lt;br /&gt;
=== JTAPI issues ===&lt;br /&gt;
&lt;br /&gt;
Many a times, calls fail in IVR/ICM  due to telephony/JTAPI issues. Refer to the [http://docwiki-dev.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0#Cisco_Unified_Communications_Manager_Telephony_Subsystem Cisco Unified Communications Manager Telephony Subsystem] section and check whether the calls are failing at JTAPI level due to which ICM subsystem is unable to process calls in IPIVR.&lt;br /&gt;
&lt;br /&gt;
=== ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[ ICM subsystem is in OUT OF SERVICE state from IVR side and also the VRU PIM stays in IDLE state rather than ACTIVE state in the ICM peripheral gateway ]]&lt;br /&gt;
          &lt;br /&gt;
* [[ Calls to IVR are failing and ICM subsystem is OUT_OF_SERVICE ]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Issues ===&lt;br /&gt;
 &lt;br /&gt;
* [[ Calls are failing in IVR and user hears busy tone for these calls ]]&lt;br /&gt;
&lt;br /&gt;
* [[IVR sends wrong values to ICM for the call variables ]] &lt;br /&gt;
&lt;br /&gt;
* [[Call transfer fails if the agent transfers the call from one IVR to a different IVR ]]&lt;br /&gt;
&lt;br /&gt;
* [[Intermittent Translation Route to VRU failure ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Call reserves an agent although caller hanged in IPIVR ]]&lt;br /&gt;
&lt;br /&gt;
* [[ IVR gets freezed when the calls are more than the actual ports and requires an engine restart for recovery ]]&lt;br /&gt;
&lt;br /&gt;
=== Set up Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing in IVR intermittently â€“ Some calls go through successfully and some fail intermittently and it may seem like the TCP connection is broken from the VRU PIM side at the time of the failed calls ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing with ApplicationMaxSessionsException because there are not enough sessions created for an ICM application in IPIVR ]]&lt;br /&gt;
&lt;br /&gt;
* [[ What versions of IP IVR are supported for UCCE 8.0 ]]&lt;br /&gt;
&lt;br /&gt;
=== Other Tips ===&lt;br /&gt;
&lt;br /&gt;
* [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
* Many services in Deactivated state. Refer to [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
&lt;br /&gt;
* [[Error in IE (Class doesn't support Automation) ]]&lt;br /&gt;
* [[User Authentication error during CUCM configuration ]]&lt;br /&gt;
* [[HTTP 403 or security protocols error ]]&lt;br /&gt;
* [[Add to cluster repeats in a loop ]]&lt;br /&gt;
* [[Object error during component activation ]]&lt;br /&gt;
* [[Components in deactivated state ]]&lt;br /&gt;
* [[UCCX Data containing &amp;quot;less than &amp;quot; or &amp;quot;greater than&amp;quot; characters fails to save ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
*[[Script porting issues]]&lt;br /&gt;
*[[W1 upgrade issues]]&lt;br /&gt;
*[[Editor hanging issues]]&lt;br /&gt;
*[[Issues with loading custom code]]&lt;br /&gt;
*[[Issues with installing on windows vista and windows 7]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Application subsystem is in partial service]] &lt;br /&gt;
* [[Changes to applications do not register]] &lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]] &lt;br /&gt;
* [[An error message plays when calling a CTI route point]] &lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[ How to debug OutOfMemoryError ]]&lt;br /&gt;
* [[ How to analyze heap dumps ]]&lt;br /&gt;
* [[ How to debug the root cause for high CPU usage ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX ICD =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Required Tracing ===&lt;br /&gt;
* [[Log_Levels_for_issues_related_to_Routing_and_Queuing]]&lt;br /&gt;
=== RmCm is OOS OR in Partial Service ===&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem stuck in INITIALIZING state]]&lt;br /&gt;
&lt;br /&gt;
=== RmCm Configurations issues ===&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
&lt;br /&gt;
=== Agent Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[Unable to login Unified CCX Agent ]]&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state-Script queues and dequeueAll's the call to multiple CSQ's]]&lt;br /&gt;
* [[Agent stuck in Reserved state]]&lt;br /&gt;
* [[Agent stuck in Reserved state-&amp;quot;Not posting the ContactPresentedEvent&amp;quot; seen in logs]]&lt;br /&gt;
* [[Agent stuck in Reserved state-SessionTransferredMsg shows Initial and Final Contact Type:IAQ_CONSULT_CONTACT ]]&lt;br /&gt;
* [[Agent State transformations in Select Join and Join Across Line scenarios]]&lt;br /&gt;
* [[Issues related to Agents Using Shared Lines]]&lt;br /&gt;
&lt;br /&gt;
=== Call Issues ===&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Calls are sometimes not delivered accordingly to Skill Competence when Resource Selection Criteria is Most Skilled]]&lt;br /&gt;
* [[Same call is presented to two agents]]&lt;br /&gt;
* [[Agent and customer start hearing UCCX recordings played over their conversation]]&lt;br /&gt;
* [[CSD shows oldest in queue as 1(00:00:00)]]&lt;br /&gt;
&lt;br /&gt;
=== Scripting Issue ===&lt;br /&gt;
* [[Call redirected from one RP to the other multiple times with Redirect Step]]&lt;br /&gt;
* [[Call Dequeue Step sometimes does not dequeue the call]]&lt;br /&gt;
&lt;br /&gt;
=== Unsupported scenarios ===&lt;br /&gt;
&lt;br /&gt;
* [[IncompatibleSessionException seen in MIVR logs]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Guides ===&lt;br /&gt;
* [[Guide to read MIVR logs for a simple ICD call]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[RTR in SelectJoin, DirectTransfer, JoinAcrossLines, DirectTransferAcrossLines Scenarios]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Pre-Requisites]]&lt;br /&gt;
* [[Required Log levels]]&lt;br /&gt;
* [[Historical records not getting written to database]]&lt;br /&gt;
* [[Discrepancies of JAL Scenarios]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting Client [HRC]=&lt;br /&gt;
* [[Required Log levels For HRC]]&lt;br /&gt;
* [[Required Log levels For HRC Scheduler]]&lt;br /&gt;
* [[Error when launching HRC on Windows 7]]&lt;br /&gt;
* [[HRC login fails with a communication error message]] &lt;br /&gt;
* [[A Database Connection Error 5051 error appears in HRC 8.0 or 8.5]]&lt;br /&gt;
* [[Unable to export Scheduled Report to mapped drive.]]&lt;br /&gt;
* [[Charts do not appear on report]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Column headings are misplaced in MS Excel(Data Only) format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[&amp;quot;Access Denied&amp;quot; error while printing from HRC]]&lt;br /&gt;
* [[&amp;quot;Could not start print job&amp;quot; error while printing from HRC]]&lt;br /&gt;
* [[Login/Connection issues of Historical Reports Client over a non-Cisco VPN]]&lt;br /&gt;
* [[HRC Scheduler does not generate reports]]&lt;br /&gt;
* [[HRC installation fails with Error 1722]]&lt;br /&gt;
* [[HRC shows old/deleted agents in list of available agents]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Automatic Speech Recognition Traces]]&lt;br /&gt;
===General ASR Issues===&lt;br /&gt;
* [[How To Bring MRCP ASR Provider To InService State]]&lt;br /&gt;
* [[Nuance 9.0 not working with Unified CCX]]&lt;br /&gt;
* [[How to integrate MRCP ASR-TTS with Unified CCX]]&lt;br /&gt;
* [[Assure ASR-TTS ports/resources are freed up after the application finishes]]&lt;br /&gt;
* [[UnsupportedGrammarException with Cisco Media i.e Default Dialog group]]&lt;br /&gt;
* [[Built in Grammar minlength and maxlength with Default or Cisco Media Group for DTMF inputs]]&lt;br /&gt;
* [[How to allow both DTMF and Speech Recognition together]]&lt;br /&gt;
* [[The Names are not recognized]]&lt;br /&gt;
* [[MRCP ASR Subsystem Status is out of service]]&lt;br /&gt;
* [[MRCP ASR Providers, MRCP Servers, or Groups Changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
*&amp;lt;B&amp;gt;Trace Levels&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Log Level usage in Outbound Subsystem]]&lt;br /&gt;
**[[Log Levels required to troubleshoot outbound issues]]&lt;br /&gt;
*&amp;lt;B&amp;gt;General Outbound Issues&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound contacts not being dialed after failover]]&lt;br /&gt;
**[[Outbound calls fail with no callback number]]&lt;br /&gt;
**[[Outbound agent Stuck in Reserved state]]&lt;br /&gt;
**[[Outbound General Configuration data is changed]]&lt;br /&gt;
**[[Outbound Subsystem is Out Of Service]]&lt;br /&gt;
*&amp;lt;B&amp;gt;Issues Related To Outbound Call Flow&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound agents are ready for long time with available contacts]]&lt;br /&gt;
*&amp;lt;B&amp;gt;CAD/CDA related issues&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Outbound Buttons are disabled on CAD]]&lt;br /&gt;
** [[CDA doesn't show checkbox for Outbound Dialer Mode]]&lt;br /&gt;
&lt;br /&gt;
= Text-To-Speech =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Text To Speech traces]]&lt;br /&gt;
=== General TTS Issues ===&lt;br /&gt;
* [[Setting TTS Provider as Default TTS Provider]]&lt;br /&gt;
* [[Control prosody rate in PlayPrompt TTS block]]&lt;br /&gt;
* [[TTS Provider shows Last Status when Added Again]]&lt;br /&gt;
* [[MRCP TTS subsystem shows out of service status]]&lt;br /&gt;
* [[MRCP TTS Providers, MRCP Servers, locales, or genders changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
* [[Special characters wrongly spoken in language other than English]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
*&amp;lt;B&amp;gt; Real-Time Monitoring Tool (RTMT)&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Troubleshooting RTMT Installation Errors]]&lt;br /&gt;
** [[Not able to install different RTMT clients on the same box]]&lt;br /&gt;
** [[Unable to Log in to Cisco Unified Real-Time Monitoring Tool]]&lt;br /&gt;
** [[Unable to Collect data for the second node from RTMT when the Primary Node is down]]&lt;br /&gt;
** [[Troubleshooting DiskSpace and Partition related alerts]]&lt;br /&gt;
** [[Collecting logs for troubleshooting RTMT Alerts]]&lt;br /&gt;
** [[Configuring RTMT Trace Settings]]&lt;br /&gt;
*&amp;lt;B&amp;gt;SNMP&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Log Collection for SNMP Voice SubAgent issues]]&lt;br /&gt;
** [[Unable to receive Unified CCX SNMP Traps]]&lt;br /&gt;
** [[SNMP operations on the Voice MIB not fetching any output]]&lt;br /&gt;
** [[Troubleshooting Alarms/Alerts to be sent as SNMP Traps]]&lt;br /&gt;
*&amp;lt;B&amp;gt; Log Profile &amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Debugging issues]]&lt;br /&gt;
** [[Known issues]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability (Analysis Manager) =&lt;br /&gt;
* [[I don't see the Analysis Manager Drawer or Menu items]]&lt;br /&gt;
* [[RTMT does not come up or behaves strangely]]&lt;br /&gt;
* [[I cannot log into RTMT]]&lt;br /&gt;
* [[My Test Connectivity for Unified CCX Node is Failing]]&lt;br /&gt;
* [[The Call Records Repository connectivity test is failing]]&lt;br /&gt;
* [[Where can I access RTMT and Analysis Manager logs]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX VXML traces]]&lt;br /&gt;
=== General VXML Issues ===&lt;br /&gt;
* [[How to use JavaScript greater than, less than and ampersand symbols in vxml var expr declaration]]&lt;br /&gt;
* [[Voice Browser Not able to fetch files with dynamic file extensions]]&lt;br /&gt;
* [[Not able to fetch grammar and prompt files through CRTP]]&lt;br /&gt;
* [[VXML tag not working properly with VoiceBrowser]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
&lt;br /&gt;
* [[RCA for Engine failover]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[hear nothing while playing back desktop recorded sessions]]&lt;br /&gt;
* [[VOIP Monitor Subsystem is in partial service or OOS]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CLI =&lt;br /&gt;
* [[UCCX CLI log collection]]&lt;br /&gt;
* [[Analyzing UCCX CLI logs]]&lt;br /&gt;
* [[Cannot login to CLI]]&lt;br /&gt;
* [[Enabling root account from CLI]]&lt;br /&gt;
* [[Checking UCCX version using CLI]]&lt;br /&gt;
* [[Checking if the current node is a VOS publisher]]&lt;br /&gt;
* [[Checking configured UCCX license using CLI]]&lt;br /&gt;
* [[Checking &amp;amp; updating JTAPI Client using CLI]]&lt;br /&gt;
* [[Updating the UCM IP address in UCCX from CLI]]&lt;br /&gt;
* [[Checking trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Setting trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Running DB query from UCCX CLI]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Security =&lt;br /&gt;
* [[CSA]]&lt;br /&gt;
* [[IPTables (firewall)]]&lt;br /&gt;
* [[Engine]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX IP Address/Hostname change =&lt;br /&gt;
* [[IP Hostname change Log Collection]]&lt;br /&gt;
* [[Analyzing CCX IP/Hostname change log ]]&lt;br /&gt;
* [[Identify Cluster Issues after IP/Hostname change]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Wallboard Configuration =&lt;br /&gt;
* [[Troubleshooting and Log Collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CET =&lt;br /&gt;
* [[DB config objects not showing in CET]]&lt;br /&gt;
* [[CET tool exits with CetTool.bat not found error]]&lt;br /&gt;
* [[Enabling remote user account through CLI]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Licensing =&lt;br /&gt;
* [[Invalid License MAC address error at time of License Upload]]&lt;br /&gt;
* [[Need License MAC before system install to reduce time delay]]&lt;br /&gt;
* [[New Licenses required (License Rehosting)]]&lt;br /&gt;
* [[Using Demo licenses]]&lt;br /&gt;
* [[Warning: System running on grace period message on admin login]]&lt;br /&gt;
* [[Error: Grace period expired on admin login]]&lt;br /&gt;
* [[Warning: Some features are going to expire in x days message on admin login]]&lt;br /&gt;
* [[Error: License expired error on admin login]]&lt;br /&gt;
* [[Removing temporary, demo or invalid license files]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/HRC_installation_fails_with_Error_1722</id>
		<title>HRC installation fails with Error 1722</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/HRC_installation_fails_with_Error_1722"/>
				<updated>2011-10-21T09:52:19Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* HRC installation fails with Error 1722 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== HRC installation fails with Error 1722 ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| HRC installation fails with 5022 error&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| Error messages from the log:&amp;lt;host_name&amp;gt;CiscoAppReports&amp;lt;n&amp;gt;.log &lt;br /&gt;
---------------------------------------------------------------------  &lt;br /&gt;
63: 4/26/2011 4:33:27 PM %CHC-LOG_SUBFAC-3-UNK: Error # 339 ,Description= Component 'crviewer.dll' or one of its dependencies not correctly registered: a file is missing or invalid ,LastDllError= 0&lt;br /&gt;
64: 4/26/2011 4:33:27 PM %CHC-LOG_SUBFAC-7-UNK:Prompting user with error (titleID=5021msgID=5022)&lt;br /&gt;
65: 4/26/2011 4:33:27 PM %CHC-LOG_SUBFAC-3-UNK:Exceptional Error | An Exceptional Error occurred. Application exiting.  Check the log file for error 5022.&lt;br /&gt;
66: 4/26/2011 4:33:51 PM &lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| Following can be possibilities - &lt;br /&gt;
HRC is being upgraded from 4.x to later versions and the old installation has not been cleaned out correctly. &lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|&lt;br /&gt;
* Ensure that 'Crystal Reports' software and third party applications that use Crystal Reports are not present on the machine.&lt;br /&gt;
&lt;br /&gt;
1. Uninstall HRC completely.&lt;br /&gt;
-  During uninstallation, the installer may ask the permission to delete some DLLs.  Click 'Yes' for such messages.&lt;br /&gt;
-  During uninstallation, the installer may ask permission to do  file operations on some exe files. . Click 'Yes' for such messages.&lt;br /&gt;
&lt;br /&gt;
2..After uninstallation, unregister dlls in the following way&lt;br /&gt;
  &lt;br /&gt;
i) Go to Command Prompt (Run-&amp;gt;cmd)&lt;br /&gt;
ii) Go to System32 directory (cd C:\Windows\System32)&lt;br /&gt;
iii) Type commands regsvr32 / u craxdrt.dll (Press enter) &amp;amp; regsvr32 / u crviewer.dll (Press enter)&lt;br /&gt;
iv) Exit cmd and delete craxdrt.dll and crviewer.dll from &amp;quot;C:\Windows\System32&amp;quot;&lt;br /&gt;
&lt;br /&gt;
3. Remove the following registry entries (if they are present) from 'HKEY_CURRENT_USER' and 'HKEY_LOCAL_MACHINE' . Use 'regedit' command from 'start-&amp;gt;Run'&lt;br /&gt;
- Cisco Systems -&amp;gt;Cisco Historical report Client&lt;br /&gt;
- Crystal reports&lt;br /&gt;
- Business Objects&lt;br /&gt;
&lt;br /&gt;
4. Delete the Crystal dlls from 'C:\WINDOWS\System 32' folder:&lt;br /&gt;
&lt;br /&gt;
List of Dlls Removed&lt;br /&gt;
====================&lt;br /&gt;
&lt;br /&gt;
craxdrt.dll&lt;br /&gt;
craxdrt_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crdb_ado.dll&lt;br /&gt;
crdb_ado_res_*.dll (total 13 dlls for 13 languages))&lt;br /&gt;
credui.dll&lt;br /&gt;
crqe.dll&lt;br /&gt;
crqe_res_*.dll (total 13 dlls for 13 languages))&lt;br /&gt;
crtowards_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crtslv.dll&lt;br /&gt;
crviewer.dll&lt;br /&gt;
crxf_pdf.dll&lt;br /&gt;
crxf_pdf_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crxf_rtf.dll&lt;br /&gt;
crxf_rtf_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crxf_xls.dll&lt;br /&gt;
crxf_xls_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
cxlib**.dll&lt;br /&gt;
&lt;br /&gt;
5.Delete the following folders (if present) from 'C:\Program files'&lt;br /&gt;
'Cisco CRS Historical reports', 'Cisco UCCX Historical Reports', 'Business Objects', 'Crystal reports'&lt;br /&gt;
&lt;br /&gt;
6. Reboot the machine if a reboot is not performed after uninstallation.&lt;br /&gt;
&lt;br /&gt;
7. Do a fresh install of HRC downloaded from the UCCX box.&lt;br /&gt;
- During installation, the installer may ask permission to install some files .  Click 'Yes' for such messages.&lt;br /&gt;
&lt;br /&gt;
8. Register dlls.&lt;br /&gt;
i) Go to Command Prompt (Run-&amp;gt;cmd)&lt;br /&gt;
ii) Go to System32 directory (cd C:\Windows\System32)&lt;br /&gt;
iii) Type commands 'regsvr32 craxdrt.dll' (Press enter) &amp;amp; 'regsvr32 crviewer.dll' (Press enter)&lt;br /&gt;
iv) Exit cmd&lt;br /&gt;
&lt;br /&gt;
9) Launch HRC&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| |Unified CCX, Release 7.0 | Unified CCX, Release 8.0 | Unified CCX, Release 8.5&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/HRC_installation_fails_with_Error_1722</id>
		<title>HRC installation fails with Error 1722</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/HRC_installation_fails_with_Error_1722"/>
				<updated>2011-10-21T09:51:58Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* HRC installation fails with Error 1722 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== HRC installation fails with Error 1722 ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| HRC installation fails with 5022 error&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| Error messages from the log:&amp;lt;host_name&amp;gt;CiscoAppReports&amp;lt;n&amp;gt;.log &lt;br /&gt;
---------------------------------------------------------------------  &lt;br /&gt;
63: 4/26/2011 4:33:27 PM %CHC-LOG_SUBFAC-3-UNK: Error # 339 ,Description= Component 'crviewer.dll' or one of its dependencies not correctly registered: a file is missing or invalid ,LastDllError= 0&lt;br /&gt;
64: 4/26/2011 4:33:27 PM %CHC-LOG_SUBFAC-7-UNK:Prompting user with error (titleID=5021msgID=5022)&lt;br /&gt;
65: 4/26/2011 4:33:27 PM %CHC-LOG_SUBFAC-3-UNK:Exceptional Error | An Exceptional Error occurred. Application exiting.  Check the log file for error 5022.&lt;br /&gt;
66: 4/26/2011 4:33:51 PM &lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| Following can be possibilities - &lt;br /&gt;
HRC is being upgraded from 4.x to later versions and the old installation has not been cleaned out correctly. &lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|&lt;br /&gt;
* Ensure that 'Crystal Reports' software and third party applications that use Crystal Reports are not present on the machine.&lt;br /&gt;
&lt;br /&gt;
1. Uninstall HRC completely.&lt;br /&gt;
-  During uninstallation, the installer may ask the permission to delete some DLLs.  Click 'Yes' for such messages.&lt;br /&gt;
-  During uninstallation, the installer may ask permission to do  file operations on some exe files. . Click 'Yes' for such messages.&lt;br /&gt;
&lt;br /&gt;
2..After uninstallation, unregister dlls in the following way&lt;br /&gt;
  &lt;br /&gt;
i) Go to Command Prompt (Run-&amp;gt;cmd)&lt;br /&gt;
ii) Go to System32 directory (cd C:\Windows\System32)&lt;br /&gt;
iii) Type commands regsvr32 / u craxdrt.dll (Press enter) &amp;amp; regsvr32 / u crviewer.dll (Press enter)&lt;br /&gt;
iv) Exit cmd and delete craxdrt.dll and crviewer.dll from &amp;quot;C:\Windows\System32&amp;quot;&lt;br /&gt;
&lt;br /&gt;
3. Remove the following registry entries (if they are present) from 'HKEY_CURRENT_USER' and 'HKEY_LOCAL_MACHINE' . Use 'regedit' command from 'start-&amp;gt;Run'&lt;br /&gt;
- Cisco Systems -&amp;gt;Cisco Historical report Client&lt;br /&gt;
- Crystal reports&lt;br /&gt;
- Business Objects&lt;br /&gt;
&lt;br /&gt;
4. Delete the Crystal dlls from 'C:\WINDOWS\System 32' folder:&lt;br /&gt;
&lt;br /&gt;
List of Dlls Removed&lt;br /&gt;
====================&lt;br /&gt;
&lt;br /&gt;
craxdrt.dll&lt;br /&gt;
craxdrt_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crdb_ado.dll&lt;br /&gt;
crdb_ado_res_*.dll (total 13 dlls for 13 languages))&lt;br /&gt;
credui.dll&lt;br /&gt;
crqe.dll&lt;br /&gt;
crqe_res_*.dll (total 13 dlls for 13 languages))&lt;br /&gt;
crtowards_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crtslv.dll&lt;br /&gt;
crviewer.dll&lt;br /&gt;
crxf_pdf.dll&lt;br /&gt;
crxf_pdf_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crxf_rtf.dll&lt;br /&gt;
crxf_rtf_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crxf_xls.dll&lt;br /&gt;
crxf_xls_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
cxlib**.dll&lt;br /&gt;
&lt;br /&gt;
5.Delete the following folders (if present) from 'C:\Program files'&lt;br /&gt;
'Cisco CRS Historical reports', 'Cisco UCCX Historical Reports', 'Business Objects', 'Crystal reports'&lt;br /&gt;
&lt;br /&gt;
6. Reboot the machine if a reboot is not performed after uninstallation.&lt;br /&gt;
&lt;br /&gt;
7. Do a fresh install of HRC downloaded from the UCCX box.&lt;br /&gt;
- During installation, the installer may ask permission to install some files .  Click 'Yes' for such messages.&lt;br /&gt;
&lt;br /&gt;
8. Register dlls.&lt;br /&gt;
i) Go to Command Prompt (Run-&amp;gt;cmd)&lt;br /&gt;
ii) Go to System32 directory (cd C:\Windows\System32)&lt;br /&gt;
iii) Type commands 'regsvr32 craxdrt.dll' (Press enter) &amp;amp; 'regsvr32 crviewer.dll' (Press enter)&lt;br /&gt;
iv) Exit cmd&lt;br /&gt;
&lt;br /&gt;
9) Launch HRC&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Unified CCX, Release 7.0 | Unified CCX, Release 8.0 | Unified CCX, Release 8.5&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/HRC_shows_old/deleted_agents_in_list_of_available_agents</id>
		<title>HRC shows old/deleted agents in list of available agents</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/HRC_shows_old/deleted_agents_in_list_of_available_agents"/>
				<updated>2011-10-21T09:49:18Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* HRC shows old/deleted agents in list of available agents */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== HRC shows old/deleted agents in list of available agents  ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Deleted agents still show up in agent dropdown&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| N/A&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| Following can be possibilities - &lt;br /&gt;
When an agent is deleted in UCCX, it gets disabled in the DB (i.e. active=f). HRC when launched, will populate the list of all available agents regardless of whether they are active or not. This is because although some agents may not be active currently, if someone chooses to pull up a report for a timeframe when the agents were active, the user should be given a choice to select those agents. &lt;br /&gt;
&lt;br /&gt;
Entries should never be deleted from the DB directly. Doing this will affect historical reports. If agent X is deleted directly from the DB and an end user attempts to pull up a report for a timeframe when the agent was active, it results in incomplete/incorrect reports. &lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|&lt;br /&gt;
The correct way to get rid of unwanted data would be to schedule a DB purge.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| | Unified CCX, Release 7.0 | Unified CCX, Release 8.0 | Unified CCX, Release 8.5&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/HRC_shows_old/deleted_agents_in_list_of_available_agents</id>
		<title>HRC shows old/deleted agents in list of available agents</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/HRC_shows_old/deleted_agents_in_list_of_available_agents"/>
				<updated>2011-10-21T09:47:26Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: Created page with &amp;quot;== HRC shows old/deleted agents in list of available agents  ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | Deleted agents still show up in agent dropdown |- ! '''Error Message''...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== HRC shows old/deleted agents in list of available agents  ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Deleted agents still show up in agent dropdown&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| N/A&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| Following can be possibilities - &lt;br /&gt;
When an agent is deleted in UCCX, it gets disabled in the DB (i.e. active=f). HRC when launched, will populate the list of all available agents regardless of whether they are active or not. This is because although some agents may not be active currently, if someone chooses to pull up a report for a timeframe when the agents were active, the user should be given a choice to select those agents. &lt;br /&gt;
&lt;br /&gt;
Entries should never be deleted from the DB directly. Doing this will affect historical reports. If agent X is deleted directly from the DB and an end user attempts to pull up a report for a timeframe when the agent was active, it results in incomplete/incorrect reports. &lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|&lt;br /&gt;
The correct way to get rid of unwanted data would be to schedule a DB purge.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Unified CCX, Release 7.0 | Unified CCX, Release 8.0 | Unified CCX, Release 8.5&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/HRC_installation_fails_with_Error_1722</id>
		<title>HRC installation fails with Error 1722</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/HRC_installation_fails_with_Error_1722"/>
				<updated>2011-10-21T09:32:21Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: Created page with &amp;quot;== HRC installation fails with Error 1722 ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | HRC installation fails |- ! '''Error Message''' | “There is a problem with this windows...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== HRC installation fails with Error 1722 ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| HRC installation fails&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| “There is a problem with this windows installer package…”&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| Following can be possibilities - &lt;br /&gt;
HRC is being upgraded from 4.x to later versions&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|&lt;br /&gt;
* Ensure that 'Crystal Reports' software and third party applications that use Crystal Reports are not present on the machine.&lt;br /&gt;
&lt;br /&gt;
1. Uninstall HRC completely.&lt;br /&gt;
-  During uninstallation, the installer may ask the permission to delete some DLLs.  Click 'Yes' for such messages.&lt;br /&gt;
-  During uninstallation, the installer may ask permission to do  file operations on some exe files. . Click 'Yes' for such messages.&lt;br /&gt;
&lt;br /&gt;
2..After uninstallation, unregister dlls in the following way&lt;br /&gt;
  &lt;br /&gt;
i) Go to Command Prompt (Run-&amp;gt;cmd)&lt;br /&gt;
ii) Go to System32 directory (cd C:\Windows\System32)&lt;br /&gt;
iii) Type commands regsvr32 / u craxdrt.dll (Press enter) &amp;amp; regsvr32 / u crviewer.dll (Press enter)&lt;br /&gt;
iv) Exit cmd and delete craxdrt.dll and crviewer.dll from &amp;quot;C:\Windows\System32&amp;quot;&lt;br /&gt;
&lt;br /&gt;
3. Remove the following registry entries (if they are present) from 'HKEY_CURRENT_USER' and 'HKEY_LOCAL_MACHINE' . Use 'regedit' command from 'start-&amp;gt;Run'&lt;br /&gt;
- Cisco Systems -&amp;gt;Cisco Historical report Client&lt;br /&gt;
- Crystal reports&lt;br /&gt;
- Business Objects&lt;br /&gt;
&lt;br /&gt;
4. Delete the Crystal dlls from 'C:\WINDOWS\System 32' folder:&lt;br /&gt;
&lt;br /&gt;
List of Dlls Removed&lt;br /&gt;
====================&lt;br /&gt;
&lt;br /&gt;
craxdrt.dll&lt;br /&gt;
craxdrt_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crdb_ado.dll&lt;br /&gt;
crdb_ado_res_*.dll (total 13 dlls for 13 languages))&lt;br /&gt;
credui.dll&lt;br /&gt;
crqe.dll&lt;br /&gt;
crqe_res_*.dll (total 13 dlls for 13 languages))&lt;br /&gt;
crtowards_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crtslv.dll&lt;br /&gt;
crviewer.dll&lt;br /&gt;
crxf_pdf.dll&lt;br /&gt;
crxf_pdf_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crxf_rtf.dll&lt;br /&gt;
crxf_rtf_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
crxf_xls.dll&lt;br /&gt;
crxf_xls_res_*.dll (total 13 dlls for 13 languages)&lt;br /&gt;
cxlib**.dll&lt;br /&gt;
&lt;br /&gt;
5.Delete the following folders (if present) from 'C:\Program files'&lt;br /&gt;
'Cisco CRS Historical reports', 'Cisco UCCX Historical Reports', 'Business Objects', 'Crystal reports'&lt;br /&gt;
&lt;br /&gt;
6. Reboot the machine if a reboot is not performed after uninstallation.&lt;br /&gt;
&lt;br /&gt;
7. Do a fresh install of HRC downloaded from the UCCX box.&lt;br /&gt;
- During installation, the installer may ask permission to install some files .  Click 'Yes' for such messages.&lt;br /&gt;
&lt;br /&gt;
8. Register dlls.&lt;br /&gt;
i) Go to Command Prompt (Run-&amp;gt;cmd)&lt;br /&gt;
ii) Go to System32 directory (cd C:\Windows\System32)&lt;br /&gt;
iii) Type commands 'regsvr32 craxdrt.dll' (Press enter) &amp;amp; 'regsvr32 crviewer.dll' (Press enter)&lt;br /&gt;
iv) Exit cmd&lt;br /&gt;
&lt;br /&gt;
9) Launch HRC&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Unified CCX, Release 7.0 | Unified CCX, Release 8.0 | Unified CCX, Release 8.5&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0</id>
		<title>Troubleshooting Tips for Unified CCX 8.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0"/>
				<updated>2011-10-21T09:01:45Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting Client [HRC] */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[Hardware not supported]]&lt;br /&gt;
* [[Unable to access NTP server]]&lt;br /&gt;
* [[Hardware not supported Error seen on 7835H2 and/or 7845H2]]&lt;br /&gt;
&lt;br /&gt;
= Backup and Restore =&lt;br /&gt;
&lt;br /&gt;
= Windows to Linux Upgrade =&lt;br /&gt;
* [[Desktop Agent Config backup operation failed using PUT]]&lt;br /&gt;
* [[Backup operation failed while backing up Config/Database/Recordings using PUT]]&lt;br /&gt;
* [[Pre-Upgrade Tool backup operation is not supported]]&lt;br /&gt;
* [[CVD communication failed during backup using PUT]]&lt;br /&gt;
* [[Could not find the Engine/DB master node during backup using PUT]]&lt;br /&gt;
* [[Database size is not supported during backup using PUT]]&lt;br /&gt;
* [[CCX Node is not reachable during backup using PUT]]&lt;br /&gt;
* [[Not all the recording files are backed up during backup using PUT]]&lt;br /&gt;
* [[Power failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[Failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[FTP/SFTP path not accessible during data restore]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in deployment type]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in license package]]&lt;br /&gt;
* [[Invalid backup TAR file used during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Not enough space to stage backup file on Unified CCX 8.0(1) during restore]]&lt;br /&gt;
* [[Component activation failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Activating the node as Publisher failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Database manager is not IN_SERVICE during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of configuration data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of DB data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Node 2 CTI ports removal failed during restore]]&lt;br /&gt;
* [[Recordings not getting played after upgrade]]&lt;br /&gt;
* [[Deletion of Node 2 JTAPI user from CUCM fails during restore]]&lt;br /&gt;
* [[The VRU connection port for ICM Subsystem fails to migrate during restore of IP-IVR system]]&lt;br /&gt;
* [[Problem occurred during backing up of restore logs]]&lt;br /&gt;
* [[PUT backup fails during Desktop Agent Config backup operation]]&lt;br /&gt;
&lt;br /&gt;
= Linux to Linux Upgrade =&lt;br /&gt;
* [http://zed.cisco.com/confluence/display/TRIAGE/Upgrade+FAQs Link to Platform Upgrade FAQ]&lt;br /&gt;
* [[No valid upgrade options found while running upgrade on node2]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Telephony Subsystem =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the subsystem in full service? If not refer to section for [[#Telephony Subsystem Out Of Service or Partial Service Issues]] below&lt;br /&gt;
* Also cross check JTAPI Client and Data sync. Refer to [[JTAPI Client and data resynchronization]]&lt;br /&gt;
&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on SS_TEL]]&lt;br /&gt;
* [[Turning on Unified CCX Telephony Client traces]]&lt;br /&gt;
* [[Turning on UCM CCM and CTI SDI and SDL traces]]&lt;br /&gt;
&lt;br /&gt;
=== Telephony Subsystem Out Of Service or Partial Service Issues ===&lt;br /&gt;
* [[Trigger partition change causes JTAPI subsystem to go to Partial Service]]&lt;br /&gt;
* [[Telephony Subsystem in Partial Service - calculateGroupReadiness indicates groups NOT READY]]&lt;br /&gt;
* [[Standard CTI Enabled role for JTAPI user]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - Unable to create provider]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - DB_ACCESS_ERROR]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service/Partial Service - Unable to Register CTI Port/Route Point]]&lt;br /&gt;
* [[Trigger Configuration Error]]&lt;br /&gt;
* [[Missing AddrInService events]]&lt;br /&gt;
* [[UCM Telephony SS in partial service after fall back to Node1]]&lt;br /&gt;
* [[UCM Telephony SS in partial service on a node]]&lt;br /&gt;
* [[JTAPI Client and data resynchronization]]&lt;br /&gt;
* [[JTAPI provider goes out of service]]&lt;br /&gt;
* [[Issues in JTAPI Port Recovery]]&lt;br /&gt;
&lt;br /&gt;
=== Callflow guides ===&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - IVR Call Flow]]&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - ICD Call Flow]]&lt;br /&gt;
&lt;br /&gt;
=== Identifying Issues in Call Flow ===&lt;br /&gt;
* [[Possible Issues in an ICD call flow]] &lt;br /&gt;
* Call is rejected as soon as it is received by Unified CCX&lt;br /&gt;
** [[REMOTE_TIMEOUT - No idle channels]]&lt;br /&gt;
* Call is not offered on the CTI Port&lt;br /&gt;
** [[TRIGGER_FAIL]]&lt;br /&gt;
** [[TRIGGER_MAX_SESSION]]&lt;br /&gt;
** [[Configuration issues]]&lt;br /&gt;
* Call is rejected after it is offered on the CTI Port&lt;br /&gt;
** [[SETUP_TIMEOUT]]&lt;br /&gt;
** [[SETUP_FAIL]]&lt;br /&gt;
* Issues invoking Application Task&lt;br /&gt;
** [[Null or Default Application Task]]&lt;br /&gt;
** [[ApplicationMaxSessionsException]]&lt;br /&gt;
** [[Invalid Script]]&lt;br /&gt;
* [[Media Setup Failure]]&lt;br /&gt;
* [[Codec Mismatch between Caller and CTI Port]]&lt;br /&gt;
* [[Call fails with CallCtlConnFailed event]]&lt;br /&gt;
* [[JTAPI Exception during redirect, accept, answer, transfer request]]&lt;br /&gt;
* [[Consult call fails with RESOURCE_BUSY]]&lt;br /&gt;
* Consult Call is not answered at agent extension&lt;br /&gt;
** [[RESOURCE_NOT_ACKNOWLEDGING]]&lt;br /&gt;
** [[RESOURCE_FORWARDING]]&lt;br /&gt;
* [[Could not meet post conditions of call.transfer]]&lt;br /&gt;
* [[Transfer does not receive CiscoTransferEndEv]]&lt;br /&gt;
* [[Multiple transfer failures]]&lt;br /&gt;
* [[Transfer success is false]]&lt;br /&gt;
&lt;br /&gt;
===Other tips===&lt;br /&gt;
* [[Call aborted due to WFMaxExecutedStepsExceededException]]&lt;br /&gt;
* [[Common Cause Codes and Meta Codes in JTAPI]]&lt;br /&gt;
* [[Troubleshooting JTAPI CCN Exceptions]]&lt;br /&gt;
* [[Codec support issues]]&lt;br /&gt;
* [[Commonly used regular expressions]]&lt;br /&gt;
* [[How to escalate an issue to IPCBU JTAPI team]]&lt;br /&gt;
* http://developer.cisco.com/web/jtapi/docs&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Media subsystem =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Media Traces]]&lt;br /&gt;
* [[Turning on IPVMS Traces]]&lt;br /&gt;
===General Media Issue===&lt;br /&gt;
* [[Media subsystem is stuck in initializing state]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express = &lt;br /&gt;
* [[Enabling CME Tracing]]&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
* [[Unified CCX stops working after Unified CME is rebuilt after crash]]&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
* [[Creation of Outbound trigger DN on UCCX fails]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IPIVR/ICM =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the ICM subsystem in full service in the IVR box? If not refer to section for [[#ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ]] below.&lt;br /&gt;
&lt;br /&gt;
* Verify whether the license uploaded on the system is for IVR.&lt;br /&gt;
 &lt;br /&gt;
* [[ Logs to be enabled for IVR issues ]]&lt;br /&gt;
&lt;br /&gt;
*  After the above mentioned logs are enabled, search the MIVR logs for any Exceptions- &amp;quot;exception&amp;quot; or errors. The following exceptions seen in MIVR logs can be ignored as they are benign in nature:&lt;br /&gt;
&lt;br /&gt;
     435718: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-DISPATCH_FAILURE:A failure occured while dispatching an event: &lt;br /&gt;
     listener=com.cisco.wf.subsystems.ged125.ICMChannel$CallListenerAdapter@118cef5,Exception=&lt;br /&gt;
     java.lang.IllegalStateException: already cleared&lt;br /&gt;
     435719: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-EXCEPTION:java.lang.IllegalStateException: already cleared&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
Based on the exceptions, Isolate the issues into the following -&lt;br /&gt;
&lt;br /&gt;
=== JTAPI issues ===&lt;br /&gt;
&lt;br /&gt;
Many a times, calls fail in IVR/ICM  due to telephony/JTAPI issues. Refer to the [http://docwiki-dev.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0#Cisco_Unified_Communications_Manager_Telephony_Subsystem Cisco Unified Communications Manager Telephony Subsystem] section and check whether the calls are failing at JTAPI level due to which ICM subsystem is unable to process calls in IPIVR.&lt;br /&gt;
&lt;br /&gt;
=== ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[ ICM subsystem is in OUT OF SERVICE state from IVR side and also the VRU PIM stays in IDLE state rather than ACTIVE state in the ICM peripheral gateway ]]&lt;br /&gt;
          &lt;br /&gt;
* [[ Calls to IVR are failing and ICM subsystem is OUT_OF_SERVICE ]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Issues ===&lt;br /&gt;
 &lt;br /&gt;
* [[ Calls are failing in IVR and user hears busy tone for these calls ]]&lt;br /&gt;
&lt;br /&gt;
* [[IVR sends wrong values to ICM for the call variables ]] &lt;br /&gt;
&lt;br /&gt;
* [[Call transfer fails if the agent transfers the call from one IVR to a different IVR ]]&lt;br /&gt;
&lt;br /&gt;
* [[Intermittent Translation Route to VRU failure ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Call reserves an agent although caller hanged in IPIVR ]]&lt;br /&gt;
&lt;br /&gt;
* [[ IVR gets freezed when the calls are more than the actual ports and requires an engine restart for recovery ]]&lt;br /&gt;
&lt;br /&gt;
=== Set up Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing in IVR intermittently â€“ Some calls go through successfully and some fail intermittently and it may seem like the TCP connection is broken from the VRU PIM side at the time of the failed calls ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing with ApplicationMaxSessionsException because there are not enough sessions created for an ICM application in IPIVR ]]&lt;br /&gt;
&lt;br /&gt;
* [[ What versions of IP IVR are supported for UCCE 8.0 ]]&lt;br /&gt;
&lt;br /&gt;
=== Other Tips ===&lt;br /&gt;
&lt;br /&gt;
* [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
* Many services in Deactivated state. Refer to [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
&lt;br /&gt;
* [[Error in IE (Class doesn't support Automation) ]]&lt;br /&gt;
* [[User Authentication error during CUCM configuration ]]&lt;br /&gt;
* [[HTTP 403 or security protocols error ]]&lt;br /&gt;
* [[Add to cluster repeats in a loop ]]&lt;br /&gt;
* [[Object error during component activation ]]&lt;br /&gt;
* [[Components in deactivated state ]]&lt;br /&gt;
* [[UCCX Data containing &amp;quot;less than &amp;quot; or &amp;quot;greater than&amp;quot; characters fails to save ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
*[[Script porting issues]]&lt;br /&gt;
*[[W1 upgrade issues]]&lt;br /&gt;
*[[Editor hanging issues]]&lt;br /&gt;
*[[Issues with loading custom code]]&lt;br /&gt;
*[[Issues with installing on windows vista and windows 7]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Application subsystem is in partial service]] &lt;br /&gt;
* [[Changes to applications do not register]] &lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]] &lt;br /&gt;
* [[An error message plays when calling a CTI route point]] &lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[ How to debug OutOfMemoryError ]]&lt;br /&gt;
* [[ How to analyze heap dumps ]]&lt;br /&gt;
* [[ How to debug the root cause for high CPU usage ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX ICD =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Required Tracing ===&lt;br /&gt;
* [[Log_Levels_for_issues_related_to_Routing_and_Queuing]]&lt;br /&gt;
=== RmCm is OOS OR in Partial Service ===&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem stuck in INITIALIZING state]]&lt;br /&gt;
&lt;br /&gt;
=== RmCm Configurations issues ===&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
&lt;br /&gt;
=== Agent Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[Unable to login Unified CCX Agent ]]&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state-Script queues and dequeueAll's the call to multiple CSQ's]]&lt;br /&gt;
* [[Agent stuck in Reserved state]]&lt;br /&gt;
* [[Agent stuck in Reserved state-&amp;quot;Not posting the ContactPresentedEvent&amp;quot; seen in logs]]&lt;br /&gt;
* [[Agent stuck in Reserved state-SessionTransferredMsg shows Initial and Final Contact Type:IAQ_CONSULT_CONTACT ]]&lt;br /&gt;
* [[Agent State transformations in Select Join and Join Across Line scenarios]]&lt;br /&gt;
* [[Issues related to Agents Using Shared Lines]]&lt;br /&gt;
&lt;br /&gt;
=== Call Issues ===&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Calls are sometimes not delivered accordingly to Skill Competence when Resource Selection Criteria is Most Skilled]]&lt;br /&gt;
* [[Same call is presented to two agents]]&lt;br /&gt;
* [[Agent and customer start hearing UCCX recordings played over their conversation]]&lt;br /&gt;
* [[CSD shows oldest in queue as 1(00:00:00)]]&lt;br /&gt;
&lt;br /&gt;
=== Scripting Issue ===&lt;br /&gt;
* [[Call redirected from one RP to the other multiple times with Redirect Step]]&lt;br /&gt;
* [[Call Dequeue Step sometimes does not dequeue the call]]&lt;br /&gt;
&lt;br /&gt;
=== Unsupported scenarios ===&lt;br /&gt;
&lt;br /&gt;
* [[IncompatibleSessionException seen in MIVR logs]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Guides ===&lt;br /&gt;
* [[Guide to read MIVR logs for a simple ICD call]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[RTR in SelectJoin, DirectTransfer, JoinAcrossLines, DirectTransferAcrossLines Scenarios]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Pre-Requisites]]&lt;br /&gt;
* [[Required Log levels]]&lt;br /&gt;
* [[Historical records not getting written to database]]&lt;br /&gt;
* [[Discrepancies of JAL Scenarios]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting Client [HRC]=&lt;br /&gt;
* [[Required Log levels For HRC]]&lt;br /&gt;
* [[Required Log levels For HRC Scheduler]]&lt;br /&gt;
* [[Error when launching HRC on Windows 7]]&lt;br /&gt;
* [[HRC login fails with a communication error message]] &lt;br /&gt;
* [[A Database Connection Error 5051 error appears in HRC 8.0 or 8.5]]&lt;br /&gt;
* [[Unable to export Scheduled Report to mapped drive.]]&lt;br /&gt;
* [[Charts do not appear on report]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Column headings are misplaced in MS Excel(Data Only) format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[&amp;quot;Access Denied&amp;quot; error while printing from HRC]]&lt;br /&gt;
* [[&amp;quot;Could not start print job&amp;quot; error while printing from HRC]]&lt;br /&gt;
* [[Login/Connection issues of Historical Reports Client over a non-Cisco VPN]]&lt;br /&gt;
* [[HRC Scheduler does not generate reports]]&lt;br /&gt;
* [[HRC installation fails with Error 1722]]&lt;br /&gt;
* [[HRC shows old/deleted agents in list of available agents]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Automatic Speech Recognition Traces]]&lt;br /&gt;
===General ASR Issues===&lt;br /&gt;
* [[How To Bring MRCP ASR Provider To InService State]]&lt;br /&gt;
* [[Nuance 9.0 not working with Unified CCX]]&lt;br /&gt;
* [[How to integrate MRCP ASR-TTS with Unified CCX]]&lt;br /&gt;
* [[Assure ASR-TTS ports/resources are freed up after the application finishes]]&lt;br /&gt;
* [[UnsupportedGrammarException with Cisco Media i.e Default Dialog group]]&lt;br /&gt;
* [[Built in Grammar minlength and maxlength with Default or Cisco Media Group for DTMF inputs]]&lt;br /&gt;
* [[How to allow both DTMF and Speech Recognition together]]&lt;br /&gt;
* [[The Names are not recognized]]&lt;br /&gt;
* [[MRCP ASR Subsystem Status is out of service]]&lt;br /&gt;
* [[MRCP ASR Providers, MRCP Servers, or Groups Changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
*&amp;lt;B&amp;gt;Trace Levels&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Log Level usage in Outbound Subsystem]]&lt;br /&gt;
**[[Log Levels required to troubleshoot outbound issues]]&lt;br /&gt;
*&amp;lt;B&amp;gt;General Outbound Issues&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound contacts not being dialed after failover]]&lt;br /&gt;
**[[Outbound calls fail with no callback number]]&lt;br /&gt;
**[[Outbound agent Stuck in Reserved state]]&lt;br /&gt;
**[[Outbound General Configuration data is changed]]&lt;br /&gt;
**[[Outbound Subsystem is Out Of Service]]&lt;br /&gt;
*&amp;lt;B&amp;gt;Issues Related To Outbound Call Flow&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound agents are ready for long time with available contacts]]&lt;br /&gt;
*&amp;lt;B&amp;gt;CAD/CDA related issues&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Outbound Buttons are disabled on CAD]]&lt;br /&gt;
** [[CDA doesn't show checkbox for Outbound Dialer Mode]]&lt;br /&gt;
&lt;br /&gt;
= Text-To-Speech =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Text To Speech traces]]&lt;br /&gt;
=== General TTS Issues ===&lt;br /&gt;
* [[Setting TTS Provider as Default TTS Provider]]&lt;br /&gt;
* [[Control prosody rate in PlayPrompt TTS block]]&lt;br /&gt;
* [[TTS Provider shows Last Status when Added Again]]&lt;br /&gt;
* [[MRCP TTS subsystem shows out of service status]]&lt;br /&gt;
* [[MRCP TTS Providers, MRCP Servers, locales, or genders changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
*&amp;lt;B&amp;gt; Real-Time Monitoring Tool (RTMT)&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Troubleshooting RTMT Installation Errors]]&lt;br /&gt;
** [[Not able to install different RTMT clients on the same box]]&lt;br /&gt;
** [[Unable to Log in to Cisco Unified Real-Time Monitoring Tool]]&lt;br /&gt;
** [[Unable to Collect data for the second node from RTMT when the Primary Node is down]]&lt;br /&gt;
** [[Troubleshooting DiskSpace and Partition related alerts]]&lt;br /&gt;
** [[Collecting logs for troubleshooting RTMT Alerts]]&lt;br /&gt;
** [[Configuring RTMT Trace Settings]]&lt;br /&gt;
*&amp;lt;B&amp;gt;SNMP&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Log Collection for SNMP Voice SubAgent issues]]&lt;br /&gt;
** [[Unable to receive Unified CCX SNMP Traps]]&lt;br /&gt;
** [[SNMP operations on the Voice MIB not fetching any output]]&lt;br /&gt;
** [[Troubleshooting Alarms/Alerts to be sent as SNMP Traps]]&lt;br /&gt;
*&amp;lt;B&amp;gt; Log Profile &amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Debugging issues]]&lt;br /&gt;
** [[Known issues]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability (Analysis Manager) =&lt;br /&gt;
* [[I don't see the Analysis Manager Drawer or Menu items]]&lt;br /&gt;
* [[RTMT does not come up or behaves strangely]]&lt;br /&gt;
* [[I cannot log into RTMT]]&lt;br /&gt;
* [[My Test Connectivity for Unified CCX Node is Failing]]&lt;br /&gt;
* [[The Call Records Repository connectivity test is failing]]&lt;br /&gt;
* [[Where can I access RTMT and Analysis Manager logs]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX VXML traces]]&lt;br /&gt;
=== General VXML Issues ===&lt;br /&gt;
* [[How to use JavaScript greater than, less than and ampersand symbols in vxml var expr declaration]]&lt;br /&gt;
* [[Voice Browser Not able to fetch files with dynamic file extensions]]&lt;br /&gt;
* [[Not able to fetch grammar and prompt files through CRTP]]&lt;br /&gt;
* [[VXML tag not working properly with VoiceBrowser]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
&lt;br /&gt;
* [[RCA for Engine failover]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[hear nothing while playing back desktop recorded sessions]]&lt;br /&gt;
* [[VOIP Monitor Subsystem is in partial service or OOS]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CLI =&lt;br /&gt;
* [[UCCX CLI log collection]]&lt;br /&gt;
* [[Analyzing UCCX CLI logs]]&lt;br /&gt;
* [[Cannot login to CLI]]&lt;br /&gt;
* [[Enabling root account from CLI]]&lt;br /&gt;
* [[Checking UCCX version using CLI]]&lt;br /&gt;
* [[Checking if the current node is a VOS publisher]]&lt;br /&gt;
* [[Checking configured UCCX license using CLI]]&lt;br /&gt;
* [[Checking &amp;amp; updating JTAPI Client using CLI]]&lt;br /&gt;
* [[Updating the UCM IP address in UCCX from CLI]]&lt;br /&gt;
* [[Checking trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Setting trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Running DB query from UCCX CLI]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Security =&lt;br /&gt;
* [[CSA]]&lt;br /&gt;
* [[IPTables (firewall)]]&lt;br /&gt;
* [[Engine]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX IP Address/Hostname change =&lt;br /&gt;
* [[IP Hostname change Log Collection]]&lt;br /&gt;
* [[Analyzing CCX IP/Hostname change log ]]&lt;br /&gt;
* [[Identify Cluster Issues after IP/Hostname change]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Wallboard Configuration =&lt;br /&gt;
* [[Troubleshooting and Log Collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CET =&lt;br /&gt;
* [[DB config objects not showing in CET]]&lt;br /&gt;
* [[CET tool exits with CetTool.bat not found error]]&lt;br /&gt;
* [[Enabling remote user account through CLI]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Licensing =&lt;br /&gt;
* [[Invalid License MAC address error at time of License Upload]]&lt;br /&gt;
* [[Need License MAC before system install to reduce time delay]]&lt;br /&gt;
* [[New Licenses required (License Rehosting)]]&lt;br /&gt;
* [[Using Demo licenses]]&lt;br /&gt;
* [[Warning: System running on grace period message on admin login]]&lt;br /&gt;
* [[Error: Grace period expired on admin login]]&lt;br /&gt;
* [[Warning: Some features are going to expire in x days message on admin login]]&lt;br /&gt;
* [[Error: License expired error on admin login]]&lt;br /&gt;
* [[Removing temporary, demo or invalid license files]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Missing_Login/Logout_states_OR_exceedingly_long_logged_in_time</id>
		<title>Missing Login/Logout states OR exceedingly long logged in time</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Missing_Login/Logout_states_OR_exceedingly_long_logged_in_time"/>
				<updated>2011-01-19T10:02:03Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Missing Login/Logout states OR exceedingly long logged in time==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Agent State reports show missing LOGIN or LOGOUT events OR exceedingly long logged in times reported for agents.&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| Faulty reports with incorrect states and logged in times.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The agent's name or userid might have been changed while the agent was still logged in.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|Agent related modifications such as name change or userid change should only be done when the agent is logged out.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 7.x, 8.x&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| CSCtd25404&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2011-01-19T10:01:24Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
* [[4.x to 7.0 upgrade DMT failing at license validation step during the restore]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
* [[Uploading Scripts to Unified CCX throws error]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Purge command did not purge data]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
* [[After the replication between Primary/Secondary was created, the initial snapshot was successful but the merge agents would fail]]&lt;br /&gt;
* [[Uninstall SQL hotfix 2282 is failing]]&lt;br /&gt;
* [[The IPCC server is loosing the ODBC connection after running fine for some time]]&lt;br /&gt;
* [[SQL Agent crash with Red X Mark, and the Node Manager is down]]&lt;br /&gt;
* [[After the upgrade SQL Server got changed to MSDE]]&lt;br /&gt;
* [[From the log: Login failed for user '(null)'. Root cause: Not associated with a trusted SQL Server connection]]&lt;br /&gt;
* [[While doing some configuration change from the Appadmin gets the following error: &amp;quot;Error updating Database&amp;quot;]]&lt;br /&gt;
* [[Primary key violation exception in the MIVR logs while trying to insert a historical record to the Database table]]&lt;br /&gt;
* [[SQLException while uploading prompt, grammar, document using editor steps inside the workflow script]]&lt;br /&gt;
* [[Cannot configure Application or System parameters from the Cisco Unified CCX Administration]]&lt;br /&gt;
* [[Enterprise Database Subsystem is in out of service or in partial service]]&lt;br /&gt;
* [[Can't create a new Datasource from the Appadmin]]&lt;br /&gt;
* [[After creating the datasource and System DSN, it is not getting displayed in the editor step]]&lt;br /&gt;
* [[Not able to view/edit rmcm configurations from node2 appadmin in an HA setup]]&lt;br /&gt;
* [[DBAccessor errors while CVD start up]]&lt;br /&gt;
* [[When trying to delete and create a new Datsource from the appadmin page, there is an error stating Datasource with the same name exists]]&lt;br /&gt;
* [[There is an error displayed in the appadmin while trying to modify the Datasource configuration]]&lt;br /&gt;
* [[Regarding Enterprise Database driver usage]]&lt;br /&gt;
* [[Datastore component activations fails when trying to activate node2 components]]&lt;br /&gt;
* [[Cannot activate datastores on second node in HA deployment. On node2 DB version in Bootstrap   8.00.2187 does not match actual Database Engine version 8.00.2282]]&lt;br /&gt;
* [[Replication Failure seen in the DB control center Appadmin page]]&lt;br /&gt;
* [[Config datastore activation failed.java.sql.SQLException: The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction]]&lt;br /&gt;
* [[Cannot activate Datastore components on HA node]]&lt;br /&gt;
* [[In the Appadmin DB control center node 2 data store is not present in an HA setup]]&lt;br /&gt;
* [[node2 datastore component activation is failing]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup.Insert Error: Column name or number of supplied values does not match table definition.]]&lt;br /&gt;
* [[Replication broken between the two nodes ]]&lt;br /&gt;
* [[Node2 config and historical datastore component activation fails with the error message:java.rmi.NoSuchObjectException: no such object in table]]&lt;br /&gt;
* [[DB Write is failing with Exception: java.sql.SQLException: No row count was produced ExecuteUpdate Error Occurred ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Required Logging Levels]]&lt;br /&gt;
* [[Required Logging Levels for HRC and Scheduler issues]]&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
* [[Total logged in hours for agent very high after name change]]&lt;br /&gt;
* [[Filter by skill/team/resourcegroup not working]]&lt;br /&gt;
* [[Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports]]&lt;br /&gt;
* [[Historical Reporting Data mis-match]]&lt;br /&gt;
* [[Reports show deleted agent as talking]]&lt;br /&gt;
* [[Understanding Data Discrepancy between Different Cisco Unified CCX Reports]]&lt;br /&gt;
* [[Reports don't run after restoring DB backup - collation conflict in logs]]&lt;br /&gt;
* [[Missing Login/Logout states OR exceedingly long logged in time]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
* [[Node Manager service will not stay up due to Bootstrap manager failing to start.]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Missing_Login/Logout_states_OR_exceedingly_long_logged_in_time</id>
		<title>Missing Login/Logout states OR exceedingly long logged in time</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Missing_Login/Logout_states_OR_exceedingly_long_logged_in_time"/>
				<updated>2011-01-19T09:55:51Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: == Missing Login/Logout states OR exceedingly long logged in time==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | Agent State reports show missing LOGIN or LOGOUT events OR exceedingly long ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Missing Login/Logout states OR exceedingly long logged in time==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Agent State reports show missing LOGIN or LOGOUT events OR exceedingly long logged in times reported for agents.&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| Faulty reports with incorrect states and logged in times.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The agent's name or userid might have been changed while the agent was still logged in.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|Agent related modifications such as name change or userid change should only be done when the agent is logged out.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 8.x&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| CSCtd25404&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0</id>
		<title>Troubleshooting Tips for Unified CCX 8.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0"/>
				<updated>2011-01-19T09:50:30Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[Hardware not supported]]&lt;br /&gt;
* [[Unable to access NTP server]]&lt;br /&gt;
* [[Hardware not supported Error seen on 7835H2 and/or 7845H2]]&lt;br /&gt;
* [[8.x installation states the platform is Vmware, though it is not a Vmware]]&lt;br /&gt;
* [[Installation fails to create RAID on MCS-7825-I4-CCX1 servers]]&lt;br /&gt;
&lt;br /&gt;
= Backup and Restore =&lt;br /&gt;
* [[FAILED : Cisco Unified CCX agent desktop configuration data migration]]&lt;br /&gt;
&lt;br /&gt;
= Windows to Linux Upgrade =&lt;br /&gt;
* [[Desktop Agent Config backup operation failed using PUT]]&lt;br /&gt;
* [[Backup operation failed while backing up Config/Database/Recordings using PUT]]&lt;br /&gt;
* [[Pre-Upgrade Tool backup operation is not supported]]&lt;br /&gt;
* [[CVD communication failed during backup using PUT]]&lt;br /&gt;
* [[Could not find the Engine/DB master node during backup using PUT]]&lt;br /&gt;
* [[Database size is not supported during backup using PUT]]&lt;br /&gt;
* [[CCX Node is not reachable during backup using PUT]]&lt;br /&gt;
* [[Not all the recording files are backed up during backup using PUT]]&lt;br /&gt;
* [[Power failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[Failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[FTP/SFTP path not accessible during data restore]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in deployment type]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in license package]]&lt;br /&gt;
* [[Invalid backup TAR file used during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Not enough space to stage backup file on Unified CCX 8.0(1) during restore]]&lt;br /&gt;
* [[Component activation failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Activating the node as Publisher failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Database manager is not IN_SERVICE during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of configuration data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of DB data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Node 2 CTI ports removal failed during restore]]&lt;br /&gt;
* [[Recordings not getting played after upgrade]]&lt;br /&gt;
* [[Deletion of Node 2 JTAPI user from CUCM fails during restore]]&lt;br /&gt;
* [[The VRU connection port for ICM Subsystem fails to migrate during restore of IP-IVR system]]&lt;br /&gt;
* [[Problem occurred during backing up of restore logs]]&lt;br /&gt;
* [[PUT backup fails during Desktop Agent Config backup operation]]&lt;br /&gt;
&lt;br /&gt;
= Linux to Linux Upgrade =&lt;br /&gt;
* [http://zed.cisco.com/confluence/display/TRIAGE/Upgrade+FAQs Link to Platform Upgrade FAQ]&lt;br /&gt;
* [[No valid upgrade options found while running upgrade on node2]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Telephony Subsystem =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the subsystem in full service? If not refer to section for [[#Telephony Subsystem Out Of Service or Partial Service Issues]] below&lt;br /&gt;
* Also cross check JTAPI Client and Data sync. Refer to [[JTAPI Client and data resynchronization]]&lt;br /&gt;
&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on SS_TEL]]&lt;br /&gt;
* [[Turning on Unified CCX Telephony Client traces]]&lt;br /&gt;
* [[Turning on UCM CCM and CTI SDI and SDL traces]]&lt;br /&gt;
&lt;br /&gt;
=== Telephony Subsystem Out Of Service or Partial Service Issues ===&lt;br /&gt;
* [[Trigger partition change causes JTAPI subsystem to go to Partial Service]]&lt;br /&gt;
* [[Telephony Subsystem in Partial Service - calculateGroupReadiness indicates groups NOT READY]]&lt;br /&gt;
* [[Standard CTI Enabled role for JTAPI user]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - Unable to create provider]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - DB_ACCESS_ERROR]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service/Partial Service - Unable to Register CTI Port/Route Point]]&lt;br /&gt;
* [[Trigger Configuration Error]]&lt;br /&gt;
* [[Missing AddrInService events]]&lt;br /&gt;
* [[UCM Telephony SS in partial service after fall back to Node1]]&lt;br /&gt;
* [[UCM Telephony SS in partial service on a node]]&lt;br /&gt;
* [[JTAPI Client and data resynchronization]]&lt;br /&gt;
* [[JTAPI provider goes out of service]]&lt;br /&gt;
* [[Issues in JTAPI Port Recovery]]&lt;br /&gt;
&lt;br /&gt;
=== Callflow guides ===&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - IVR Call Flow]]&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - ICD Call Flow]]&lt;br /&gt;
&lt;br /&gt;
=== Identifying Issues in Call Flow ===&lt;br /&gt;
* [[Possible Issues in an ICD call flow]] &lt;br /&gt;
* Call is rejected as soon as it is received by Unified CCX&lt;br /&gt;
** [[REMOTE_TIMEOUT - No idle channels]]&lt;br /&gt;
* Call is not offered on the CTI Port&lt;br /&gt;
** [[TRIGGER_FAIL]]&lt;br /&gt;
** [[TRIGGER_MAX_SESSION]]&lt;br /&gt;
** [[Configuration issues]]&lt;br /&gt;
* Call is rejected after it is offered on the CTI Port&lt;br /&gt;
** [[SETUP_TIMEOUT]]&lt;br /&gt;
** [[SETUP_FAIL]]&lt;br /&gt;
* Issues invoking Application Task&lt;br /&gt;
** [[Null or Default Application Task]]&lt;br /&gt;
** [[ApplicationMaxSessionsException]]&lt;br /&gt;
** [[Invalid Script]]&lt;br /&gt;
* [[Media Setup Failure]]&lt;br /&gt;
* [[Codec Mismatch between Caller and CTI Port]]&lt;br /&gt;
* [[Call fails with CallCtlConnFailed event]]&lt;br /&gt;
* [[JTAPI Exception during redirect, accept, answer, transfer request]]&lt;br /&gt;
* [[Consult call fails with RESOURCE_BUSY]]&lt;br /&gt;
* Consult Call is not answered at agent extension&lt;br /&gt;
** [[RESOURCE_NOT_ACKNOWLEDGING]]&lt;br /&gt;
** [[RESOURCE_FORWARDING]]&lt;br /&gt;
* [[Could not meet post conditions of call.transfer]]&lt;br /&gt;
* [[Transfer does not receive CiscoTransferEndEv]]&lt;br /&gt;
* [[Multiple transfer failures]]&lt;br /&gt;
* [[Transfer success is false]]&lt;br /&gt;
&lt;br /&gt;
===Other tips===&lt;br /&gt;
* [[Call aborted due to WFMaxExecutedStepsExceededException]]&lt;br /&gt;
* [[Common Cause Codes and Meta Codes in JTAPI]]&lt;br /&gt;
* [[Troubleshooting JTAPI CCN Exceptions]]&lt;br /&gt;
* [[Codec support issues]]&lt;br /&gt;
* [[Commonly used regular expressions]]&lt;br /&gt;
* [[How to escalate an issue to IPCBU JTAPI team]]&lt;br /&gt;
* http://developer.cisco.com/web/jtapi/docs&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Media subsystem =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Media Traces]]&lt;br /&gt;
* [[Turning on IPVMS Traces]]&lt;br /&gt;
===General Media Issue===&lt;br /&gt;
* [[Media subsystem is stuck in initializing state]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express = &lt;br /&gt;
* [[Enabling CME Tracing]]&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
* [[Unified CCX stops working after Unified CME is rebuilt after crash]]&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
* [[Creation of Outbound trigger DN on UCCX fails]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IPIVR/ICM =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the ICM subsystem in full service in the IVR box? If not refer to section for [[#ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG]] below.&lt;br /&gt;
&lt;br /&gt;
* Verify whether the license uploaded on the system is for IVR.&lt;br /&gt;
 &lt;br /&gt;
* [[ Logs to be enabled for IVR issues ]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*  After the above mentioned logs are enabled, search the MIVR logs for any Exceptions- &amp;quot;exception&amp;quot; or errors. The following exceptions seen in MIVR logs can be ignored as they are benign in nature:&lt;br /&gt;
&lt;br /&gt;
     435718: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-DISPATCH_FAILURE:A failure occured while dispatching an event: &lt;br /&gt;
     listener=com.cisco.wf.subsystems.ged125.ICMChannel$CallListenerAdapter@118cef5,Exception=&lt;br /&gt;
     java.lang.IllegalStateException: already cleared&lt;br /&gt;
     435719: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-EXCEPTION:java.lang.IllegalStateException: already cleared&lt;br /&gt;
&lt;br /&gt;
&amp;quot;ICM subsystem in IVR receives call control events such as call cleared, call transferred etc from ICM as well as JTAPI (call manager). Hence, in some cases, this results in race conditions where ICM susbsystem processes the event coming from JTAPI and immediately receives another event for the same call control operation from ICM.  In such cases, the second request fails because the event is already processed by IVR and hence we see DISPATCH_FAILURE exceptions in the logs, which are purely benign.&lt;br /&gt;
&lt;br /&gt;
In normal scenarios, ICM susbsystem(in IVR) notifies the ICM that the call is cleared as soon as it processes the event from JTAPI, in which case ICM does not send another call cleared request to IVR. However, in some cases it may so happen that ICM and JTAPI send this event almost at the same time due to which we see DISPATCH_FAILURE exceptions in the logs as explained above. These exceptions can be ignored as they do not result in any failures in the system.&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
Based on the exceptions, Isolate the issues into the following -&lt;br /&gt;
&lt;br /&gt;
=== JTAPI issues ===&lt;br /&gt;
&lt;br /&gt;
Many a times, calls fail in IVR/ICM  due to telephony/JTAPI issues. Refer to the [[#Cisco Unified Communications Manager Telephony Subsystem]] and check whether the calls are failing at JTAPI level due to which ICM subsystem is unable to process calls in IPIVR.&lt;br /&gt;
&lt;br /&gt;
=== ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[ ICM subsystem is in OUT OF SERVICE state from IVR side and also the VRU PIM stays in IDLE state rather than ACTIVE state in the ICM peripheral gateway. ]]&lt;br /&gt;
          &lt;br /&gt;
* [[ Calls to IVR are failing and ICM subsystem is OUT_OF_SERVICE. ]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Issues ===&lt;br /&gt;
 &lt;br /&gt;
* [[ Calls are failing in IVR and user hears busy tone for these calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[IVR sends wrong values to ICM for the call variables.]] &lt;br /&gt;
&lt;br /&gt;
* [[Call transfer fails if the agent transfers the call from one IVR to a different IVR.]]&lt;br /&gt;
&lt;br /&gt;
* [[Intermittent Translation Route to VRU failure.]]&lt;br /&gt;
&lt;br /&gt;
* [[ Call reserves an agent although caller hanged in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ IVR gets freezed when the calls are more than the actual ports and requires an engine restart for recovery. ]]&lt;br /&gt;
&lt;br /&gt;
=== Set up Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing in IVR intermittently – Some calls go through successfully and some fail intermittently and it may seem like the TCP connection is broken from the VRU PIM side at the time of the failed calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing with ApplicationMaxSessionsException because there are not enough sessions created for an ICM application in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ What versions of IP IVR are supported for UCCE 8.0? ]]&lt;br /&gt;
&lt;br /&gt;
* [[JTAPI OOS on one of the nodes in HA over WAN deployment ]]&lt;br /&gt;
&lt;br /&gt;
=== Other Tips ===&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/CRA/Training/UCCX_8_0_IVR-ICM_Integration.pptx&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/ICM/Components/PG/PIMs/VRU/GED125.doc&lt;br /&gt;
&lt;br /&gt;
* [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
* Many services in Deactivated state. Refer to [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[Error in IE (Class doesn't support Automation) ]]&lt;br /&gt;
* [[User Authentication error during CUCM configuration ]]&lt;br /&gt;
* [[HTTP 403 or security protocols error ]]&lt;br /&gt;
* [[Add to cluster repeats in a loop ]]&lt;br /&gt;
* [[Object error during component activation ]]&lt;br /&gt;
* [[Components in deactivated state ]]&lt;br /&gt;
* [[UCCX Data containing &amp;quot;less than &amp;quot; or &amp;quot;greater than&amp;quot; characters fails to save ]]&lt;br /&gt;
* [[Component activation failed during cluster setup ]]&lt;br /&gt;
* [[JTAPI Trace Level settings not getting saved ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
== Replication ==&lt;br /&gt;
&lt;br /&gt;
*[[Reset and Repair - what is the difference]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
*[[Script porting issues]]&lt;br /&gt;
*[[W1 upgrade issues]]&lt;br /&gt;
*[[Editor hanging issues]]&lt;br /&gt;
*[[Issues with installing on windows vista and windows 7]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Application subsystem is in partial service]] &lt;br /&gt;
* [[Changes to applications do not register]] &lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]] &lt;br /&gt;
* [[An error message plays when calling a CTI route point]] &lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[ How to debug OutOfMemoryError ]]&lt;br /&gt;
* [[ How to analyze heap dumps ]]&lt;br /&gt;
* [[ How to debug the root cause for high CPU usage ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX ICD =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Required Tracing ===&lt;br /&gt;
* [[Log_Levels_for_issues_related_to_Routing_and_Queuing]]&lt;br /&gt;
=== RmCm is OOS OR in Partial Service ===&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem stuck in INITIALIZING state]]&lt;br /&gt;
&lt;br /&gt;
=== RmCm Configurations issues ===&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
&lt;br /&gt;
=== Agent Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[Unified CCX agent is unable to log in]]&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state-Script queues and dequeueAll's the call to multiple CSQ's]]&lt;br /&gt;
* [[Agent stuck in Reserved state]]&lt;br /&gt;
* [[Agent stuck in Reserved state-&amp;quot;Not posting the ContactPresentedEvent&amp;quot; seen in logs]]&lt;br /&gt;
* [[Agent stuck in Reserved state-SessionTransferredMsg shows Initial and Final Contact Type:IAQ_CONSULT_CONTACT ]]&lt;br /&gt;
* [[Agent State transformations in Select Join and Join Across Line scenarios]]&lt;br /&gt;
&lt;br /&gt;
=== Call Issues ===&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Calls are sometimes not delivered accordingly to Skill Competence when Resource Selection Criteria is Most Skilled]]&lt;br /&gt;
* [[Same call is presented to two agents]]&lt;br /&gt;
* [[Agent and customer start hearing UCCX recordings played over their conversation]]&lt;br /&gt;
&lt;br /&gt;
=== Scripting Issue ===&lt;br /&gt;
* [[Call redirected from one RP to the other multiple times with Redirect Step]]&lt;br /&gt;
&lt;br /&gt;
=== Unsupported scenarios ===&lt;br /&gt;
&lt;br /&gt;
* [[IncompatibleSessionException seen in MIVR logs]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Guides ===&lt;br /&gt;
* [[Guide to read MIVR logs for a simple ICD call]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[RTR in SelectJoin, DirectTransfer, JoinAcrossLines, DirectTransferAcrossLines Scenarios]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Pre-Requisites]]&lt;br /&gt;
* [[Required Log levels]]&lt;br /&gt;
* [[Historical records not getting written to database]]&lt;br /&gt;
* [[Discrepancies of JAL Scenarios]]&lt;br /&gt;
* [[Differences among Various Cisco Unified CCX reports]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[some of the HR reports do not show complete data for the entire reporting period or gives no data error]]&lt;br /&gt;
* [[Missing Login/Logout states OR exceedingly long logged in time]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting Client [HRC]=&lt;br /&gt;
* [[Required Log levels For HRC]]&lt;br /&gt;
* [[Required Log levels For HRC Scheduler]]&lt;br /&gt;
* [[Unable to export Scheduled Report to mapped drive.]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Automatic Speech Recognition Traces]]&lt;br /&gt;
===General ASR Issues===&lt;br /&gt;
* [[How To Bring MRCP ASR Provider To InService State]]&lt;br /&gt;
* [[Nuance 9.0 not working with Unified CCX]]&lt;br /&gt;
* [[How to integrate MRCP ASR-TTS with Unified CCX]]&lt;br /&gt;
* [[Assure ASR-TTS ports/resources are freed up after the application finishes]]&lt;br /&gt;
* [[UnsupportedGrammarException with Cisco Media i.e Default Dialog group]]&lt;br /&gt;
* [[Built in Grammar minlength and maxlength with Default or Cisco Media Group for DTMF inputs]]&lt;br /&gt;
* [[How to allow both DTMF and Speech Recognition together]]&lt;br /&gt;
* [[The Names are not recognized]]&lt;br /&gt;
* [[MRCP ASR Subsystem Status is out of service]]&lt;br /&gt;
* [[MRCP ASR Providers, MRCP Servers, or Groups Changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
*&amp;lt;B&amp;gt;Trace Levels&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Log Level usage in Outbound Subsystem]]&lt;br /&gt;
**[[Log Levels required to troubleshoot outbound issues]]&lt;br /&gt;
*&amp;lt;B&amp;gt;General Outbound Issues&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound contacts not being dialed after failover]]&lt;br /&gt;
**[[Outbound calls fail with no callback number]]&lt;br /&gt;
**[[Outbound agent Stuck in Reserved state]]&lt;br /&gt;
**[[Outbound General Configuration data is changed]]&lt;br /&gt;
**[[Outbound Subsystem is Out Of Service]]&lt;br /&gt;
*&amp;lt;B&amp;gt;Issues Related To Outbound Call Flow&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound agents are ready for long time with available contacts]]&lt;br /&gt;
*&amp;lt;B&amp;gt;CAD/CDA related issues&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Outbound Buttons are disabled on CAD]]&lt;br /&gt;
** [[CDA doesn't show checkbox for Outbound Dialer Mode]]&lt;br /&gt;
&lt;br /&gt;
= Text-To-Speech =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Text To Speech traces]]&lt;br /&gt;
=== General TTS Issues ===&lt;br /&gt;
* [[Setting TTS Provider as Default TTS Provider]]&lt;br /&gt;
* [[How To Bring MRCP TTS Provider To InService State ]]&lt;br /&gt;
* [[Control prosody rate in PlayPrompt TTS block]]&lt;br /&gt;
* [[TTS Provider shows Last Status when Added Again]]&lt;br /&gt;
* [[MRCP TTS subsystem shows out of service status]]&lt;br /&gt;
* [[MRCP TTS Providers, MRCP Servers, locales, or genders changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
*&amp;lt;B&amp;gt; Real-Time Monitoring Tool (RTMT)&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Troubleshooting RTMT Installation Errors]]&lt;br /&gt;
** [[Not able to install different RTMT clients on the same box]]&lt;br /&gt;
** [[Unable to Log in to Cisco Unified Real-Time Monitoring Tool]]&lt;br /&gt;
** [[Unable to Collect data for the second node from RTMT when the Primary Node is down]]&lt;br /&gt;
** [[Troubleshooting DiskSpace and Partition related alerts]]&lt;br /&gt;
** [[Collecting logs for troubleshooting RTMT Alerts]]&lt;br /&gt;
** [[Configuring RTMT Trace Settings]]&lt;br /&gt;
*&amp;lt;B&amp;gt;SNMP&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Log Collection for SNMP Voice SubAgent issues]]&lt;br /&gt;
** [[Unable to receive Unified CCX SNMP Traps]]&lt;br /&gt;
** [[SNMP operations on the Voice MIB not fetching any output]]&lt;br /&gt;
** [[Troubleshooting Alarms/Alerts to be sent as SNMP Traps]]&lt;br /&gt;
*&amp;lt;B&amp;gt; Log Profile &amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Debugging issues]]&lt;br /&gt;
** [[Known issues]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability (Analysis Manager) =&lt;br /&gt;
* [[I don't see the Analysis Manager Drawer or Menu items]]&lt;br /&gt;
* [[RTMT does not come up or behaves strangely]]&lt;br /&gt;
* [[I cannot log into RTMT]]&lt;br /&gt;
* [[My ‘Test Connectivity’ for Unified CCX node is failing]]&lt;br /&gt;
* [[The Call Records Repository connectivity test is failing]]&lt;br /&gt;
* [[Where can I access RTMT and Analysis Manager logs]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX VXML traces]]&lt;br /&gt;
=== General VXML Issues ===&lt;br /&gt;
* [[How to use JavaScript greater than, less than and ampersand symbols in vxml var expr declaration]]&lt;br /&gt;
* [[Voice Browser Not able to fetch files with dynamic file extensions]]&lt;br /&gt;
* [[Not able to fetch grammar and prompt files through CRTP]]&lt;br /&gt;
* [[VXML tag not working properly with VoiceBrowser]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Cluster setup =&lt;br /&gt;
&lt;br /&gt;
* [[Component activation failed during cluster setup]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
&lt;br /&gt;
* [[RCA for Engine failover]]&lt;br /&gt;
* [[Engine and CAD failover taking long time]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[hear nothing while playing back desktop recorded sessions]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CLI =&lt;br /&gt;
* [[UCCX CLI log collection]]&lt;br /&gt;
* [[Analyzing UCCX CLI logs]]&lt;br /&gt;
* [[Cannot login to CLI]]&lt;br /&gt;
* [[Enabling root account from CLI]]&lt;br /&gt;
* [[Checking UCCX version using CLI]]&lt;br /&gt;
* [[Checking if the current node is a VOS publisher]]&lt;br /&gt;
* [[Checking configured UCCX license using CLI]]&lt;br /&gt;
* [[Checking &amp;amp; updating JTAPI Client using CLI]]&lt;br /&gt;
* [[Updating the UCM IP address in UCCX from CLI]]&lt;br /&gt;
* [[Checking trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Setting trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Running DB query from UCCX CLI]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Security =&lt;br /&gt;
* [[CSA]]&lt;br /&gt;
* [[IPTables (firewall)]]&lt;br /&gt;
* [[Engine]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX IP Address/Hostname change =&lt;br /&gt;
* [[IP and Hostname change Log Collection]]&lt;br /&gt;
* [[Analyzing CCX IP and Hostname change log ]]&lt;br /&gt;
* [[Identify Cluster Issues after IP and Hostname change]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Wallboard Configuration =&lt;br /&gt;
* [[Troubleshooting and Log Collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Licensing =&lt;br /&gt;
* [[Invalid License MAC address error at time of License Upload]]&lt;br /&gt;
* [[Need License MAC before system install to reduce time delay]]&lt;br /&gt;
* [[New Licenses required (License Rehosting)]]&lt;br /&gt;
* [[Using Demo licenses]]&lt;br /&gt;
* [[Warning: System running on grace period message on admin login]]&lt;br /&gt;
* [[Error: Grace period expired on admin login]]&lt;br /&gt;
* [[Warning: Some features are going to expire in x days message on admin login]]&lt;br /&gt;
* [[Error: License expired error on admin login]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Reports_Do_Not_Run_after_Restoring_DB_Backup_-_Collation_Conflict_in_Logs</id>
		<title>Reports Do Not Run after Restoring DB Backup - Collation Conflict in Logs</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Reports_Do_Not_Run_after_Restoring_DB_Backup_-_Collation_Conflict_in_Logs"/>
				<updated>2011-01-06T05:17:36Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: {{Template:Required Metadata}} == Reports don't run after restoring DB backup data - collation conflict seen in logs ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | Once data has been resto...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
== Reports don't run after restoring DB backup data - collation conflict seen in logs ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Once data has been restored from a backup onto a new system, cannot generate historical reports.&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| Look for the following error messages:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;quot;could not obtain information from database: the syntax of SQL command contains errors. check the log file for error 5048&amp;quot;&lt;br /&gt;
&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
The log file will report collation conflicts:&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;&lt;br /&gt;
21/07/2010 15:15:54 %CHC-LOG_SUBFAC-3-UNK:TraceDBError #1:(ADO Error# -2147217900|Description [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot resolve collation conflict for equal to operation.|Source Microsoft OLE DB Provider for ODBC Drivers|SQLState 37000|NativeError 446)&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The data backup is from a system which was on Locale A and is being restored on a system with locale B.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| &lt;br /&gt;
Ensure that the new system on which the DB backup is being restored has the same locale as the source system. Ex. If the backup is from a system with UK Locale, then it must get restored onto another system which also has UK locale. If the destination system has US locale, then this causes problems when trying to generate reports.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 7.x&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2011-01-06T04:53:47Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
* [[4.x to 7.0 upgrade DMT failing at license validation step during the restore]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
* [[Uploading Scripts to Unified CCX throws error]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Purge command did not purge data]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
* [[After the replication between Primary/Secondary was created, the initial snapshot was successful but the merge agents would fail]]&lt;br /&gt;
* [[Uninstall SQL hotfix 2282 is failing]]&lt;br /&gt;
* [[The IPCC server is loosing the ODBC connection after running fine for some time]]&lt;br /&gt;
* [[SQL Agent crash with Red X Mark, and the Node Manager is down]]&lt;br /&gt;
* [[After the upgrade SQL Server got changed to MSDE]]&lt;br /&gt;
* [[From the log: Login failed for user '(null)'. Root cause: Not associated with a trusted SQL Server connection]]&lt;br /&gt;
* [[While doing some configuration change from the Appadmin gets the following error: &amp;quot;Error updating Database&amp;quot;]]&lt;br /&gt;
* [[Primary key violation exception in the MIVR logs while trying to insert a historical record to the Database table]]&lt;br /&gt;
* [[SQLException while uploading prompt, grammar, document using editor steps inside the workflow script]]&lt;br /&gt;
* [[Cannot configure Application or System parameters from the Cisco Unified CCX Administration]]&lt;br /&gt;
* [[Enterprise Database Subsystem is in out of service or in partial service]]&lt;br /&gt;
* [[Can't create a new Datasource from the Appadmin]]&lt;br /&gt;
* [[After creating the datasource and System DSN, it is not getting displayed in the editor step]]&lt;br /&gt;
* [[Not able to view/edit rmcm configurations from node2 appadmin in an HA setup]]&lt;br /&gt;
* [[DBAccessor errors while CVD start up]]&lt;br /&gt;
* [[When trying to delete and create a new Datsource from the appadmin page, there is an error stating Datasource with the same name exists]]&lt;br /&gt;
* [[There is an error displayed in the appadmin while trying to modify the Datasource configuration]]&lt;br /&gt;
* [[Regarding Enterprise Database driver usage]]&lt;br /&gt;
* [[Datastore component activations fails when trying to activate node2 components]]&lt;br /&gt;
* [[Cannot activate datastores on second node in HA deployment. On node2 DB version in Bootstrap   8.00.2187 does not match actual Database Engine version 8.00.2282]]&lt;br /&gt;
* [[Replication Failure seen in the DB control center Appadmin page]]&lt;br /&gt;
* [[Config datastore activation failed.java.sql.SQLException: The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction]]&lt;br /&gt;
* [[Cannot activate Datastore components on HA node]]&lt;br /&gt;
* [[In the Appadmin DB control center node 2 data store is not present in an HA setup]]&lt;br /&gt;
* [[node2 datastore component activation is failing]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup.Insert Error: Column name or number of supplied values does not match table definition.]]&lt;br /&gt;
* [[Replication broken between the two nodes ]]&lt;br /&gt;
* [[Node2 config and historical datastore component activation fails with the error message:java.rmi.NoSuchObjectException: no such object in table]]&lt;br /&gt;
* [[DB Write is failing with Exception: java.sql.SQLException: No row count was produced ExecuteUpdate Error Occurred ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Required Logging Levels]]&lt;br /&gt;
* [[Required Logging Levels for HRC and Scheduler issues]]&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
* [[Total logged in hours for agent very high after name change]]&lt;br /&gt;
* [[Filter by skill/team/resourcegroup not working]]&lt;br /&gt;
* [[Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports]]&lt;br /&gt;
* [[Historical Reporting Data mis-match]]&lt;br /&gt;
* [[Reports show deleted agent as talking]]&lt;br /&gt;
* [[Understanding Data Discrepancy between Different Cisco Unified CCX Reports]]&lt;br /&gt;
* [[Reports don't run after restoring DB backup - collation conflict in logs]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
* [[Node Manager service will not stay up due to Bootstrap manager failing to start.]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Required_Logging_Levels_for_HRC_and_Scheduler_issues</id>
		<title>Required Logging Levels for HRC and Scheduler issues</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Required_Logging_Levels_for_HRC_and_Scheduler_issues"/>
				<updated>2011-01-05T04:44:39Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: == Required Log levels ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | What logs should be enabled before debugging a HRC problem? |- ! '''Error Message''' | NA |- ! '''Possible Cause''' | ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Required Log levels ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| What logs should be enabled before debugging a HRC problem?&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| While escalating issues to DE, please set the following log levels in the file hrcConfig.ini. This is generally available under the folder where Historical Reporting Client is installed. On a windows system, [assuming HRC is installed on the C: drive] it would be 'C:\Program Files\Cisco UCCX Historical Reports'.&lt;br /&gt;
&lt;br /&gt;
Log Levels while escalating issues to DE are&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| logLevel=5&lt;br /&gt;
  Note - Once a new log level is set, HRC has to be relaunched for the logs level to take effect. &lt;br /&gt;
Logs should be collected from  'C:\Program Files\Cisco UCCX Historical Reports\logs'. &lt;br /&gt;
Log levels have to be reverted to level 1, for HRC to perform optimally.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 7.x&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2011-01-05T04:44:02Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
* [[4.x to 7.0 upgrade DMT failing at license validation step during the restore]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
* [[Uploading Scripts to Unified CCX throws error]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Purge command did not purge data]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
* [[After the replication between Primary/Secondary was created, the initial snapshot was successful but the merge agents would fail]]&lt;br /&gt;
* [[Uninstall SQL hotfix 2282 is failing]]&lt;br /&gt;
* [[The IPCC server is loosing the ODBC connection after running fine for some time]]&lt;br /&gt;
* [[SQL Agent crash with Red X Mark, and the Node Manager is down]]&lt;br /&gt;
* [[After the upgrade SQL Server got changed to MSDE]]&lt;br /&gt;
* [[From the log: Login failed for user '(null)'. Root cause: Not associated with a trusted SQL Server connection]]&lt;br /&gt;
* [[While doing some configuration change from the Appadmin gets the following error: &amp;quot;Error updating Database&amp;quot;]]&lt;br /&gt;
* [[Primary key violation exception in the MIVR logs while trying to insert a historical record to the Database table]]&lt;br /&gt;
* [[SQLException while uploading prompt, grammar, document using editor steps inside the workflow script]]&lt;br /&gt;
* [[Cannot configure Application or System parameters from the Cisco Unified CCX Administration]]&lt;br /&gt;
* [[Enterprise Database Subsystem is in out of service or in partial service]]&lt;br /&gt;
* [[Can't create a new Datasource from the Appadmin]]&lt;br /&gt;
* [[After creating the datasource and System DSN, it is not getting displayed in the editor step]]&lt;br /&gt;
* [[Not able to view/edit rmcm configurations from node2 appadmin in an HA setup]]&lt;br /&gt;
* [[DBAccessor errors while CVD start up]]&lt;br /&gt;
* [[When trying to delete and create a new Datsource from the appadmin page, there is an error stating Datasource with the same name exists]]&lt;br /&gt;
* [[There is an error displayed in the appadmin while trying to modify the Datasource configuration]]&lt;br /&gt;
* [[Regarding Enterprise Database driver usage]]&lt;br /&gt;
* [[Datastore component activations fails when trying to activate node2 components]]&lt;br /&gt;
* [[Cannot activate datastores on second node in HA deployment. On node2 DB version in Bootstrap   8.00.2187 does not match actual Database Engine version 8.00.2282]]&lt;br /&gt;
* [[Replication Failure seen in the DB control center Appadmin page]]&lt;br /&gt;
* [[Config datastore activation failed.java.sql.SQLException: The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction]]&lt;br /&gt;
* [[Cannot activate Datastore components on HA node]]&lt;br /&gt;
* [[In the Appadmin DB control center node 2 data store is not present in an HA setup]]&lt;br /&gt;
* [[node2 datastore component activation is failing]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup.Insert Error: Column name or number of supplied values does not match table definition.]]&lt;br /&gt;
* [[Replication broken between the two nodes ]]&lt;br /&gt;
* [[Node2 config and historical datastore component activation fails with the error message:java.rmi.NoSuchObjectException: no such object in table]]&lt;br /&gt;
* [[DB Write is failing with Exception: java.sql.SQLException: No row count was produced ExecuteUpdate Error Occurred ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Required Logging Levels]]&lt;br /&gt;
* [[Required Logging Levels for HRC and Scheduler issues]]&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
* [[Total logged in hours for agent very high after name change]]&lt;br /&gt;
* [[Filter by skill/team/resourcegroup not working]]&lt;br /&gt;
* [[Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports]]&lt;br /&gt;
* [[Historical Reporting Data mis-match]]&lt;br /&gt;
* [[Reports show deleted agent as talking]]&lt;br /&gt;
* [[Understanding Data Discrepancy between Different Cisco Unified CCX Reports]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
* [[Node Manager service will not stay up due to Bootstrap manager failing to start.]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2011-01-05T04:43:30Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
* [[4.x to 7.0 upgrade DMT failing at license validation step during the restore]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
* [[Uploading Scripts to Unified CCX throws error]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Purge command did not purge data]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
* [[After the replication between Primary/Secondary was created, the initial snapshot was successful but the merge agents would fail]]&lt;br /&gt;
* [[Uninstall SQL hotfix 2282 is failing]]&lt;br /&gt;
* [[The IPCC server is loosing the ODBC connection after running fine for some time]]&lt;br /&gt;
* [[SQL Agent crash with Red X Mark, and the Node Manager is down]]&lt;br /&gt;
* [[After the upgrade SQL Server got changed to MSDE]]&lt;br /&gt;
* [[From the log: Login failed for user '(null)'. Root cause: Not associated with a trusted SQL Server connection]]&lt;br /&gt;
* [[While doing some configuration change from the Appadmin gets the following error: &amp;quot;Error updating Database&amp;quot;]]&lt;br /&gt;
* [[Primary key violation exception in the MIVR logs while trying to insert a historical record to the Database table]]&lt;br /&gt;
* [[SQLException while uploading prompt, grammar, document using editor steps inside the workflow script]]&lt;br /&gt;
* [[Cannot configure Application or System parameters from the Cisco Unified CCX Administration]]&lt;br /&gt;
* [[Enterprise Database Subsystem is in out of service or in partial service]]&lt;br /&gt;
* [[Can't create a new Datasource from the Appadmin]]&lt;br /&gt;
* [[After creating the datasource and System DSN, it is not getting displayed in the editor step]]&lt;br /&gt;
* [[Not able to view/edit rmcm configurations from node2 appadmin in an HA setup]]&lt;br /&gt;
* [[DBAccessor errors while CVD start up]]&lt;br /&gt;
* [[When trying to delete and create a new Datsource from the appadmin page, there is an error stating Datasource with the same name exists]]&lt;br /&gt;
* [[There is an error displayed in the appadmin while trying to modify the Datasource configuration]]&lt;br /&gt;
* [[Regarding Enterprise Database driver usage]]&lt;br /&gt;
* [[Datastore component activations fails when trying to activate node2 components]]&lt;br /&gt;
* [[Cannot activate datastores on second node in HA deployment. On node2 DB version in Bootstrap   8.00.2187 does not match actual Database Engine version 8.00.2282]]&lt;br /&gt;
* [[Replication Failure seen in the DB control center Appadmin page]]&lt;br /&gt;
* [[Config datastore activation failed.java.sql.SQLException: The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction]]&lt;br /&gt;
* [[Cannot activate Datastore components on HA node]]&lt;br /&gt;
* [[In the Appadmin DB control center node 2 data store is not present in an HA setup]]&lt;br /&gt;
* [[node2 datastore component activation is failing]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup.Insert Error: Column name or number of supplied values does not match table definition.]]&lt;br /&gt;
* [[Replication broken between the two nodes ]]&lt;br /&gt;
* [[Node2 config and historical datastore component activation fails with the error message:java.rmi.NoSuchObjectException: no such object in table]]&lt;br /&gt;
* [[DB Write is failing with Exception: java.sql.SQLException: No row count was produced ExecuteUpdate Error Occurred ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Required Logging Levels for HR issues]]&lt;br /&gt;
* [[Required Logging Levels for HRC and Scheduler issues]]&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
* [[Total logged in hours for agent very high after name change]]&lt;br /&gt;
* [[Filter by skill/team/resourcegroup not working]]&lt;br /&gt;
* [[Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports]]&lt;br /&gt;
* [[Historical Reporting Data mis-match]]&lt;br /&gt;
* [[Reports show deleted agent as talking]]&lt;br /&gt;
* [[Understanding Data Discrepancy between Different Cisco Unified CCX Reports]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
* [[Node Manager service will not stay up due to Bootstrap manager failing to start.]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2011-01-05T04:42:43Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
* [[4.x to 7.0 upgrade DMT failing at license validation step during the restore]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
* [[Uploading Scripts to Unified CCX throws error]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Purge command did not purge data]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
* [[After the replication between Primary/Secondary was created, the initial snapshot was successful but the merge agents would fail]]&lt;br /&gt;
* [[Uninstall SQL hotfix 2282 is failing]]&lt;br /&gt;
* [[The IPCC server is loosing the ODBC connection after running fine for some time]]&lt;br /&gt;
* [[SQL Agent crash with Red X Mark, and the Node Manager is down]]&lt;br /&gt;
* [[After the upgrade SQL Server got changed to MSDE]]&lt;br /&gt;
* [[From the log: Login failed for user '(null)'. Root cause: Not associated with a trusted SQL Server connection]]&lt;br /&gt;
* [[While doing some configuration change from the Appadmin gets the following error: &amp;quot;Error updating Database&amp;quot;]]&lt;br /&gt;
* [[Primary key violation exception in the MIVR logs while trying to insert a historical record to the Database table]]&lt;br /&gt;
* [[SQLException while uploading prompt, grammar, document using editor steps inside the workflow script]]&lt;br /&gt;
* [[Cannot configure Application or System parameters from the Cisco Unified CCX Administration]]&lt;br /&gt;
* [[Enterprise Database Subsystem is in out of service or in partial service]]&lt;br /&gt;
* [[Can't create a new Datasource from the Appadmin]]&lt;br /&gt;
* [[After creating the datasource and System DSN, it is not getting displayed in the editor step]]&lt;br /&gt;
* [[Not able to view/edit rmcm configurations from node2 appadmin in an HA setup]]&lt;br /&gt;
* [[DBAccessor errors while CVD start up]]&lt;br /&gt;
* [[When trying to delete and create a new Datsource from the appadmin page, there is an error stating Datasource with the same name exists]]&lt;br /&gt;
* [[There is an error displayed in the appadmin while trying to modify the Datasource configuration]]&lt;br /&gt;
* [[Regarding Enterprise Database driver usage]]&lt;br /&gt;
* [[Datastore component activations fails when trying to activate node2 components]]&lt;br /&gt;
* [[Cannot activate datastores on second node in HA deployment. On node2 DB version in Bootstrap   8.00.2187 does not match actual Database Engine version 8.00.2282]]&lt;br /&gt;
* [[Replication Failure seen in the DB control center Appadmin page]]&lt;br /&gt;
* [[Config datastore activation failed.java.sql.SQLException: The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction]]&lt;br /&gt;
* [[Cannot activate Datastore components on HA node]]&lt;br /&gt;
* [[In the Appadmin DB control center node 2 data store is not present in an HA setup]]&lt;br /&gt;
* [[node2 datastore component activation is failing]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup.Insert Error: Column name or number of supplied values does not match table definition.]]&lt;br /&gt;
* [[Replication broken between the two nodes ]]&lt;br /&gt;
* [[Node2 config and historical datastore component activation fails with the error message:java.rmi.NoSuchObjectException: no such object in table]]&lt;br /&gt;
* [[DB Write is failing with Exception: java.sql.SQLException: No row count was produced ExecuteUpdate Error Occurred ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Required Logging Levels for HR issues]]&lt;br /&gt;
* [[Required Logging Levels for HRC and Scheduler issues]&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
* [[Total logged in hours for agent very high after name change]]&lt;br /&gt;
* [[Filter by skill/team/resourcegroup not working]]&lt;br /&gt;
* [[Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports]]&lt;br /&gt;
* [[Historical Reporting Data mis-match]]&lt;br /&gt;
* [[Reports show deleted agent as talking]]&lt;br /&gt;
* [[Understanding Data Discrepancy between Different Cisco Unified CCX Reports]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
* [[Node Manager service will not stay up due to Bootstrap manager failing to start.]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Required_Logging_Levels</id>
		<title>Required Logging Levels</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Required_Logging_Levels"/>
				<updated>2011-01-05T04:40:47Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: == Required Log levels ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | What logs should be enabled before debugging a HR problem? |- ! '''Error Message''' | NA |- ! '''Possible Cause''' | N...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Required Log levels ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| What logs should be enabled before debugging a HR problem?&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|CRA_HRDM Debug XDebug1&amp;lt;BR&amp;gt;                                             &lt;br /&gt;
ICD_CTI Debug XDebug1&amp;lt;BR&amp;gt;                             &lt;br /&gt;
SS_RM Debug XDebug1&amp;lt;BR&amp;gt;                                       &lt;br /&gt;
SS_CM Debug XDebug1&amp;lt;BR&amp;gt;                          &lt;br /&gt;
SS_TEL Debug XDebug1&amp;lt;BR&amp;gt;                                           &lt;br /&gt;
SS_RMCM Debug&amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: After the issue is reproduced, ensure that logging levels are reverted to original settings. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 7.x&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2011-01-05T04:40:13Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
* [[4.x to 7.0 upgrade DMT failing at license validation step during the restore]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
* [[Uploading Scripts to Unified CCX throws error]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Purge command did not purge data]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
* [[After the replication between Primary/Secondary was created, the initial snapshot was successful but the merge agents would fail]]&lt;br /&gt;
* [[Uninstall SQL hotfix 2282 is failing]]&lt;br /&gt;
* [[The IPCC server is loosing the ODBC connection after running fine for some time]]&lt;br /&gt;
* [[SQL Agent crash with Red X Mark, and the Node Manager is down]]&lt;br /&gt;
* [[After the upgrade SQL Server got changed to MSDE]]&lt;br /&gt;
* [[From the log: Login failed for user '(null)'. Root cause: Not associated with a trusted SQL Server connection]]&lt;br /&gt;
* [[While doing some configuration change from the Appadmin gets the following error: &amp;quot;Error updating Database&amp;quot;]]&lt;br /&gt;
* [[Primary key violation exception in the MIVR logs while trying to insert a historical record to the Database table]]&lt;br /&gt;
* [[SQLException while uploading prompt, grammar, document using editor steps inside the workflow script]]&lt;br /&gt;
* [[Cannot configure Application or System parameters from the Cisco Unified CCX Administration]]&lt;br /&gt;
* [[Enterprise Database Subsystem is in out of service or in partial service]]&lt;br /&gt;
* [[Can't create a new Datasource from the Appadmin]]&lt;br /&gt;
* [[After creating the datasource and System DSN, it is not getting displayed in the editor step]]&lt;br /&gt;
* [[Not able to view/edit rmcm configurations from node2 appadmin in an HA setup]]&lt;br /&gt;
* [[DBAccessor errors while CVD start up]]&lt;br /&gt;
* [[When trying to delete and create a new Datsource from the appadmin page, there is an error stating Datasource with the same name exists]]&lt;br /&gt;
* [[There is an error displayed in the appadmin while trying to modify the Datasource configuration]]&lt;br /&gt;
* [[Regarding Enterprise Database driver usage]]&lt;br /&gt;
* [[Datastore component activations fails when trying to activate node2 components]]&lt;br /&gt;
* [[Cannot activate datastores on second node in HA deployment. On node2 DB version in Bootstrap   8.00.2187 does not match actual Database Engine version 8.00.2282]]&lt;br /&gt;
* [[Replication Failure seen in the DB control center Appadmin page]]&lt;br /&gt;
* [[Config datastore activation failed.java.sql.SQLException: The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction]]&lt;br /&gt;
* [[Cannot activate Datastore components on HA node]]&lt;br /&gt;
* [[In the Appadmin DB control center node 2 data store is not present in an HA setup]]&lt;br /&gt;
* [[node2 datastore component activation is failing]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup.Insert Error: Column name or number of supplied values does not match table definition.]]&lt;br /&gt;
* [[Replication broken between the two nodes ]]&lt;br /&gt;
* [[Node2 config and historical datastore component activation fails with the error message:java.rmi.NoSuchObjectException: no such object in table]]&lt;br /&gt;
* [[DB Write is failing with Exception: java.sql.SQLException: No row count was produced ExecuteUpdate Error Occurred ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Required Logging Levels]]&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
* [[Total logged in hours for agent very high after name change]]&lt;br /&gt;
* [[Filter by skill/team/resourcegroup not working]]&lt;br /&gt;
* [[Historical_Reports_Gives_VB_List_Box_Error_on_Detailed_Call_Reports]]&lt;br /&gt;
* [[Historical Reporting Data mis-match]]&lt;br /&gt;
* [[Reports show deleted agent as talking]]&lt;br /&gt;
* [[Understanding Data Discrepancy between Different Cisco Unified CCX Reports]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
* [[Node Manager service will not stay up due to Bootstrap manager failing to start.]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Required_Log_levels</id>
		<title>Required Log levels</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Required_Log_levels"/>
				<updated>2011-01-05T04:39:01Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Required Log levels ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| What logs should be enabled before debugging a HR problem?&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|CRA_HRDM Debug XDebug1&amp;lt;BR&amp;gt;                                             &lt;br /&gt;
ICD_CTI Debug XDebug1&amp;lt;BR&amp;gt;                             &lt;br /&gt;
SS_RM Debug XDebug1&amp;lt;BR&amp;gt;                                       &lt;br /&gt;
SS_CM Debug XDebug1&amp;lt;BR&amp;gt;                          &lt;br /&gt;
SS_TEL Debug XDebug1&amp;lt;BR&amp;gt;                                           &lt;br /&gt;
SS_RMCM Debug&amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: After the issue is reproduced, ensure that logging levels are reverted to original settings. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 8.0(1)&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/CTIERR_TIMEOUT%3D0x8ccc0001_on_Call_Redirect</id>
		<title>CTIERR TIMEOUT=0x8ccc0001 on Call Redirect</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/CTIERR_TIMEOUT%3D0x8ccc0001_on_Call_Redirect"/>
				<updated>2010-06-25T05:07:05Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: == CTIERR TIMEOUT=0x8ccc0001 on Call Redirect ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | CTIERR TIMEOUT=0x8ccc0001 on Call Redirect. |- ! '''Error Message''' | The following message ap...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== CTIERR TIMEOUT=0x8ccc0001 on Call Redirect ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| CTIERR TIMEOUT=0x8ccc0001 on Call Redirect.&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| The following message appears in the MIVR log:&lt;br /&gt;
&lt;br /&gt;
CTIERR_TIMEOUT=0x8ccc0001::Cti&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The issue being experienced has to do with the order and timing of event messages sent to the CTI port from CUCM, which causes a delay in the RTP stream being set up. Until the events get processed by UCCX then the RTP stream cannot be set up, and by the time the RTP stream does get set up the CUCM server has timed out the request.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| &lt;br /&gt;
1) Try and remove the multicast Music on Hold feature from the CTI Ports.&lt;br /&gt;
2) Introduce a 2 second Delay step between the Start and Accept nodes in&lt;br /&gt;
all of the scripts&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 7.0(1)&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| CSCsh20355.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Unable_to_Log_in_to_Cisco_Unified_Real-Time_Monitoring_Tool_on_the_Unified_CCX_Server</id>
		<title>Unable to Log in to Cisco Unified Real-Time Monitoring Tool on the Unified CCX Server</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Unable_to_Log_in_to_Cisco_Unified_Real-Time_Monitoring_Tool_on_the_Unified_CCX_Server"/>
				<updated>2010-05-26T13:58:33Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: Removing all content from page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/JTAPI_Out_of_Service_on_a_node_even_though_a_port_group_is_created_in_a_HA_over_WAN_deployment</id>
		<title>JTAPI Out of Service on a node even though a port group is created in a HA over WAN deployment</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/JTAPI_Out_of_Service_on_a_node_even_though_a_port_group_is_created_in_a_HA_over_WAN_deployment"/>
				<updated>2010-05-26T13:54:51Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: Removing all content from page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/JTAPI_OOS_on_one_of_the_nodes_in_HA_over_WAN_deployment</id>
		<title>JTAPI OOS on one of the nodes in HA over WAN deployment</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/JTAPI_OOS_on_one_of_the_nodes_in_HA_over_WAN_deployment"/>
				<updated>2010-05-26T13:54:37Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: == JTAPI OOS on one of the nodes in HA over WAN deployment ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | A Port group has been created but JTAPI is OOS on one of the nodes |- ! '''Error M...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== JTAPI OOS on one of the nodes in HA over WAN deployment ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| A Port group has been created but JTAPI is OOS on one of the nodes&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| JTAPI Sub system is OOS when we look at the &amp;quot;Cisco Unified CCX Engine Service&amp;quot; status on a node.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| IN HA over WAN deployment, ports for a port group have to be separately created for both the nodes. They are not automatically done as in LAN deployment&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| For the port group in question, make sure ports are created for both the nodes by selecting the Node individually and updating the CTI Port group configuration page&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Unified CCX, Release 8.0&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| The DDTS/CDETS should be visible on Bug Tool Kit. If it not visible, state &amp;quot;None.&amp;quot; '''Do not list internal bugs in this field.'''&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0</id>
		<title>Troubleshooting Tips for Unified CCX 8.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0"/>
				<updated>2010-05-26T13:54:21Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Set up Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[Hardware not supported]]&lt;br /&gt;
* [[Unable to access NTP server]]&lt;br /&gt;
* [[Hardware not supported Error seen on 7835H2 and/or 7845H2]]&lt;br /&gt;
&lt;br /&gt;
= Backup and Restore =&lt;br /&gt;
&lt;br /&gt;
= Windows to Linux Upgrade =&lt;br /&gt;
* [[Desktop Agent Config backup operation failed using PUT]]&lt;br /&gt;
* [[Backup operation failed while backing up Config/Database/Recordings using PUT]]&lt;br /&gt;
* [[Pre-Upgrade Tool backup operation is not supported]]&lt;br /&gt;
* [[CVD communication failed during backup using PUT]]&lt;br /&gt;
* [[Could not find the Engine/DB master node during backup using PUT]]&lt;br /&gt;
* [[Database size is not supported during backup using PUT]]&lt;br /&gt;
* [[CCX Node is not reachable during backup using PUT]]&lt;br /&gt;
* [[Not all the recording files are backed up during backup using PUT]]&lt;br /&gt;
* [[Power failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[Failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[FTP/SFTP path not accessible during data restore]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in deployment type]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in license package]]&lt;br /&gt;
* [[Invalid backup TAR file used during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Not enough space to stage backup file on Unified CCX 8.0(1) during restore]]&lt;br /&gt;
* [[Component activation failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Activating the node as Publisher failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Database manager is not IN_SERVICE during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of configuration data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of DB data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Node 2 CTI ports removal failed during restore]]&lt;br /&gt;
* [[Recordings not getting played after upgrade]]&lt;br /&gt;
* [[Deletion of Node 2 JTAPI user from CUCM fails during restore]]&lt;br /&gt;
* [[The VRU connection port for ICM Subsystem fails to migrate during restore of IP-IVR system]]&lt;br /&gt;
* [[Problem occurred during backing up of restore logs]]&lt;br /&gt;
* [[PUT backup fails during Desktop Agent Config backup operation]]&lt;br /&gt;
&lt;br /&gt;
= Linux to Linux Upgrade =&lt;br /&gt;
* [http://zed.cisco.com/confluence/display/TRIAGE/Upgrade+FAQs Link to Platform Upgrade FAQ]&lt;br /&gt;
* [[No valid upgrade options found while running upgrade on node2]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Telephony Subsystem =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the subsystem in full service? If not refer to section for [[#Telephony Subsystem Out Of Service or Partial Service Issues]] below&lt;br /&gt;
* Also cross check JTAPI Client and Data sync. Refer to [[JTAPI Client and data resynchronization]]&lt;br /&gt;
&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on SS_TEL]]&lt;br /&gt;
* [[Turning on Unified CCX Telephony Client traces]]&lt;br /&gt;
* [[Turning on UCM CCM and CTI SDI and SDL traces]]&lt;br /&gt;
&lt;br /&gt;
=== Telephony Subsystem Out Of Service or Partial Service Issues ===&lt;br /&gt;
* [[Trigger partition change causes JTAPI subsystem to go to Partial Service]]&lt;br /&gt;
* [[Telephony Subsystem in Partial Service - calculateGroupReadiness indicates groups NOT READY]]&lt;br /&gt;
* [[Standard CTI Enabled role for JTAPI user]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - Unable to create provider]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - DB_ACCESS_ERROR]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service/Partial Service - Unable to Register CTI Port/Route Point]]&lt;br /&gt;
* [[Trigger Configuration Error]]&lt;br /&gt;
* [[Missing AddrInService events]]&lt;br /&gt;
* [[UCM Telephony SS in partial service after fall back to Node1]]&lt;br /&gt;
* [[UCM Telephony SS in partial service on a node]]&lt;br /&gt;
* [[JTAPI Client and data resynchronization]]&lt;br /&gt;
* [[JTAPI provider goes out of service]]&lt;br /&gt;
* [[Issues in JTAPI Port Recovery]]&lt;br /&gt;
&lt;br /&gt;
=== Callflow guides ===&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - IVR Call Flow]]&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - ICD Call Flow]]&lt;br /&gt;
&lt;br /&gt;
=== Identifying Issues in Call Flow ===&lt;br /&gt;
* [[Possible Issues in an ICD call flow]] &lt;br /&gt;
* Call is rejected as soon as it is received by Unified CCX&lt;br /&gt;
** [[REMOTE_TIMEOUT - No idle channels]]&lt;br /&gt;
* Call is not offered on the CTI Port&lt;br /&gt;
** [[TRIGGER_FAIL]]&lt;br /&gt;
** [[TRIGGER_MAX_SESSION]]&lt;br /&gt;
** [[Configuration issues]]&lt;br /&gt;
* Call is rejected after it is offered on the CTI Port&lt;br /&gt;
** [[SETUP_TIMEOUT]]&lt;br /&gt;
** [[SETUP_FAIL]]&lt;br /&gt;
* Issues invoking Application Task&lt;br /&gt;
** [[Null or Default Application Task]]&lt;br /&gt;
** [[ApplicationMaxSessionsException]]&lt;br /&gt;
** [[Invalid Script]]&lt;br /&gt;
* [[Media Setup Failure]]&lt;br /&gt;
* [[Codec Mismatch between Caller and CTI Port]]&lt;br /&gt;
* [[Call fails with CallCtlConnFailed event]]&lt;br /&gt;
* [[JTAPI Exception during redirect, accept, answer, transfer request]]&lt;br /&gt;
* [[Consult call fails with RESOURCE_BUSY]]&lt;br /&gt;
* Consult Call is not answered at agent extension&lt;br /&gt;
** [[RESOURCE_NOT_ACKNOWLEDGING]]&lt;br /&gt;
** [[RESOURCE_FORWARDING]]&lt;br /&gt;
* [[Could not meet post conditions of call.transfer]]&lt;br /&gt;
* [[Transfer does not receive CiscoTransferEndEv]]&lt;br /&gt;
* [[Multiple transfer failures]]&lt;br /&gt;
* [[Transfer success is false]]&lt;br /&gt;
&lt;br /&gt;
===Other tips===&lt;br /&gt;
* [[Call aborted due to WFMaxExecutedStepsExceededException]]&lt;br /&gt;
* [[Common Cause Codes and Meta Codes in JTAPI]]&lt;br /&gt;
* [[Troubleshooting JTAPI CCN Exceptions]]&lt;br /&gt;
* [[Codec support issues]]&lt;br /&gt;
* [[Commonly used regular expressions]]&lt;br /&gt;
* [[How to escalate an issue to IPCBU JTAPI team]]&lt;br /&gt;
* http://developer.cisco.com/web/jtapi/docs&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Media subsystem =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Media Traces]]&lt;br /&gt;
* [[Turning on IPVMS Traces]]&lt;br /&gt;
===General Media Issue===&lt;br /&gt;
* [[Media subsystem is stuck in initializing state]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express = &lt;br /&gt;
* [[Enabling CME Tracing]]&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
* [[Unified CCX stops working after Unified CME is rebuilt after crash]]&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
* [[Creation of Outbound trigger DN on UCCX fails]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IPIVR/ICM =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the ICM subsystem in full service in the IVR box? If not refer to section for [[#ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG]] below.&lt;br /&gt;
&lt;br /&gt;
* Verify whether the license uploaded on the system is for IVR.&lt;br /&gt;
 &lt;br /&gt;
* [[ Logs to be enabled for IVR issues ]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*  After the above mentioned logs are enabled, search the MIVR logs for any Exceptions- &amp;quot;exception&amp;quot; or errors. The following exceptions seen in MIVR logs can be ignored as they are benign in nature:&lt;br /&gt;
&lt;br /&gt;
     435718: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-DISPATCH_FAILURE:A failure occured while dispatching an event: &lt;br /&gt;
     listener=com.cisco.wf.subsystems.ged125.ICMChannel$CallListenerAdapter@118cef5,Exception=&lt;br /&gt;
     java.lang.IllegalStateException: already cleared&lt;br /&gt;
     435719: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-EXCEPTION:java.lang.IllegalStateException: already cleared&lt;br /&gt;
&lt;br /&gt;
&amp;quot;ICM subsystem in IVR receives call control events such as call cleared, call transferred etc from ICM as well as JTAPI (call manager). Hence, in some cases, this results in race conditions where ICM susbsystem processes the event coming from JTAPI and immediately receives another event for the same call control operation from ICM.  In such cases, the second request fails because the event is already processed by IVR and hence we see DISPATCH_FAILURE exceptions in the logs, which are purely benign.&lt;br /&gt;
&lt;br /&gt;
In normal scenarios, ICM susbsystem(in IVR) notifies the ICM that the call is cleared as soon as it processes the event from JTAPI, in which case ICM does not send another call cleared request to IVR. However, in some cases it may so happen that ICM and JTAPI send this event almost at the same time due to which we see DISPATCH_FAILURE exceptions in the logs as explained above. These exceptions can be ignored as they do not result in any failures in the system.&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
Based on the exceptions, Isolate the issues into the following -&lt;br /&gt;
&lt;br /&gt;
=== JTAPI issues ===&lt;br /&gt;
&lt;br /&gt;
Many a times, calls fail in IVR/ICM  due to telephony/JTAPI issues. Refer to the [[#Cisco Unified Communications Manager Telephony Subsystem]] and check whether the calls are failing at JTAPI level due to which ICM subsystem is unable to process calls in IPIVR.&lt;br /&gt;
&lt;br /&gt;
=== ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[ ICM subsystem is in OUT OF SERVICE state from IVR side and also the VRU PIM stays in IDLE state rather than ACTIVE state in the ICM peripheral gateway. ]]&lt;br /&gt;
          &lt;br /&gt;
* [[ Calls to IVR are failing and ICM subsystem is OUT_OF_SERVICE. ]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Issues ===&lt;br /&gt;
 &lt;br /&gt;
* [[ Calls are failing in IVR and user hears busy tone for these calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[IVR sends wrong values to ICM for the call variables.]] &lt;br /&gt;
&lt;br /&gt;
* [[Call transfer fails if the agent transfers the call from one IVR to a different IVR.]]&lt;br /&gt;
&lt;br /&gt;
* [[Intermittent Translation Route to VRU failure.]]&lt;br /&gt;
&lt;br /&gt;
* [[ Call reserves an agent although caller hanged in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ IVR gets freezed when the calls are more than the actual ports and requires an engine restart for recovery. ]]&lt;br /&gt;
&lt;br /&gt;
=== Set up Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing in IVR intermittently – Some calls go through successfully and some fail intermittently and it may seem like the TCP connection is broken from the VRU PIM side at the time of the failed calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing with ApplicationMaxSessionsException because there are not enough sessions created for an ICM application in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ What versions of IP IVR are supported for UCCE 8.0? ]]&lt;br /&gt;
&lt;br /&gt;
* [[JTAPI OOS on one of the nodes in HA over WAN deployment ]]&lt;br /&gt;
&lt;br /&gt;
=== Other Tips ===&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/CRA/Training/UCCX_8_0_IVR-ICM_Integration.pptx&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/ICM/Components/PG/PIMs/VRU/GED125.doc&lt;br /&gt;
&lt;br /&gt;
* [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
* Many services in Deactivated state. Refer to [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[Error in IE (Class doesn't support Automation) ]]&lt;br /&gt;
* [[User Authentication error during CUCM configuration ]]&lt;br /&gt;
* [[HTTP 403 or security protocols error ]]&lt;br /&gt;
* [[Add to cluster repeats in a loop ]]&lt;br /&gt;
* [[Object error during component activation ]]&lt;br /&gt;
* [[Components in deactivated state ]]&lt;br /&gt;
* [[UCCX Data containing &amp;quot;less than &amp;quot; or &amp;quot;greater than&amp;quot; characters fails to save ]]&lt;br /&gt;
* [[Component activation failed during cluster setup ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
== Replication ==&lt;br /&gt;
&lt;br /&gt;
*[[Reset and Repair - what is the difference]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
*[[Script porting issues]]&lt;br /&gt;
*[[W1 upgrade issues]]&lt;br /&gt;
*[[Editor hanging issues]]&lt;br /&gt;
*[[Issues with installing on windows vista and windows 7]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Application subsystem is in partial service]] &lt;br /&gt;
* [[Changes to applications do not register]] &lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]] &lt;br /&gt;
* [[An error message plays when calling a CTI route point]] &lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[ How to debug OutOfMemoryError ]]&lt;br /&gt;
* [[ How to analyze heap dumps ]]&lt;br /&gt;
* [[ How to debug the root cause for high CPU usage ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX ICD =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Required Tracing ===&lt;br /&gt;
* [[Log_Levels_for_issues_related_to_Routing_and_Queuing]]&lt;br /&gt;
=== RmCm is OOS OR in Partial Service ===&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem stuck in INITIALIZING state]]&lt;br /&gt;
&lt;br /&gt;
=== RmCm Configurations issues ===&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
&lt;br /&gt;
=== Agent Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[Unable to login Unified CCX Agent ]]&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state-Script queues and dequeueAll's the call to multiple CSQ's]]&lt;br /&gt;
* [[Agent stuck in Reserved state]]&lt;br /&gt;
* [[Agent stuck in Reserved state-&amp;quot;Not posting the ContactPresentedEvent&amp;quot; seen in logs]]&lt;br /&gt;
* [[Agent stuck in Reserved state-SessionTransferredMsg shows Initial and Final Contact Type:IAQ_CONSULT_CONTACT ]]&lt;br /&gt;
* [[Agent State transformations in Select Join and Join Across Line scenarios]]&lt;br /&gt;
&lt;br /&gt;
=== Call Issues ===&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Calls are sometimes not delivered accordingly to Skill Competence when Resource Selection Criteria is Most Skilled]]&lt;br /&gt;
* [[Same call is presented to two agents]]&lt;br /&gt;
* [[Agent and customer start hearing UCCX recordings played over their conversation]]&lt;br /&gt;
&lt;br /&gt;
=== Scripting Issue ===&lt;br /&gt;
* [[Call redirected from one RP to the other multiple times with Redirect Step]]&lt;br /&gt;
&lt;br /&gt;
=== Unsupported scenarios ===&lt;br /&gt;
&lt;br /&gt;
* [[IncompatibleSessionException seen in MIVR logs]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Guides ===&lt;br /&gt;
* [[Guide to read MIVR logs for a simple ICD call]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[RTR in SelectJoin, DirectTransfer, JoinAcrossLines, DirectTransferAcrossLines Scenarios]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Pre-Requisites]]&lt;br /&gt;
* [[Required Log levels]]&lt;br /&gt;
* [[Historical records not getting written to database]]&lt;br /&gt;
* [[Discrepancies of JAL Scenarios]]&lt;br /&gt;
* [[Differences among Various Cisco Unified CCX reports]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Automatic Speech Recognition Traces]]&lt;br /&gt;
===General ASR Issues===&lt;br /&gt;
* [[How To Bring MRCP ASR Provider To InService State]]&lt;br /&gt;
* [[Nuance 9.0 not working with Unified CCX]]&lt;br /&gt;
* [[How to integrate MRCP ASR-TTS with Unified CCX]]&lt;br /&gt;
* [[Assure ASR-TTS ports/resources are freed up after the application finishes]]&lt;br /&gt;
* [[UnsupportedGrammarException with Cisco Media i.e Default Dialog group]]&lt;br /&gt;
* [[Built in Grammar minlength and maxlength with Default or Cisco Media Group for DTMF inputs]]&lt;br /&gt;
* [[How to allow both DTMF and Speech Recognition together]]&lt;br /&gt;
* [[The Names are not recognized]]&lt;br /&gt;
* [[MRCP ASR Subsystem Status is out of service]]&lt;br /&gt;
* [[MRCP ASR Providers, MRCP Servers, or Groups Changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
*&amp;lt;B&amp;gt;Trace Levels&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Log Level usage in Outbound Subsystem]]&lt;br /&gt;
**[[Log Levels required to troubleshoot outbound issues]]&lt;br /&gt;
*&amp;lt;B&amp;gt;General Outbound Issues&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound contacts not being dialed after failover]]&lt;br /&gt;
**[[Outbound calls fail with no callback number]]&lt;br /&gt;
**[[Outbound agent Stuck in Reserved state]]&lt;br /&gt;
**[[Outbound General Configuration data is changed]]&lt;br /&gt;
**[[Outbound Subsystem is Out Of Service]]&lt;br /&gt;
*&amp;lt;B&amp;gt;Issues Related To Outbound Call Flow&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound agents are ready for long time with available contacts]]&lt;br /&gt;
*&amp;lt;B&amp;gt;CAD/CDA related issues&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Outbound Buttons are disabled on CAD]]&lt;br /&gt;
** [[CDA doesn't show checkbox for Outbound Dialer Mode]]&lt;br /&gt;
&lt;br /&gt;
= Text-To-Speech =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Text To Speech traces]]&lt;br /&gt;
=== General TTS Issues ===&lt;br /&gt;
* [[Setting TTS Provider as Default TTS Provider]]&lt;br /&gt;
* [[How To Bring MRCP TTS Provider To InService State ]]&lt;br /&gt;
* [[Control prosody rate in PlayPrompt TTS block]]&lt;br /&gt;
* [[TTS Provider shows Last Status when Added Again]]&lt;br /&gt;
* [[MRCP TTS subsystem shows out of service status]]&lt;br /&gt;
* [[MRCP TTS Providers, MRCP Servers, locales, or genders changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
*&amp;lt;B&amp;gt; Real-Time Monitoring Tool (RTMT)&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Troubleshooting RTMT Installation Errors]]&lt;br /&gt;
** [[Not able to install different RTMT clients on the same box]]&lt;br /&gt;
** [[Unable to Log in to Cisco Unified Real-Time Monitoring Tool]]&lt;br /&gt;
** [[Unable to Collect data for the second node from RTMT when the Primary Node is down]]&lt;br /&gt;
** [[Troubleshooting DiskSpace and Partition related alerts]]&lt;br /&gt;
** [[Collecting logs for troubleshooting RTMT Alerts]]&lt;br /&gt;
** [[Configuring RTMT Trace Settings]]&lt;br /&gt;
*&amp;lt;B&amp;gt;SNMP&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Log Collection for SNMP Voice SubAgent issues]]&lt;br /&gt;
** [[Unable to receive Unified CCX SNMP Traps]]&lt;br /&gt;
** [[SNMP operations on the Voice MIB not fetching any output]]&lt;br /&gt;
** [[Troubleshooting Alarms/Alerts to be sent as SNMP Traps]]&lt;br /&gt;
*&amp;lt;B&amp;gt; Log Profile &amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Debugging issues]]&lt;br /&gt;
** [[Known issues]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability (Analysis Manager) =&lt;br /&gt;
* [[I don't see the Analysis Manager Drawer or Menu items]]&lt;br /&gt;
* [[RTMT does not come up or behaves strangely]]&lt;br /&gt;
* [[I cannot log into RTMT]]&lt;br /&gt;
* [[My ‘Test Connectivity’ for Unified CCX node is failing]]&lt;br /&gt;
* [[The Call Records Repository connectivity test is failing]]&lt;br /&gt;
* [[Where can I access RTMT and Analysis Manager logs]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX VXML traces]]&lt;br /&gt;
=== General VXML Issues ===&lt;br /&gt;
* [[How to use JavaScript greater than, less than and ampersand symbols in vxml var expr declaration]]&lt;br /&gt;
* [[Voice Browser Not able to fetch files with dynamic file extensions]]&lt;br /&gt;
* [[Not able to fetch grammar and prompt files through CRTP]]&lt;br /&gt;
* [[VXML tag not working properly with VoiceBrowser]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Cluster setup =&lt;br /&gt;
&lt;br /&gt;
* [[Component activation failed during cluster setup]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
&lt;br /&gt;
* [[RCA for Engine failover]]&lt;br /&gt;
* [[Engine and CAD failover taking long time]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[hear nothing while playing back desktop recorded sessions]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CLI =&lt;br /&gt;
* [[UCCX CLI log collection]]&lt;br /&gt;
* [[Analyzing UCCX CLI logs]]&lt;br /&gt;
* [[Cannot login to CLI]]&lt;br /&gt;
* [[Enabling root account from CLI]]&lt;br /&gt;
* [[Checking UCCX version using CLI]]&lt;br /&gt;
* [[Checking if the current node is a VOS publisher]]&lt;br /&gt;
* [[Checking configured UCCX license using CLI]]&lt;br /&gt;
* [[Checking &amp;amp; updating JTAPI Client using CLI]]&lt;br /&gt;
* [[Updating the UCM IP address in UCCX from CLI]]&lt;br /&gt;
* [[Checking trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Setting trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Running DB query from UCCX CLI]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Security =&lt;br /&gt;
* [[CSA]]&lt;br /&gt;
* [[IPTables (firewall)]]&lt;br /&gt;
* [[Engine]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX IP Address/Hostname change =&lt;br /&gt;
* [[IP and Hostname change Log Collection]]&lt;br /&gt;
* [[Analyzing CCX IP and Hostname change log ]]&lt;br /&gt;
* [[Identify Cluster Issues after IP and Hostname change]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Wallboard Configuration =&lt;br /&gt;
* [[Troubleshooting and Log Collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CET =&lt;br /&gt;
* [[DB config objects not showing in CET]]&lt;br /&gt;
* [[CET tool exits with CetTool.bat not found error]]&lt;br /&gt;
* [[Enabling remote user account through CLI]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Licensing =&lt;br /&gt;
* [[Invalid License MAC address error at time of License Upload]]&lt;br /&gt;
* [[Need License MAC before system install to reduce time delay]]&lt;br /&gt;
* [[New Licenses required (License Rehosting)]]&lt;br /&gt;
* [[Using Demo licenses]]&lt;br /&gt;
* [[Warning: System running on grace period message on admin login]]&lt;br /&gt;
* [[Error: Grace period expired on admin login]]&lt;br /&gt;
* [[Warning: Some features are going to expire in x days message on admin login]]&lt;br /&gt;
* [[Error: License expired error on admin login]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0</id>
		<title>Troubleshooting Tips for Unified CCX 8.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0"/>
				<updated>2010-05-26T10:19:22Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Set up Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[Hardware not supported]]&lt;br /&gt;
* [[Unable to access NTP server]]&lt;br /&gt;
* [[Hardware not supported Error seen on 7835H2 and/or 7845H2]]&lt;br /&gt;
&lt;br /&gt;
= Backup and Restore =&lt;br /&gt;
&lt;br /&gt;
= Windows to Linux Upgrade =&lt;br /&gt;
* [[Desktop Agent Config backup operation failed using PUT]]&lt;br /&gt;
* [[Backup operation failed while backing up Config/Database/Recordings using PUT]]&lt;br /&gt;
* [[Pre-Upgrade Tool backup operation is not supported]]&lt;br /&gt;
* [[CVD communication failed during backup using PUT]]&lt;br /&gt;
* [[Could not find the Engine/DB master node during backup using PUT]]&lt;br /&gt;
* [[Database size is not supported during backup using PUT]]&lt;br /&gt;
* [[CCX Node is not reachable during backup using PUT]]&lt;br /&gt;
* [[Not all the recording files are backed up during backup using PUT]]&lt;br /&gt;
* [[Power failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[Failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[FTP/SFTP path not accessible during data restore]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in deployment type]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in license package]]&lt;br /&gt;
* [[Invalid backup TAR file used during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Not enough space to stage backup file on Unified CCX 8.0(1) during restore]]&lt;br /&gt;
* [[Component activation failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Activating the node as Publisher failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Database manager is not IN_SERVICE during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of configuration data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of DB data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Node 2 CTI ports removal failed during restore]]&lt;br /&gt;
* [[Recordings not getting played after upgrade]]&lt;br /&gt;
* [[Deletion of Node 2 JTAPI user from CUCM fails during restore]]&lt;br /&gt;
* [[The VRU connection port for ICM Subsystem fails to migrate during restore of IP-IVR system]]&lt;br /&gt;
* [[Problem occurred during backing up of restore logs]]&lt;br /&gt;
* [[PUT backup fails during Desktop Agent Config backup operation]]&lt;br /&gt;
&lt;br /&gt;
= Linux to Linux Upgrade =&lt;br /&gt;
* [http://zed.cisco.com/confluence/display/TRIAGE/Upgrade+FAQs Link to Platform Upgrade FAQ]&lt;br /&gt;
* [[No valid upgrade options found while running upgrade on node2]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Telephony Subsystem =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the subsystem in full service? If not refer to section for [[#Telephony Subsystem Out Of Service or Partial Service Issues]] below&lt;br /&gt;
* Also cross check JTAPI Client and Data sync. Refer to [[JTAPI Client and data resynchronization]]&lt;br /&gt;
&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on SS_TEL]]&lt;br /&gt;
* [[Turning on Unified CCX Telephony Client traces]]&lt;br /&gt;
* [[Turning on UCM CCM and CTI SDI and SDL traces]]&lt;br /&gt;
&lt;br /&gt;
=== Telephony Subsystem Out Of Service or Partial Service Issues ===&lt;br /&gt;
* [[Trigger partition change causes JTAPI subsystem to go to Partial Service]]&lt;br /&gt;
* [[Telephony Subsystem in Partial Service - calculateGroupReadiness indicates groups NOT READY]]&lt;br /&gt;
* [[Standard CTI Enabled role for JTAPI user]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - Unable to create provider]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - DB_ACCESS_ERROR]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service/Partial Service - Unable to Register CTI Port/Route Point]]&lt;br /&gt;
* [[Trigger Configuration Error]]&lt;br /&gt;
* [[Missing AddrInService events]]&lt;br /&gt;
* [[UCM Telephony SS in partial service after fall back to Node1]]&lt;br /&gt;
* [[UCM Telephony SS in partial service on a node]]&lt;br /&gt;
* [[JTAPI Client and data resynchronization]]&lt;br /&gt;
* [[JTAPI provider goes out of service]]&lt;br /&gt;
* [[Issues in JTAPI Port Recovery]]&lt;br /&gt;
&lt;br /&gt;
=== Callflow guides ===&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - IVR Call Flow]]&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - ICD Call Flow]]&lt;br /&gt;
&lt;br /&gt;
=== Identifying Issues in Call Flow ===&lt;br /&gt;
* [[Possible Issues in an ICD call flow]] &lt;br /&gt;
* Call is rejected as soon as it is received by Unified CCX&lt;br /&gt;
** [[REMOTE_TIMEOUT - No idle channels]]&lt;br /&gt;
* Call is not offered on the CTI Port&lt;br /&gt;
** [[TRIGGER_FAIL]]&lt;br /&gt;
** [[TRIGGER_MAX_SESSION]]&lt;br /&gt;
** [[Configuration issues]]&lt;br /&gt;
* Call is rejected after it is offered on the CTI Port&lt;br /&gt;
** [[SETUP_TIMEOUT]]&lt;br /&gt;
** [[SETUP_FAIL]]&lt;br /&gt;
* Issues invoking Application Task&lt;br /&gt;
** [[Null or Default Application Task]]&lt;br /&gt;
** [[ApplicationMaxSessionsException]]&lt;br /&gt;
** [[Invalid Script]]&lt;br /&gt;
* [[Media Setup Failure]]&lt;br /&gt;
* [[Codec Mismatch between Caller and CTI Port]]&lt;br /&gt;
* [[Call fails with CallCtlConnFailed event]]&lt;br /&gt;
* [[JTAPI Exception during redirect, accept, answer, transfer request]]&lt;br /&gt;
* [[Consult call fails with RESOURCE_BUSY]]&lt;br /&gt;
* Consult Call is not answered at agent extension&lt;br /&gt;
** [[RESOURCE_NOT_ACKNOWLEDGING]]&lt;br /&gt;
** [[RESOURCE_FORWARDING]]&lt;br /&gt;
* [[Could not meet post conditions of call.transfer]]&lt;br /&gt;
* [[Transfer does not receive CiscoTransferEndEv]]&lt;br /&gt;
* [[Multiple transfer failures]]&lt;br /&gt;
* [[Transfer success is false]]&lt;br /&gt;
&lt;br /&gt;
===Other tips===&lt;br /&gt;
* [[Call aborted due to WFMaxExecutedStepsExceededException]]&lt;br /&gt;
* [[Common Cause Codes and Meta Codes in JTAPI]]&lt;br /&gt;
* [[Troubleshooting JTAPI CCN Exceptions]]&lt;br /&gt;
* [[Codec support issues]]&lt;br /&gt;
* [[Commonly used regular expressions]]&lt;br /&gt;
* [[How to escalate an issue to IPCBU JTAPI team]]&lt;br /&gt;
* http://developer.cisco.com/web/jtapi/docs&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Media subsystem =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Media Traces]]&lt;br /&gt;
* [[Turning on IPVMS Traces]]&lt;br /&gt;
===General Media Issue===&lt;br /&gt;
* [[Media subsystem is stuck in initializing state]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express = &lt;br /&gt;
* [[Enabling CME Tracing]]&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
* [[Unified CCX stops working after Unified CME is rebuilt after crash]]&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
* [[Creation of Outbound trigger DN on UCCX fails]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IPIVR/ICM =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the ICM subsystem in full service in the IVR box? If not refer to section for [[#ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG]] below.&lt;br /&gt;
&lt;br /&gt;
* Verify whether the license uploaded on the system is for IVR.&lt;br /&gt;
 &lt;br /&gt;
* [[ Logs to be enabled for IVR issues ]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*  After the above mentioned logs are enabled, search the MIVR logs for any Exceptions- &amp;quot;exception&amp;quot; or errors. The following exceptions seen in MIVR logs can be ignored as they are benign in nature:&lt;br /&gt;
&lt;br /&gt;
     435718: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-DISPATCH_FAILURE:A failure occured while dispatching an event: &lt;br /&gt;
     listener=com.cisco.wf.subsystems.ged125.ICMChannel$CallListenerAdapter@118cef5,Exception=&lt;br /&gt;
     java.lang.IllegalStateException: already cleared&lt;br /&gt;
     435719: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-EXCEPTION:java.lang.IllegalStateException: already cleared&lt;br /&gt;
&lt;br /&gt;
&amp;quot;ICM subsystem in IVR receives call control events such as call cleared, call transferred etc from ICM as well as JTAPI (call manager). Hence, in some cases, this results in race conditions where ICM susbsystem processes the event coming from JTAPI and immediately receives another event for the same call control operation from ICM.  In such cases, the second request fails because the event is already processed by IVR and hence we see DISPATCH_FAILURE exceptions in the logs, which are purely benign.&lt;br /&gt;
&lt;br /&gt;
In normal scenarios, ICM susbsystem(in IVR) notifies the ICM that the call is cleared as soon as it processes the event from JTAPI, in which case ICM does not send another call cleared request to IVR. However, in some cases it may so happen that ICM and JTAPI send this event almost at the same time due to which we see DISPATCH_FAILURE exceptions in the logs as explained above. These exceptions can be ignored as they do not result in any failures in the system.&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
Based on the exceptions, Isolate the issues into the following -&lt;br /&gt;
&lt;br /&gt;
=== JTAPI issues ===&lt;br /&gt;
&lt;br /&gt;
Many a times, calls fail in IVR/ICM  due to telephony/JTAPI issues. Refer to the [[#Cisco Unified Communications Manager Telephony Subsystem]] and check whether the calls are failing at JTAPI level due to which ICM subsystem is unable to process calls in IPIVR.&lt;br /&gt;
&lt;br /&gt;
=== ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[ ICM subsystem is in OUT OF SERVICE state from IVR side and also the VRU PIM stays in IDLE state rather than ACTIVE state in the ICM peripheral gateway. ]]&lt;br /&gt;
          &lt;br /&gt;
* [[ Calls to IVR are failing and ICM subsystem is OUT_OF_SERVICE. ]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Issues ===&lt;br /&gt;
 &lt;br /&gt;
* [[ Calls are failing in IVR and user hears busy tone for these calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[IVR sends wrong values to ICM for the call variables.]] &lt;br /&gt;
&lt;br /&gt;
* [[Call transfer fails if the agent transfers the call from one IVR to a different IVR.]]&lt;br /&gt;
&lt;br /&gt;
* [[Intermittent Translation Route to VRU failure.]]&lt;br /&gt;
&lt;br /&gt;
* [[ Call reserves an agent although caller hanged in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ IVR gets freezed when the calls are more than the actual ports and requires an engine restart for recovery. ]]&lt;br /&gt;
&lt;br /&gt;
=== Set up Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing in IVR intermittently – Some calls go through successfully and some fail intermittently and it may seem like the TCP connection is broken from the VRU PIM side at the time of the failed calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing with ApplicationMaxSessionsException because there are not enough sessions created for an ICM application in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ What versions of IP IVR are supported for UCCE 8.0? ]]&lt;br /&gt;
&lt;br /&gt;
=== Other Tips ===&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/CRA/Training/UCCX_8_0_IVR-ICM_Integration.pptx&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/ICM/Components/PG/PIMs/VRU/GED125.doc&lt;br /&gt;
&lt;br /&gt;
* [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
* Many services in Deactivated state. Refer to [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[Error in IE (Class doesn't support Automation) ]]&lt;br /&gt;
* [[User Authentication error during CUCM configuration ]]&lt;br /&gt;
* [[HTTP 403 or security protocols error ]]&lt;br /&gt;
* [[Add to cluster repeats in a loop ]]&lt;br /&gt;
* [[Object error during component activation ]]&lt;br /&gt;
* [[Components in deactivated state ]]&lt;br /&gt;
* [[UCCX Data containing &amp;quot;less than &amp;quot; or &amp;quot;greater than&amp;quot; characters fails to save ]]&lt;br /&gt;
* [[Component activation failed during cluster setup ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
== Replication ==&lt;br /&gt;
&lt;br /&gt;
*[[Reset and Repair - what is the difference]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
*[[Script porting issues]]&lt;br /&gt;
*[[W1 upgrade issues]]&lt;br /&gt;
*[[Editor hanging issues]]&lt;br /&gt;
*[[Issues with installing on windows vista and windows 7]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Application subsystem is in partial service]] &lt;br /&gt;
* [[Changes to applications do not register]] &lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]] &lt;br /&gt;
* [[An error message plays when calling a CTI route point]] &lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[ How to debug OutOfMemoryError ]]&lt;br /&gt;
* [[ How to analyze heap dumps ]]&lt;br /&gt;
* [[ How to debug the root cause for high CPU usage ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX ICD =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Required Tracing ===&lt;br /&gt;
* [[Log_Levels_for_issues_related_to_Routing_and_Queuing]]&lt;br /&gt;
=== RmCm is OOS OR in Partial Service ===&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem stuck in INITIALIZING state]]&lt;br /&gt;
&lt;br /&gt;
=== RmCm Configurations issues ===&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
&lt;br /&gt;
=== Agent Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[Unable to login Unified CCX Agent ]]&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state-Script queues and dequeueAll's the call to multiple CSQ's]]&lt;br /&gt;
* [[Agent stuck in Reserved state]]&lt;br /&gt;
* [[Agent stuck in Reserved state-&amp;quot;Not posting the ContactPresentedEvent&amp;quot; seen in logs]]&lt;br /&gt;
* [[Agent stuck in Reserved state-SessionTransferredMsg shows Initial and Final Contact Type:IAQ_CONSULT_CONTACT ]]&lt;br /&gt;
* [[Agent State transformations in Select Join and Join Across Line scenarios]]&lt;br /&gt;
&lt;br /&gt;
=== Call Issues ===&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Calls are sometimes not delivered accordingly to Skill Competence when Resource Selection Criteria is Most Skilled]]&lt;br /&gt;
* [[Same call is presented to two agents]]&lt;br /&gt;
* [[Agent and customer start hearing UCCX recordings played over their conversation]]&lt;br /&gt;
&lt;br /&gt;
=== Scripting Issue ===&lt;br /&gt;
* [[Call redirected from one RP to the other multiple times with Redirect Step]]&lt;br /&gt;
&lt;br /&gt;
=== Unsupported scenarios ===&lt;br /&gt;
&lt;br /&gt;
* [[IncompatibleSessionException seen in MIVR logs]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Guides ===&lt;br /&gt;
* [[Guide to read MIVR logs for a simple ICD call]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[RTR in SelectJoin, DirectTransfer, JoinAcrossLines, DirectTransferAcrossLines Scenarios]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Pre-Requisites]]&lt;br /&gt;
* [[Required Log levels]]&lt;br /&gt;
* [[Historical records not getting written to database]]&lt;br /&gt;
* [[Discrepancies of JAL Scenarios]]&lt;br /&gt;
* [[Differences among Various Cisco Unified CCX reports]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Automatic Speech Recognition Traces]]&lt;br /&gt;
===General ASR Issues===&lt;br /&gt;
* [[How To Bring MRCP ASR Provider To InService State]]&lt;br /&gt;
* [[Nuance 9.0 not working with Unified CCX]]&lt;br /&gt;
* [[How to integrate MRCP ASR-TTS with Unified CCX]]&lt;br /&gt;
* [[Assure ASR-TTS ports/resources are freed up after the application finishes]]&lt;br /&gt;
* [[UnsupportedGrammarException with Cisco Media i.e Default Dialog group]]&lt;br /&gt;
* [[Built in Grammar minlength and maxlength with Default or Cisco Media Group for DTMF inputs]]&lt;br /&gt;
* [[How to allow both DTMF and Speech Recognition together]]&lt;br /&gt;
* [[The Names are not recognized]]&lt;br /&gt;
* [[MRCP ASR Subsystem Status is out of service]]&lt;br /&gt;
* [[MRCP ASR Providers, MRCP Servers, or Groups Changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
*&amp;lt;B&amp;gt;Trace Levels&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Log Level usage in Outbound Subsystem]]&lt;br /&gt;
**[[Log Levels required to troubleshoot outbound issues]]&lt;br /&gt;
*&amp;lt;B&amp;gt;General Outbound Issues&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound contacts not being dialed after failover]]&lt;br /&gt;
**[[Outbound calls fail with no callback number]]&lt;br /&gt;
**[[Outbound agent Stuck in Reserved state]]&lt;br /&gt;
**[[Outbound General Configuration data is changed]]&lt;br /&gt;
**[[Outbound Subsystem is Out Of Service]]&lt;br /&gt;
*&amp;lt;B&amp;gt;Issues Related To Outbound Call Flow&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound agents are ready for long time with available contacts]]&lt;br /&gt;
*&amp;lt;B&amp;gt;CAD/CDA related issues&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Outbound Buttons are disabled on CAD]]&lt;br /&gt;
** [[CDA doesn't show checkbox for Outbound Dialer Mode]]&lt;br /&gt;
&lt;br /&gt;
= Text-To-Speech =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Text To Speech traces]]&lt;br /&gt;
=== General TTS Issues ===&lt;br /&gt;
* [[Setting TTS Provider as Default TTS Provider]]&lt;br /&gt;
* [[How To Bring MRCP TTS Provider To InService State ]]&lt;br /&gt;
* [[Control prosody rate in PlayPrompt TTS block]]&lt;br /&gt;
* [[TTS Provider shows Last Status when Added Again]]&lt;br /&gt;
* [[MRCP TTS subsystem shows out of service status]]&lt;br /&gt;
* [[MRCP TTS Providers, MRCP Servers, locales, or genders changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
*&amp;lt;B&amp;gt; Real-Time Monitoring Tool (RTMT)&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Troubleshooting RTMT Installation Errors]]&lt;br /&gt;
** [[Not able to install different RTMT clients on the same box]]&lt;br /&gt;
** [[Unable to Log in to Cisco Unified Real-Time Monitoring Tool]]&lt;br /&gt;
** [[Unable to Collect data for the second node from RTMT when the Primary Node is down]]&lt;br /&gt;
** [[Troubleshooting DiskSpace and Partition related alerts]]&lt;br /&gt;
** [[Collecting logs for troubleshooting RTMT Alerts]]&lt;br /&gt;
** [[Configuring RTMT Trace Settings]]&lt;br /&gt;
*&amp;lt;B&amp;gt;SNMP&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Log Collection for SNMP Voice SubAgent issues]]&lt;br /&gt;
** [[Unable to receive Unified CCX SNMP Traps]]&lt;br /&gt;
** [[SNMP operations on the Voice MIB not fetching any output]]&lt;br /&gt;
** [[Troubleshooting Alarms/Alerts to be sent as SNMP Traps]]&lt;br /&gt;
*&amp;lt;B&amp;gt; Log Profile &amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Debugging issues]]&lt;br /&gt;
** [[Known issues]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability (Analysis Manager) =&lt;br /&gt;
* [[I don't see the Analysis Manager Drawer or Menu items]]&lt;br /&gt;
* [[RTMT does not come up or behaves strangely]]&lt;br /&gt;
* [[I cannot log into RTMT]]&lt;br /&gt;
* [[My ‘Test Connectivity’ for Unified CCX node is failing]]&lt;br /&gt;
* [[The Call Records Repository connectivity test is failing]]&lt;br /&gt;
* [[Where can I access RTMT and Analysis Manager logs]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX VXML traces]]&lt;br /&gt;
=== General VXML Issues ===&lt;br /&gt;
* [[How to use JavaScript greater than, less than and ampersand symbols in vxml var expr declaration]]&lt;br /&gt;
* [[Voice Browser Not able to fetch files with dynamic file extensions]]&lt;br /&gt;
* [[Not able to fetch grammar and prompt files through CRTP]]&lt;br /&gt;
* [[VXML tag not working properly with VoiceBrowser]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Cluster setup =&lt;br /&gt;
&lt;br /&gt;
* [[Component activation failed during cluster setup]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
&lt;br /&gt;
* [[RCA for Engine failover]]&lt;br /&gt;
* [[Engine and CAD failover taking long time]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[hear nothing while playing back desktop recorded sessions]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CLI =&lt;br /&gt;
* [[UCCX CLI log collection]]&lt;br /&gt;
* [[Analyzing UCCX CLI logs]]&lt;br /&gt;
* [[Cannot login to CLI]]&lt;br /&gt;
* [[Enabling root account from CLI]]&lt;br /&gt;
* [[Checking UCCX version using CLI]]&lt;br /&gt;
* [[Checking if the current node is a VOS publisher]]&lt;br /&gt;
* [[Checking configured UCCX license using CLI]]&lt;br /&gt;
* [[Checking &amp;amp; updating JTAPI Client using CLI]]&lt;br /&gt;
* [[Updating the UCM IP address in UCCX from CLI]]&lt;br /&gt;
* [[Checking trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Setting trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Running DB query from UCCX CLI]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Security =&lt;br /&gt;
* [[CSA]]&lt;br /&gt;
* [[IPTables (firewall)]]&lt;br /&gt;
* [[Engine]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX IP Address/Hostname change =&lt;br /&gt;
* [[IP and Hostname change Log Collection]]&lt;br /&gt;
* [[Analyzing CCX IP and Hostname change log ]]&lt;br /&gt;
* [[Identify Cluster Issues after IP and Hostname change]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Wallboard Configuration =&lt;br /&gt;
* [[Troubleshooting and Log Collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CET =&lt;br /&gt;
* [[DB config objects not showing in CET]]&lt;br /&gt;
* [[CET tool exits with CetTool.bat not found error]]&lt;br /&gt;
* [[Enabling remote user account through CLI]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Licensing =&lt;br /&gt;
* [[Invalid License MAC address error at time of License Upload]]&lt;br /&gt;
* [[Need License MAC before system install to reduce time delay]]&lt;br /&gt;
* [[New Licenses required (License Rehosting)]]&lt;br /&gt;
* [[Using Demo licenses]]&lt;br /&gt;
* [[Warning: System running on grace period message on admin login]]&lt;br /&gt;
* [[Error: Grace period expired on admin login]]&lt;br /&gt;
* [[Warning: Some features are going to expire in x days message on admin login]]&lt;br /&gt;
* [[Error: License expired error on admin login]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0</id>
		<title>Troubleshooting Tips for Unified CCX 8.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0"/>
				<updated>2010-05-26T10:17:40Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Set up Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[Hardware not supported]]&lt;br /&gt;
* [[Unable to access NTP server]]&lt;br /&gt;
* [[Hardware not supported Error seen on 7835H2 and/or 7845H2]]&lt;br /&gt;
&lt;br /&gt;
= Backup and Restore =&lt;br /&gt;
&lt;br /&gt;
= Windows to Linux Upgrade =&lt;br /&gt;
* [[Desktop Agent Config backup operation failed using PUT]]&lt;br /&gt;
* [[Backup operation failed while backing up Config/Database/Recordings using PUT]]&lt;br /&gt;
* [[Pre-Upgrade Tool backup operation is not supported]]&lt;br /&gt;
* [[CVD communication failed during backup using PUT]]&lt;br /&gt;
* [[Could not find the Engine/DB master node during backup using PUT]]&lt;br /&gt;
* [[Database size is not supported during backup using PUT]]&lt;br /&gt;
* [[CCX Node is not reachable during backup using PUT]]&lt;br /&gt;
* [[Not all the recording files are backed up during backup using PUT]]&lt;br /&gt;
* [[Power failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[Failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[FTP/SFTP path not accessible during data restore]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in deployment type]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in license package]]&lt;br /&gt;
* [[Invalid backup TAR file used during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Not enough space to stage backup file on Unified CCX 8.0(1) during restore]]&lt;br /&gt;
* [[Component activation failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Activating the node as Publisher failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Database manager is not IN_SERVICE during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of configuration data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of DB data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Node 2 CTI ports removal failed during restore]]&lt;br /&gt;
* [[Recordings not getting played after upgrade]]&lt;br /&gt;
* [[Deletion of Node 2 JTAPI user from CUCM fails during restore]]&lt;br /&gt;
* [[The VRU connection port for ICM Subsystem fails to migrate during restore of IP-IVR system]]&lt;br /&gt;
* [[Problem occurred during backing up of restore logs]]&lt;br /&gt;
* [[PUT backup fails during Desktop Agent Config backup operation]]&lt;br /&gt;
&lt;br /&gt;
= Linux to Linux Upgrade =&lt;br /&gt;
* [http://zed.cisco.com/confluence/display/TRIAGE/Upgrade+FAQs Link to Platform Upgrade FAQ]&lt;br /&gt;
* [[No valid upgrade options found while running upgrade on node2]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Telephony Subsystem =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the subsystem in full service? If not refer to section for [[#Telephony Subsystem Out Of Service or Partial Service Issues]] below&lt;br /&gt;
* Also cross check JTAPI Client and Data sync. Refer to [[JTAPI Client and data resynchronization]]&lt;br /&gt;
&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on SS_TEL]]&lt;br /&gt;
* [[Turning on Unified CCX Telephony Client traces]]&lt;br /&gt;
* [[Turning on UCM CCM and CTI SDI and SDL traces]]&lt;br /&gt;
&lt;br /&gt;
=== Telephony Subsystem Out Of Service or Partial Service Issues ===&lt;br /&gt;
* [[Trigger partition change causes JTAPI subsystem to go to Partial Service]]&lt;br /&gt;
* [[Telephony Subsystem in Partial Service - calculateGroupReadiness indicates groups NOT READY]]&lt;br /&gt;
* [[Standard CTI Enabled role for JTAPI user]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - Unable to create provider]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - DB_ACCESS_ERROR]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service/Partial Service - Unable to Register CTI Port/Route Point]]&lt;br /&gt;
* [[Trigger Configuration Error]]&lt;br /&gt;
* [[Missing AddrInService events]]&lt;br /&gt;
* [[UCM Telephony SS in partial service after fall back to Node1]]&lt;br /&gt;
* [[UCM Telephony SS in partial service on a node]]&lt;br /&gt;
* [[JTAPI Client and data resynchronization]]&lt;br /&gt;
* [[JTAPI provider goes out of service]]&lt;br /&gt;
* [[Issues in JTAPI Port Recovery]]&lt;br /&gt;
&lt;br /&gt;
=== Callflow guides ===&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - IVR Call Flow]]&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - ICD Call Flow]]&lt;br /&gt;
&lt;br /&gt;
=== Identifying Issues in Call Flow ===&lt;br /&gt;
* [[Possible Issues in an ICD call flow]] &lt;br /&gt;
* Call is rejected as soon as it is received by Unified CCX&lt;br /&gt;
** [[REMOTE_TIMEOUT - No idle channels]]&lt;br /&gt;
* Call is not offered on the CTI Port&lt;br /&gt;
** [[TRIGGER_FAIL]]&lt;br /&gt;
** [[TRIGGER_MAX_SESSION]]&lt;br /&gt;
** [[Configuration issues]]&lt;br /&gt;
* Call is rejected after it is offered on the CTI Port&lt;br /&gt;
** [[SETUP_TIMEOUT]]&lt;br /&gt;
** [[SETUP_FAIL]]&lt;br /&gt;
* Issues invoking Application Task&lt;br /&gt;
** [[Null or Default Application Task]]&lt;br /&gt;
** [[ApplicationMaxSessionsException]]&lt;br /&gt;
** [[Invalid Script]]&lt;br /&gt;
* [[Media Setup Failure]]&lt;br /&gt;
* [[Codec Mismatch between Caller and CTI Port]]&lt;br /&gt;
* [[Call fails with CallCtlConnFailed event]]&lt;br /&gt;
* [[JTAPI Exception during redirect, accept, answer, transfer request]]&lt;br /&gt;
* [[Consult call fails with RESOURCE_BUSY]]&lt;br /&gt;
* Consult Call is not answered at agent extension&lt;br /&gt;
** [[RESOURCE_NOT_ACKNOWLEDGING]]&lt;br /&gt;
** [[RESOURCE_FORWARDING]]&lt;br /&gt;
* [[Could not meet post conditions of call.transfer]]&lt;br /&gt;
* [[Transfer does not receive CiscoTransferEndEv]]&lt;br /&gt;
* [[Multiple transfer failures]]&lt;br /&gt;
* [[Transfer success is false]]&lt;br /&gt;
&lt;br /&gt;
===Other tips===&lt;br /&gt;
* [[Call aborted due to WFMaxExecutedStepsExceededException]]&lt;br /&gt;
* [[Common Cause Codes and Meta Codes in JTAPI]]&lt;br /&gt;
* [[Troubleshooting JTAPI CCN Exceptions]]&lt;br /&gt;
* [[Codec support issues]]&lt;br /&gt;
* [[Commonly used regular expressions]]&lt;br /&gt;
* [[How to escalate an issue to IPCBU JTAPI team]]&lt;br /&gt;
* http://developer.cisco.com/web/jtapi/docs&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Media subsystem =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Media Traces]]&lt;br /&gt;
* [[Turning on IPVMS Traces]]&lt;br /&gt;
===General Media Issue===&lt;br /&gt;
* [[Media subsystem is stuck in initializing state]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express = &lt;br /&gt;
* [[Enabling CME Tracing]]&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
* [[Unified CCX stops working after Unified CME is rebuilt after crash]]&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
* [[Creation of Outbound trigger DN on UCCX fails]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IPIVR/ICM =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the ICM subsystem in full service in the IVR box? If not refer to section for [[#ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG]] below.&lt;br /&gt;
&lt;br /&gt;
* Verify whether the license uploaded on the system is for IVR.&lt;br /&gt;
 &lt;br /&gt;
* [[ Logs to be enabled for IVR issues ]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*  After the above mentioned logs are enabled, search the MIVR logs for any Exceptions- &amp;quot;exception&amp;quot; or errors. The following exceptions seen in MIVR logs can be ignored as they are benign in nature:&lt;br /&gt;
&lt;br /&gt;
     435718: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-DISPATCH_FAILURE:A failure occured while dispatching an event: &lt;br /&gt;
     listener=com.cisco.wf.subsystems.ged125.ICMChannel$CallListenerAdapter@118cef5,Exception=&lt;br /&gt;
     java.lang.IllegalStateException: already cleared&lt;br /&gt;
     435719: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-EXCEPTION:java.lang.IllegalStateException: already cleared&lt;br /&gt;
&lt;br /&gt;
&amp;quot;ICM subsystem in IVR receives call control events such as call cleared, call transferred etc from ICM as well as JTAPI (call manager). Hence, in some cases, this results in race conditions where ICM susbsystem processes the event coming from JTAPI and immediately receives another event for the same call control operation from ICM.  In such cases, the second request fails because the event is already processed by IVR and hence we see DISPATCH_FAILURE exceptions in the logs, which are purely benign.&lt;br /&gt;
&lt;br /&gt;
In normal scenarios, ICM susbsystem(in IVR) notifies the ICM that the call is cleared as soon as it processes the event from JTAPI, in which case ICM does not send another call cleared request to IVR. However, in some cases it may so happen that ICM and JTAPI send this event almost at the same time due to which we see DISPATCH_FAILURE exceptions in the logs as explained above. These exceptions can be ignored as they do not result in any failures in the system.&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
Based on the exceptions, Isolate the issues into the following -&lt;br /&gt;
&lt;br /&gt;
=== JTAPI issues ===&lt;br /&gt;
&lt;br /&gt;
Many a times, calls fail in IVR/ICM  due to telephony/JTAPI issues. Refer to the [[#Cisco Unified Communications Manager Telephony Subsystem]] and check whether the calls are failing at JTAPI level due to which ICM subsystem is unable to process calls in IPIVR.&lt;br /&gt;
&lt;br /&gt;
=== ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[ ICM subsystem is in OUT OF SERVICE state from IVR side and also the VRU PIM stays in IDLE state rather than ACTIVE state in the ICM peripheral gateway. ]]&lt;br /&gt;
          &lt;br /&gt;
* [[ Calls to IVR are failing and ICM subsystem is OUT_OF_SERVICE. ]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Issues ===&lt;br /&gt;
 &lt;br /&gt;
* [[ Calls are failing in IVR and user hears busy tone for these calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[IVR sends wrong values to ICM for the call variables.]] &lt;br /&gt;
&lt;br /&gt;
* [[Call transfer fails if the agent transfers the call from one IVR to a different IVR.]]&lt;br /&gt;
&lt;br /&gt;
* [[Intermittent Translation Route to VRU failure.]]&lt;br /&gt;
&lt;br /&gt;
* [[ Call reserves an agent although caller hanged in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ IVR gets freezed when the calls are more than the actual ports and requires an engine restart for recovery. ]]&lt;br /&gt;
&lt;br /&gt;
=== Set up Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing in IVR intermittently – Some calls go through successfully and some fail intermittently and it may seem like the TCP connection is broken from the VRU PIM side at the time of the failed calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing with ApplicationMaxSessionsException because there are not enough sessions created for an ICM application in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ What versions of IP IVR are supported for UCCE 8.0? ]]&lt;br /&gt;
&lt;br /&gt;
* [[JTAPI OOS on one of the nodes in HA over WAN deployment ]]&lt;br /&gt;
&lt;br /&gt;
=== Other Tips ===&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/CRA/Training/UCCX_8_0_IVR-ICM_Integration.pptx&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/ICM/Components/PG/PIMs/VRU/GED125.doc&lt;br /&gt;
&lt;br /&gt;
* [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
* Many services in Deactivated state. Refer to [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[Error in IE (Class doesn't support Automation) ]]&lt;br /&gt;
* [[User Authentication error during CUCM configuration ]]&lt;br /&gt;
* [[HTTP 403 or security protocols error ]]&lt;br /&gt;
* [[Add to cluster repeats in a loop ]]&lt;br /&gt;
* [[Object error during component activation ]]&lt;br /&gt;
* [[Components in deactivated state ]]&lt;br /&gt;
* [[UCCX Data containing &amp;quot;less than &amp;quot; or &amp;quot;greater than&amp;quot; characters fails to save ]]&lt;br /&gt;
* [[Component activation failed during cluster setup ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
== Replication ==&lt;br /&gt;
&lt;br /&gt;
*[[Reset and Repair - what is the difference]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
*[[Script porting issues]]&lt;br /&gt;
*[[W1 upgrade issues]]&lt;br /&gt;
*[[Editor hanging issues]]&lt;br /&gt;
*[[Issues with installing on windows vista and windows 7]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Application subsystem is in partial service]] &lt;br /&gt;
* [[Changes to applications do not register]] &lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]] &lt;br /&gt;
* [[An error message plays when calling a CTI route point]] &lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[ How to debug OutOfMemoryError ]]&lt;br /&gt;
* [[ How to analyze heap dumps ]]&lt;br /&gt;
* [[ How to debug the root cause for high CPU usage ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX ICD =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Required Tracing ===&lt;br /&gt;
* [[Log_Levels_for_issues_related_to_Routing_and_Queuing]]&lt;br /&gt;
=== RmCm is OOS OR in Partial Service ===&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem stuck in INITIALIZING state]]&lt;br /&gt;
&lt;br /&gt;
=== RmCm Configurations issues ===&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
&lt;br /&gt;
=== Agent Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[Unable to login Unified CCX Agent ]]&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state-Script queues and dequeueAll's the call to multiple CSQ's]]&lt;br /&gt;
* [[Agent stuck in Reserved state]]&lt;br /&gt;
* [[Agent stuck in Reserved state-&amp;quot;Not posting the ContactPresentedEvent&amp;quot; seen in logs]]&lt;br /&gt;
* [[Agent stuck in Reserved state-SessionTransferredMsg shows Initial and Final Contact Type:IAQ_CONSULT_CONTACT ]]&lt;br /&gt;
* [[Agent State transformations in Select Join and Join Across Line scenarios]]&lt;br /&gt;
&lt;br /&gt;
=== Call Issues ===&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Calls are sometimes not delivered accordingly to Skill Competence when Resource Selection Criteria is Most Skilled]]&lt;br /&gt;
* [[Same call is presented to two agents]]&lt;br /&gt;
* [[Agent and customer start hearing UCCX recordings played over their conversation]]&lt;br /&gt;
&lt;br /&gt;
=== Scripting Issue ===&lt;br /&gt;
* [[Call redirected from one RP to the other multiple times with Redirect Step]]&lt;br /&gt;
&lt;br /&gt;
=== Unsupported scenarios ===&lt;br /&gt;
&lt;br /&gt;
* [[IncompatibleSessionException seen in MIVR logs]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Guides ===&lt;br /&gt;
* [[Guide to read MIVR logs for a simple ICD call]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[RTR in SelectJoin, DirectTransfer, JoinAcrossLines, DirectTransferAcrossLines Scenarios]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Pre-Requisites]]&lt;br /&gt;
* [[Required Log levels]]&lt;br /&gt;
* [[Historical records not getting written to database]]&lt;br /&gt;
* [[Discrepancies of JAL Scenarios]]&lt;br /&gt;
* [[Differences among Various Cisco Unified CCX reports]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Automatic Speech Recognition Traces]]&lt;br /&gt;
===General ASR Issues===&lt;br /&gt;
* [[How To Bring MRCP ASR Provider To InService State]]&lt;br /&gt;
* [[Nuance 9.0 not working with Unified CCX]]&lt;br /&gt;
* [[How to integrate MRCP ASR-TTS with Unified CCX]]&lt;br /&gt;
* [[Assure ASR-TTS ports/resources are freed up after the application finishes]]&lt;br /&gt;
* [[UnsupportedGrammarException with Cisco Media i.e Default Dialog group]]&lt;br /&gt;
* [[Built in Grammar minlength and maxlength with Default or Cisco Media Group for DTMF inputs]]&lt;br /&gt;
* [[How to allow both DTMF and Speech Recognition together]]&lt;br /&gt;
* [[The Names are not recognized]]&lt;br /&gt;
* [[MRCP ASR Subsystem Status is out of service]]&lt;br /&gt;
* [[MRCP ASR Providers, MRCP Servers, or Groups Changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
*&amp;lt;B&amp;gt;Trace Levels&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Log Level usage in Outbound Subsystem]]&lt;br /&gt;
**[[Log Levels required to troubleshoot outbound issues]]&lt;br /&gt;
*&amp;lt;B&amp;gt;General Outbound Issues&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound contacts not being dialed after failover]]&lt;br /&gt;
**[[Outbound calls fail with no callback number]]&lt;br /&gt;
**[[Outbound agent Stuck in Reserved state]]&lt;br /&gt;
**[[Outbound General Configuration data is changed]]&lt;br /&gt;
**[[Outbound Subsystem is Out Of Service]]&lt;br /&gt;
*&amp;lt;B&amp;gt;Issues Related To Outbound Call Flow&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound agents are ready for long time with available contacts]]&lt;br /&gt;
*&amp;lt;B&amp;gt;CAD/CDA related issues&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Outbound Buttons are disabled on CAD]]&lt;br /&gt;
** [[CDA doesn't show checkbox for Outbound Dialer Mode]]&lt;br /&gt;
&lt;br /&gt;
= Text-To-Speech =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Text To Speech traces]]&lt;br /&gt;
=== General TTS Issues ===&lt;br /&gt;
* [[Setting TTS Provider as Default TTS Provider]]&lt;br /&gt;
* [[How To Bring MRCP TTS Provider To InService State ]]&lt;br /&gt;
* [[Control prosody rate in PlayPrompt TTS block]]&lt;br /&gt;
* [[TTS Provider shows Last Status when Added Again]]&lt;br /&gt;
* [[MRCP TTS subsystem shows out of service status]]&lt;br /&gt;
* [[MRCP TTS Providers, MRCP Servers, locales, or genders changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
*&amp;lt;B&amp;gt; Real-Time Monitoring Tool (RTMT)&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Troubleshooting RTMT Installation Errors]]&lt;br /&gt;
** [[Not able to install different RTMT clients on the same box]]&lt;br /&gt;
** [[Unable to Log in to Cisco Unified Real-Time Monitoring Tool]]&lt;br /&gt;
** [[Unable to Collect data for the second node from RTMT when the Primary Node is down]]&lt;br /&gt;
** [[Troubleshooting DiskSpace and Partition related alerts]]&lt;br /&gt;
** [[Collecting logs for troubleshooting RTMT Alerts]]&lt;br /&gt;
** [[Configuring RTMT Trace Settings]]&lt;br /&gt;
*&amp;lt;B&amp;gt;SNMP&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Log Collection for SNMP Voice SubAgent issues]]&lt;br /&gt;
** [[Unable to receive Unified CCX SNMP Traps]]&lt;br /&gt;
** [[SNMP operations on the Voice MIB not fetching any output]]&lt;br /&gt;
** [[Troubleshooting Alarms/Alerts to be sent as SNMP Traps]]&lt;br /&gt;
*&amp;lt;B&amp;gt; Log Profile &amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Debugging issues]]&lt;br /&gt;
** [[Known issues]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability (Analysis Manager) =&lt;br /&gt;
* [[I don't see the Analysis Manager Drawer or Menu items]]&lt;br /&gt;
* [[RTMT does not come up or behaves strangely]]&lt;br /&gt;
* [[I cannot log into RTMT]]&lt;br /&gt;
* [[My ‘Test Connectivity’ for Unified CCX node is failing]]&lt;br /&gt;
* [[The Call Records Repository connectivity test is failing]]&lt;br /&gt;
* [[Where can I access RTMT and Analysis Manager logs]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX VXML traces]]&lt;br /&gt;
=== General VXML Issues ===&lt;br /&gt;
* [[How to use JavaScript greater than, less than and ampersand symbols in vxml var expr declaration]]&lt;br /&gt;
* [[Voice Browser Not able to fetch files with dynamic file extensions]]&lt;br /&gt;
* [[Not able to fetch grammar and prompt files through CRTP]]&lt;br /&gt;
* [[VXML tag not working properly with VoiceBrowser]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Cluster setup =&lt;br /&gt;
&lt;br /&gt;
* [[Component activation failed during cluster setup]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
&lt;br /&gt;
* [[RCA for Engine failover]]&lt;br /&gt;
* [[Engine and CAD failover taking long time]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[hear nothing while playing back desktop recorded sessions]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CLI =&lt;br /&gt;
* [[UCCX CLI log collection]]&lt;br /&gt;
* [[Analyzing UCCX CLI logs]]&lt;br /&gt;
* [[Cannot login to CLI]]&lt;br /&gt;
* [[Enabling root account from CLI]]&lt;br /&gt;
* [[Checking UCCX version using CLI]]&lt;br /&gt;
* [[Checking if the current node is a VOS publisher]]&lt;br /&gt;
* [[Checking configured UCCX license using CLI]]&lt;br /&gt;
* [[Checking &amp;amp; updating JTAPI Client using CLI]]&lt;br /&gt;
* [[Updating the UCM IP address in UCCX from CLI]]&lt;br /&gt;
* [[Checking trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Setting trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Running DB query from UCCX CLI]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Security =&lt;br /&gt;
* [[CSA]]&lt;br /&gt;
* [[IPTables (firewall)]]&lt;br /&gt;
* [[Engine]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX IP Address/Hostname change =&lt;br /&gt;
* [[IP and Hostname change Log Collection]]&lt;br /&gt;
* [[Analyzing CCX IP and Hostname change log ]]&lt;br /&gt;
* [[Identify Cluster Issues after IP and Hostname change]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Wallboard Configuration =&lt;br /&gt;
* [[Troubleshooting and Log Collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CET =&lt;br /&gt;
* [[DB config objects not showing in CET]]&lt;br /&gt;
* [[CET tool exits with CetTool.bat not found error]]&lt;br /&gt;
* [[Enabling remote user account through CLI]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Licensing =&lt;br /&gt;
* [[Invalid License MAC address error at time of License Upload]]&lt;br /&gt;
* [[Need License MAC before system install to reduce time delay]]&lt;br /&gt;
* [[New Licenses required (License Rehosting)]]&lt;br /&gt;
* [[Using Demo licenses]]&lt;br /&gt;
* [[Warning: System running on grace period message on admin login]]&lt;br /&gt;
* [[Error: Grace period expired on admin login]]&lt;br /&gt;
* [[Warning: Some features are going to expire in x days message on admin login]]&lt;br /&gt;
* [[Error: License expired error on admin login]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0</id>
		<title>Troubleshooting Tips for Unified CCX 8.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0"/>
				<updated>2010-05-26T10:15:02Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* General TTS Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[Hardware not supported]]&lt;br /&gt;
* [[Unable to access NTP server]]&lt;br /&gt;
* [[Hardware not supported Error seen on 7835H2 and/or 7845H2]]&lt;br /&gt;
&lt;br /&gt;
= Backup and Restore =&lt;br /&gt;
&lt;br /&gt;
= Windows to Linux Upgrade =&lt;br /&gt;
* [[Desktop Agent Config backup operation failed using PUT]]&lt;br /&gt;
* [[Backup operation failed while backing up Config/Database/Recordings using PUT]]&lt;br /&gt;
* [[Pre-Upgrade Tool backup operation is not supported]]&lt;br /&gt;
* [[CVD communication failed during backup using PUT]]&lt;br /&gt;
* [[Could not find the Engine/DB master node during backup using PUT]]&lt;br /&gt;
* [[Database size is not supported during backup using PUT]]&lt;br /&gt;
* [[CCX Node is not reachable during backup using PUT]]&lt;br /&gt;
* [[Not all the recording files are backed up during backup using PUT]]&lt;br /&gt;
* [[Power failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[Failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[FTP/SFTP path not accessible during data restore]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in deployment type]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in license package]]&lt;br /&gt;
* [[Invalid backup TAR file used during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Not enough space to stage backup file on Unified CCX 8.0(1) during restore]]&lt;br /&gt;
* [[Component activation failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Activating the node as Publisher failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Database manager is not IN_SERVICE during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of configuration data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of DB data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Node 2 CTI ports removal failed during restore]]&lt;br /&gt;
* [[Recordings not getting played after upgrade]]&lt;br /&gt;
* [[Deletion of Node 2 JTAPI user from CUCM fails during restore]]&lt;br /&gt;
* [[The VRU connection port for ICM Subsystem fails to migrate during restore of IP-IVR system]]&lt;br /&gt;
* [[Problem occurred during backing up of restore logs]]&lt;br /&gt;
* [[PUT backup fails during Desktop Agent Config backup operation]]&lt;br /&gt;
&lt;br /&gt;
= Linux to Linux Upgrade =&lt;br /&gt;
* [http://zed.cisco.com/confluence/display/TRIAGE/Upgrade+FAQs Link to Platform Upgrade FAQ]&lt;br /&gt;
* [[No valid upgrade options found while running upgrade on node2]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Telephony Subsystem =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the subsystem in full service? If not refer to section for [[#Telephony Subsystem Out Of Service or Partial Service Issues]] below&lt;br /&gt;
* Also cross check JTAPI Client and Data sync. Refer to [[JTAPI Client and data resynchronization]]&lt;br /&gt;
&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on SS_TEL]]&lt;br /&gt;
* [[Turning on Unified CCX Telephony Client traces]]&lt;br /&gt;
* [[Turning on UCM CCM and CTI SDI and SDL traces]]&lt;br /&gt;
&lt;br /&gt;
=== Telephony Subsystem Out Of Service or Partial Service Issues ===&lt;br /&gt;
* [[Trigger partition change causes JTAPI subsystem to go to Partial Service]]&lt;br /&gt;
* [[Telephony Subsystem in Partial Service - calculateGroupReadiness indicates groups NOT READY]]&lt;br /&gt;
* [[Standard CTI Enabled role for JTAPI user]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - Unable to create provider]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - DB_ACCESS_ERROR]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service/Partial Service - Unable to Register CTI Port/Route Point]]&lt;br /&gt;
* [[Trigger Configuration Error]]&lt;br /&gt;
* [[Missing AddrInService events]]&lt;br /&gt;
* [[UCM Telephony SS in partial service after fall back to Node1]]&lt;br /&gt;
* [[UCM Telephony SS in partial service on a node]]&lt;br /&gt;
* [[JTAPI Client and data resynchronization]]&lt;br /&gt;
* [[JTAPI provider goes out of service]]&lt;br /&gt;
* [[Issues in JTAPI Port Recovery]]&lt;br /&gt;
&lt;br /&gt;
=== Callflow guides ===&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - IVR Call Flow]]&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - ICD Call Flow]]&lt;br /&gt;
&lt;br /&gt;
=== Identifying Issues in Call Flow ===&lt;br /&gt;
* [[Possible Issues in an ICD call flow]] &lt;br /&gt;
* Call is rejected as soon as it is received by Unified CCX&lt;br /&gt;
** [[REMOTE_TIMEOUT - No idle channels]]&lt;br /&gt;
* Call is not offered on the CTI Port&lt;br /&gt;
** [[TRIGGER_FAIL]]&lt;br /&gt;
** [[TRIGGER_MAX_SESSION]]&lt;br /&gt;
** [[Configuration issues]]&lt;br /&gt;
* Call is rejected after it is offered on the CTI Port&lt;br /&gt;
** [[SETUP_TIMEOUT]]&lt;br /&gt;
** [[SETUP_FAIL]]&lt;br /&gt;
* Issues invoking Application Task&lt;br /&gt;
** [[Null or Default Application Task]]&lt;br /&gt;
** [[ApplicationMaxSessionsException]]&lt;br /&gt;
** [[Invalid Script]]&lt;br /&gt;
* [[Media Setup Failure]]&lt;br /&gt;
* [[Codec Mismatch between Caller and CTI Port]]&lt;br /&gt;
* [[Call fails with CallCtlConnFailed event]]&lt;br /&gt;
* [[JTAPI Exception during redirect, accept, answer, transfer request]]&lt;br /&gt;
* [[Consult call fails with RESOURCE_BUSY]]&lt;br /&gt;
* Consult Call is not answered at agent extension&lt;br /&gt;
** [[RESOURCE_NOT_ACKNOWLEDGING]]&lt;br /&gt;
** [[RESOURCE_FORWARDING]]&lt;br /&gt;
* [[Could not meet post conditions of call.transfer]]&lt;br /&gt;
* [[Transfer does not receive CiscoTransferEndEv]]&lt;br /&gt;
* [[Multiple transfer failures]]&lt;br /&gt;
* [[Transfer success is false]]&lt;br /&gt;
&lt;br /&gt;
===Other tips===&lt;br /&gt;
* [[Call aborted due to WFMaxExecutedStepsExceededException]]&lt;br /&gt;
* [[Common Cause Codes and Meta Codes in JTAPI]]&lt;br /&gt;
* [[Troubleshooting JTAPI CCN Exceptions]]&lt;br /&gt;
* [[Codec support issues]]&lt;br /&gt;
* [[Commonly used regular expressions]]&lt;br /&gt;
* [[How to escalate an issue to IPCBU JTAPI team]]&lt;br /&gt;
* http://developer.cisco.com/web/jtapi/docs&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Media subsystem =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Media Traces]]&lt;br /&gt;
* [[Turning on IPVMS Traces]]&lt;br /&gt;
===General Media Issue===&lt;br /&gt;
* [[Media subsystem is stuck in initializing state]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express = &lt;br /&gt;
* [[Enabling CME Tracing]]&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
* [[Unified CCX stops working after Unified CME is rebuilt after crash]]&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
* [[Creation of Outbound trigger DN on UCCX fails]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IPIVR/ICM =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the ICM subsystem in full service in the IVR box? If not refer to section for [[#ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG]] below.&lt;br /&gt;
&lt;br /&gt;
* Verify whether the license uploaded on the system is for IVR.&lt;br /&gt;
 &lt;br /&gt;
* [[ Logs to be enabled for IVR issues ]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*  After the above mentioned logs are enabled, search the MIVR logs for any Exceptions- &amp;quot;exception&amp;quot; or errors. The following exceptions seen in MIVR logs can be ignored as they are benign in nature:&lt;br /&gt;
&lt;br /&gt;
     435718: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-DISPATCH_FAILURE:A failure occured while dispatching an event: &lt;br /&gt;
     listener=com.cisco.wf.subsystems.ged125.ICMChannel$CallListenerAdapter@118cef5,Exception=&lt;br /&gt;
     java.lang.IllegalStateException: already cleared&lt;br /&gt;
     435719: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-EXCEPTION:java.lang.IllegalStateException: already cleared&lt;br /&gt;
&lt;br /&gt;
&amp;quot;ICM subsystem in IVR receives call control events such as call cleared, call transferred etc from ICM as well as JTAPI (call manager). Hence, in some cases, this results in race conditions where ICM susbsystem processes the event coming from JTAPI and immediately receives another event for the same call control operation from ICM.  In such cases, the second request fails because the event is already processed by IVR and hence we see DISPATCH_FAILURE exceptions in the logs, which are purely benign.&lt;br /&gt;
&lt;br /&gt;
In normal scenarios, ICM susbsystem(in IVR) notifies the ICM that the call is cleared as soon as it processes the event from JTAPI, in which case ICM does not send another call cleared request to IVR. However, in some cases it may so happen that ICM and JTAPI send this event almost at the same time due to which we see DISPATCH_FAILURE exceptions in the logs as explained above. These exceptions can be ignored as they do not result in any failures in the system.&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
Based on the exceptions, Isolate the issues into the following -&lt;br /&gt;
&lt;br /&gt;
=== JTAPI issues ===&lt;br /&gt;
&lt;br /&gt;
Many a times, calls fail in IVR/ICM  due to telephony/JTAPI issues. Refer to the [[#Cisco Unified Communications Manager Telephony Subsystem]] and check whether the calls are failing at JTAPI level due to which ICM subsystem is unable to process calls in IPIVR.&lt;br /&gt;
&lt;br /&gt;
=== ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[ ICM subsystem is in OUT OF SERVICE state from IVR side and also the VRU PIM stays in IDLE state rather than ACTIVE state in the ICM peripheral gateway. ]]&lt;br /&gt;
          &lt;br /&gt;
* [[ Calls to IVR are failing and ICM subsystem is OUT_OF_SERVICE. ]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Issues ===&lt;br /&gt;
 &lt;br /&gt;
* [[ Calls are failing in IVR and user hears busy tone for these calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[IVR sends wrong values to ICM for the call variables.]] &lt;br /&gt;
&lt;br /&gt;
* [[Call transfer fails if the agent transfers the call from one IVR to a different IVR.]]&lt;br /&gt;
&lt;br /&gt;
* [[Intermittent Translation Route to VRU failure.]]&lt;br /&gt;
&lt;br /&gt;
* [[ Call reserves an agent although caller hanged in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ IVR gets freezed when the calls are more than the actual ports and requires an engine restart for recovery. ]]&lt;br /&gt;
&lt;br /&gt;
=== Set up Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing in IVR intermittently – Some calls go through successfully and some fail intermittently and it may seem like the TCP connection is broken from the VRU PIM side at the time of the failed calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing with ApplicationMaxSessionsException because there are not enough sessions created for an ICM application in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ What versions of IP IVR are supported for UCCE 8.0? ]]&lt;br /&gt;
&lt;br /&gt;
=== Other Tips ===&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/CRA/Training/UCCX_8_0_IVR-ICM_Integration.pptx&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/ICM/Components/PG/PIMs/VRU/GED125.doc&lt;br /&gt;
&lt;br /&gt;
* [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
* Many services in Deactivated state. Refer to [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[Error in IE (Class doesn't support Automation) ]]&lt;br /&gt;
* [[User Authentication error during CUCM configuration ]]&lt;br /&gt;
* [[HTTP 403 or security protocols error ]]&lt;br /&gt;
* [[Add to cluster repeats in a loop ]]&lt;br /&gt;
* [[Object error during component activation ]]&lt;br /&gt;
* [[Components in deactivated state ]]&lt;br /&gt;
* [[UCCX Data containing &amp;quot;less than &amp;quot; or &amp;quot;greater than&amp;quot; characters fails to save ]]&lt;br /&gt;
* [[Component activation failed during cluster setup ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
== Replication ==&lt;br /&gt;
&lt;br /&gt;
*[[Reset and Repair - what is the difference]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
*[[Script porting issues]]&lt;br /&gt;
*[[W1 upgrade issues]]&lt;br /&gt;
*[[Editor hanging issues]]&lt;br /&gt;
*[[Issues with installing on windows vista and windows 7]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Application subsystem is in partial service]] &lt;br /&gt;
* [[Changes to applications do not register]] &lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]] &lt;br /&gt;
* [[An error message plays when calling a CTI route point]] &lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[ How to debug OutOfMemoryError ]]&lt;br /&gt;
* [[ How to analyze heap dumps ]]&lt;br /&gt;
* [[ How to debug the root cause for high CPU usage ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX ICD =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Required Tracing ===&lt;br /&gt;
* [[Log_Levels_for_issues_related_to_Routing_and_Queuing]]&lt;br /&gt;
=== RmCm is OOS OR in Partial Service ===&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem stuck in INITIALIZING state]]&lt;br /&gt;
&lt;br /&gt;
=== RmCm Configurations issues ===&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
&lt;br /&gt;
=== Agent Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[Unable to login Unified CCX Agent ]]&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state-Script queues and dequeueAll's the call to multiple CSQ's]]&lt;br /&gt;
* [[Agent stuck in Reserved state]]&lt;br /&gt;
* [[Agent stuck in Reserved state-&amp;quot;Not posting the ContactPresentedEvent&amp;quot; seen in logs]]&lt;br /&gt;
* [[Agent stuck in Reserved state-SessionTransferredMsg shows Initial and Final Contact Type:IAQ_CONSULT_CONTACT ]]&lt;br /&gt;
* [[Agent State transformations in Select Join and Join Across Line scenarios]]&lt;br /&gt;
&lt;br /&gt;
=== Call Issues ===&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Calls are sometimes not delivered accordingly to Skill Competence when Resource Selection Criteria is Most Skilled]]&lt;br /&gt;
* [[Same call is presented to two agents]]&lt;br /&gt;
* [[Agent and customer start hearing UCCX recordings played over their conversation]]&lt;br /&gt;
&lt;br /&gt;
=== Scripting Issue ===&lt;br /&gt;
* [[Call redirected from one RP to the other multiple times with Redirect Step]]&lt;br /&gt;
&lt;br /&gt;
=== Unsupported scenarios ===&lt;br /&gt;
&lt;br /&gt;
* [[IncompatibleSessionException seen in MIVR logs]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Guides ===&lt;br /&gt;
* [[Guide to read MIVR logs for a simple ICD call]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[RTR in SelectJoin, DirectTransfer, JoinAcrossLines, DirectTransferAcrossLines Scenarios]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Pre-Requisites]]&lt;br /&gt;
* [[Required Log levels]]&lt;br /&gt;
* [[Historical records not getting written to database]]&lt;br /&gt;
* [[Discrepancies of JAL Scenarios]]&lt;br /&gt;
* [[Differences among Various Cisco Unified CCX reports]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Automatic Speech Recognition Traces]]&lt;br /&gt;
===General ASR Issues===&lt;br /&gt;
* [[How To Bring MRCP ASR Provider To InService State]]&lt;br /&gt;
* [[Nuance 9.0 not working with Unified CCX]]&lt;br /&gt;
* [[How to integrate MRCP ASR-TTS with Unified CCX]]&lt;br /&gt;
* [[Assure ASR-TTS ports/resources are freed up after the application finishes]]&lt;br /&gt;
* [[UnsupportedGrammarException with Cisco Media i.e Default Dialog group]]&lt;br /&gt;
* [[Built in Grammar minlength and maxlength with Default or Cisco Media Group for DTMF inputs]]&lt;br /&gt;
* [[How to allow both DTMF and Speech Recognition together]]&lt;br /&gt;
* [[The Names are not recognized]]&lt;br /&gt;
* [[MRCP ASR Subsystem Status is out of service]]&lt;br /&gt;
* [[MRCP ASR Providers, MRCP Servers, or Groups Changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
*&amp;lt;B&amp;gt;Trace Levels&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Log Level usage in Outbound Subsystem]]&lt;br /&gt;
**[[Log Levels required to troubleshoot outbound issues]]&lt;br /&gt;
*&amp;lt;B&amp;gt;General Outbound Issues&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound contacts not being dialed after failover]]&lt;br /&gt;
**[[Outbound calls fail with no callback number]]&lt;br /&gt;
**[[Outbound agent Stuck in Reserved state]]&lt;br /&gt;
**[[Outbound General Configuration data is changed]]&lt;br /&gt;
**[[Outbound Subsystem is Out Of Service]]&lt;br /&gt;
*&amp;lt;B&amp;gt;Issues Related To Outbound Call Flow&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound agents are ready for long time with available contacts]]&lt;br /&gt;
*&amp;lt;B&amp;gt;CAD/CDA related issues&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Outbound Buttons are disabled on CAD]]&lt;br /&gt;
** [[CDA doesn't show checkbox for Outbound Dialer Mode]]&lt;br /&gt;
&lt;br /&gt;
= Text-To-Speech =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Text To Speech traces]]&lt;br /&gt;
=== General TTS Issues ===&lt;br /&gt;
* [[Setting TTS Provider as Default TTS Provider]]&lt;br /&gt;
* [[How To Bring MRCP TTS Provider To InService State ]]&lt;br /&gt;
* [[Control prosody rate in PlayPrompt TTS block]]&lt;br /&gt;
* [[TTS Provider shows Last Status when Added Again]]&lt;br /&gt;
* [[MRCP TTS subsystem shows out of service status]]&lt;br /&gt;
* [[MRCP TTS Providers, MRCP Servers, locales, or genders changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
*&amp;lt;B&amp;gt; Real-Time Monitoring Tool (RTMT)&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Troubleshooting RTMT Installation Errors]]&lt;br /&gt;
** [[Not able to install different RTMT clients on the same box]]&lt;br /&gt;
** [[Unable to Log in to Cisco Unified Real-Time Monitoring Tool]]&lt;br /&gt;
** [[Unable to Collect data for the second node from RTMT when the Primary Node is down]]&lt;br /&gt;
** [[Troubleshooting DiskSpace and Partition related alerts]]&lt;br /&gt;
** [[Collecting logs for troubleshooting RTMT Alerts]]&lt;br /&gt;
** [[Configuring RTMT Trace Settings]]&lt;br /&gt;
*&amp;lt;B&amp;gt;SNMP&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Log Collection for SNMP Voice SubAgent issues]]&lt;br /&gt;
** [[Unable to receive Unified CCX SNMP Traps]]&lt;br /&gt;
** [[SNMP operations on the Voice MIB not fetching any output]]&lt;br /&gt;
** [[Troubleshooting Alarms/Alerts to be sent as SNMP Traps]]&lt;br /&gt;
*&amp;lt;B&amp;gt; Log Profile &amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Debugging issues]]&lt;br /&gt;
** [[Known issues]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability (Analysis Manager) =&lt;br /&gt;
* [[I don't see the Analysis Manager Drawer or Menu items]]&lt;br /&gt;
* [[RTMT does not come up or behaves strangely]]&lt;br /&gt;
* [[I cannot log into RTMT]]&lt;br /&gt;
* [[My ‘Test Connectivity’ for Unified CCX node is failing]]&lt;br /&gt;
* [[The Call Records Repository connectivity test is failing]]&lt;br /&gt;
* [[Where can I access RTMT and Analysis Manager logs]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX VXML traces]]&lt;br /&gt;
=== General VXML Issues ===&lt;br /&gt;
* [[How to use JavaScript greater than, less than and ampersand symbols in vxml var expr declaration]]&lt;br /&gt;
* [[Voice Browser Not able to fetch files with dynamic file extensions]]&lt;br /&gt;
* [[Not able to fetch grammar and prompt files through CRTP]]&lt;br /&gt;
* [[VXML tag not working properly with VoiceBrowser]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Cluster setup =&lt;br /&gt;
&lt;br /&gt;
* [[Component activation failed during cluster setup]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
&lt;br /&gt;
* [[RCA for Engine failover]]&lt;br /&gt;
* [[Engine and CAD failover taking long time]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[hear nothing while playing back desktop recorded sessions]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CLI =&lt;br /&gt;
* [[UCCX CLI log collection]]&lt;br /&gt;
* [[Analyzing UCCX CLI logs]]&lt;br /&gt;
* [[Cannot login to CLI]]&lt;br /&gt;
* [[Enabling root account from CLI]]&lt;br /&gt;
* [[Checking UCCX version using CLI]]&lt;br /&gt;
* [[Checking if the current node is a VOS publisher]]&lt;br /&gt;
* [[Checking configured UCCX license using CLI]]&lt;br /&gt;
* [[Checking &amp;amp; updating JTAPI Client using CLI]]&lt;br /&gt;
* [[Updating the UCM IP address in UCCX from CLI]]&lt;br /&gt;
* [[Checking trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Setting trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Running DB query from UCCX CLI]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Security =&lt;br /&gt;
* [[CSA]]&lt;br /&gt;
* [[IPTables (firewall)]]&lt;br /&gt;
* [[Engine]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX IP Address/Hostname change =&lt;br /&gt;
* [[IP and Hostname change Log Collection]]&lt;br /&gt;
* [[Analyzing CCX IP and Hostname change log ]]&lt;br /&gt;
* [[Identify Cluster Issues after IP and Hostname change]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Wallboard Configuration =&lt;br /&gt;
* [[Troubleshooting and Log Collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CET =&lt;br /&gt;
* [[DB config objects not showing in CET]]&lt;br /&gt;
* [[CET tool exits with CetTool.bat not found error]]&lt;br /&gt;
* [[Enabling remote user account through CLI]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Licensing =&lt;br /&gt;
* [[Invalid License MAC address error at time of License Upload]]&lt;br /&gt;
* [[Need License MAC before system install to reduce time delay]]&lt;br /&gt;
* [[New Licenses required (License Rehosting)]]&lt;br /&gt;
* [[Using Demo licenses]]&lt;br /&gt;
* [[Warning: System running on grace period message on admin login]]&lt;br /&gt;
* [[Error: Grace period expired on admin login]]&lt;br /&gt;
* [[Warning: Some features are going to expire in x days message on admin login]]&lt;br /&gt;
* [[Error: License expired error on admin login]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0</id>
		<title>Troubleshooting Tips for Unified CCX 8.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0"/>
				<updated>2010-05-26T10:14:30Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* General ASR Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[Hardware not supported]]&lt;br /&gt;
* [[Unable to access NTP server]]&lt;br /&gt;
* [[Hardware not supported Error seen on 7835H2 and/or 7845H2]]&lt;br /&gt;
&lt;br /&gt;
= Backup and Restore =&lt;br /&gt;
&lt;br /&gt;
= Windows to Linux Upgrade =&lt;br /&gt;
* [[Desktop Agent Config backup operation failed using PUT]]&lt;br /&gt;
* [[Backup operation failed while backing up Config/Database/Recordings using PUT]]&lt;br /&gt;
* [[Pre-Upgrade Tool backup operation is not supported]]&lt;br /&gt;
* [[CVD communication failed during backup using PUT]]&lt;br /&gt;
* [[Could not find the Engine/DB master node during backup using PUT]]&lt;br /&gt;
* [[Database size is not supported during backup using PUT]]&lt;br /&gt;
* [[CCX Node is not reachable during backup using PUT]]&lt;br /&gt;
* [[Not all the recording files are backed up during backup using PUT]]&lt;br /&gt;
* [[Power failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[Failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[FTP/SFTP path not accessible during data restore]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in deployment type]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in license package]]&lt;br /&gt;
* [[Invalid backup TAR file used during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Not enough space to stage backup file on Unified CCX 8.0(1) during restore]]&lt;br /&gt;
* [[Component activation failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Activating the node as Publisher failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Database manager is not IN_SERVICE during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of configuration data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of DB data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Node 2 CTI ports removal failed during restore]]&lt;br /&gt;
* [[Recordings not getting played after upgrade]]&lt;br /&gt;
* [[Deletion of Node 2 JTAPI user from CUCM fails during restore]]&lt;br /&gt;
* [[The VRU connection port for ICM Subsystem fails to migrate during restore of IP-IVR system]]&lt;br /&gt;
* [[Problem occurred during backing up of restore logs]]&lt;br /&gt;
* [[PUT backup fails during Desktop Agent Config backup operation]]&lt;br /&gt;
&lt;br /&gt;
= Linux to Linux Upgrade =&lt;br /&gt;
* [http://zed.cisco.com/confluence/display/TRIAGE/Upgrade+FAQs Link to Platform Upgrade FAQ]&lt;br /&gt;
* [[No valid upgrade options found while running upgrade on node2]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Telephony Subsystem =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the subsystem in full service? If not refer to section for [[#Telephony Subsystem Out Of Service or Partial Service Issues]] below&lt;br /&gt;
* Also cross check JTAPI Client and Data sync. Refer to [[JTAPI Client and data resynchronization]]&lt;br /&gt;
&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on SS_TEL]]&lt;br /&gt;
* [[Turning on Unified CCX Telephony Client traces]]&lt;br /&gt;
* [[Turning on UCM CCM and CTI SDI and SDL traces]]&lt;br /&gt;
&lt;br /&gt;
=== Telephony Subsystem Out Of Service or Partial Service Issues ===&lt;br /&gt;
* [[Trigger partition change causes JTAPI subsystem to go to Partial Service]]&lt;br /&gt;
* [[Telephony Subsystem in Partial Service - calculateGroupReadiness indicates groups NOT READY]]&lt;br /&gt;
* [[Standard CTI Enabled role for JTAPI user]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - Unable to create provider]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - DB_ACCESS_ERROR]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service/Partial Service - Unable to Register CTI Port/Route Point]]&lt;br /&gt;
* [[Trigger Configuration Error]]&lt;br /&gt;
* [[Missing AddrInService events]]&lt;br /&gt;
* [[UCM Telephony SS in partial service after fall back to Node1]]&lt;br /&gt;
* [[UCM Telephony SS in partial service on a node]]&lt;br /&gt;
* [[JTAPI Client and data resynchronization]]&lt;br /&gt;
* [[JTAPI provider goes out of service]]&lt;br /&gt;
* [[Issues in JTAPI Port Recovery]]&lt;br /&gt;
&lt;br /&gt;
=== Callflow guides ===&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - IVR Call Flow]]&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - ICD Call Flow]]&lt;br /&gt;
&lt;br /&gt;
=== Identifying Issues in Call Flow ===&lt;br /&gt;
* [[Possible Issues in an ICD call flow]] &lt;br /&gt;
* Call is rejected as soon as it is received by Unified CCX&lt;br /&gt;
** [[REMOTE_TIMEOUT - No idle channels]]&lt;br /&gt;
* Call is not offered on the CTI Port&lt;br /&gt;
** [[TRIGGER_FAIL]]&lt;br /&gt;
** [[TRIGGER_MAX_SESSION]]&lt;br /&gt;
** [[Configuration issues]]&lt;br /&gt;
* Call is rejected after it is offered on the CTI Port&lt;br /&gt;
** [[SETUP_TIMEOUT]]&lt;br /&gt;
** [[SETUP_FAIL]]&lt;br /&gt;
* Issues invoking Application Task&lt;br /&gt;
** [[Null or Default Application Task]]&lt;br /&gt;
** [[ApplicationMaxSessionsException]]&lt;br /&gt;
** [[Invalid Script]]&lt;br /&gt;
* [[Media Setup Failure]]&lt;br /&gt;
* [[Codec Mismatch between Caller and CTI Port]]&lt;br /&gt;
* [[Call fails with CallCtlConnFailed event]]&lt;br /&gt;
* [[JTAPI Exception during redirect, accept, answer, transfer request]]&lt;br /&gt;
* [[Consult call fails with RESOURCE_BUSY]]&lt;br /&gt;
* Consult Call is not answered at agent extension&lt;br /&gt;
** [[RESOURCE_NOT_ACKNOWLEDGING]]&lt;br /&gt;
** [[RESOURCE_FORWARDING]]&lt;br /&gt;
* [[Could not meet post conditions of call.transfer]]&lt;br /&gt;
* [[Transfer does not receive CiscoTransferEndEv]]&lt;br /&gt;
* [[Multiple transfer failures]]&lt;br /&gt;
* [[Transfer success is false]]&lt;br /&gt;
&lt;br /&gt;
===Other tips===&lt;br /&gt;
* [[Call aborted due to WFMaxExecutedStepsExceededException]]&lt;br /&gt;
* [[Common Cause Codes and Meta Codes in JTAPI]]&lt;br /&gt;
* [[Troubleshooting JTAPI CCN Exceptions]]&lt;br /&gt;
* [[Codec support issues]]&lt;br /&gt;
* [[Commonly used regular expressions]]&lt;br /&gt;
* [[How to escalate an issue to IPCBU JTAPI team]]&lt;br /&gt;
* http://developer.cisco.com/web/jtapi/docs&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Media subsystem =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Media Traces]]&lt;br /&gt;
* [[Turning on IPVMS Traces]]&lt;br /&gt;
===General Media Issue===&lt;br /&gt;
* [[Media subsystem is stuck in initializing state]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express = &lt;br /&gt;
* [[Enabling CME Tracing]]&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
* [[Unified CCX stops working after Unified CME is rebuilt after crash]]&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
* [[Creation of Outbound trigger DN on UCCX fails]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IPIVR/ICM =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the ICM subsystem in full service in the IVR box? If not refer to section for [[#ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG]] below.&lt;br /&gt;
&lt;br /&gt;
* Verify whether the license uploaded on the system is for IVR.&lt;br /&gt;
 &lt;br /&gt;
* [[ Logs to be enabled for IVR issues ]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*  After the above mentioned logs are enabled, search the MIVR logs for any Exceptions- &amp;quot;exception&amp;quot; or errors. The following exceptions seen in MIVR logs can be ignored as they are benign in nature:&lt;br /&gt;
&lt;br /&gt;
     435718: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-DISPATCH_FAILURE:A failure occured while dispatching an event: &lt;br /&gt;
     listener=com.cisco.wf.subsystems.ged125.ICMChannel$CallListenerAdapter@118cef5,Exception=&lt;br /&gt;
     java.lang.IllegalStateException: already cleared&lt;br /&gt;
     435719: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-EXCEPTION:java.lang.IllegalStateException: already cleared&lt;br /&gt;
&lt;br /&gt;
&amp;quot;ICM subsystem in IVR receives call control events such as call cleared, call transferred etc from ICM as well as JTAPI (call manager). Hence, in some cases, this results in race conditions where ICM susbsystem processes the event coming from JTAPI and immediately receives another event for the same call control operation from ICM.  In such cases, the second request fails because the event is already processed by IVR and hence we see DISPATCH_FAILURE exceptions in the logs, which are purely benign.&lt;br /&gt;
&lt;br /&gt;
In normal scenarios, ICM susbsystem(in IVR) notifies the ICM that the call is cleared as soon as it processes the event from JTAPI, in which case ICM does not send another call cleared request to IVR. However, in some cases it may so happen that ICM and JTAPI send this event almost at the same time due to which we see DISPATCH_FAILURE exceptions in the logs as explained above. These exceptions can be ignored as they do not result in any failures in the system.&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
Based on the exceptions, Isolate the issues into the following -&lt;br /&gt;
&lt;br /&gt;
=== JTAPI issues ===&lt;br /&gt;
&lt;br /&gt;
Many a times, calls fail in IVR/ICM  due to telephony/JTAPI issues. Refer to the [[#Cisco Unified Communications Manager Telephony Subsystem]] and check whether the calls are failing at JTAPI level due to which ICM subsystem is unable to process calls in IPIVR.&lt;br /&gt;
&lt;br /&gt;
=== ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[ ICM subsystem is in OUT OF SERVICE state from IVR side and also the VRU PIM stays in IDLE state rather than ACTIVE state in the ICM peripheral gateway. ]]&lt;br /&gt;
          &lt;br /&gt;
* [[ Calls to IVR are failing and ICM subsystem is OUT_OF_SERVICE. ]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Issues ===&lt;br /&gt;
 &lt;br /&gt;
* [[ Calls are failing in IVR and user hears busy tone for these calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[IVR sends wrong values to ICM for the call variables.]] &lt;br /&gt;
&lt;br /&gt;
* [[Call transfer fails if the agent transfers the call from one IVR to a different IVR.]]&lt;br /&gt;
&lt;br /&gt;
* [[Intermittent Translation Route to VRU failure.]]&lt;br /&gt;
&lt;br /&gt;
* [[ Call reserves an agent although caller hanged in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ IVR gets freezed when the calls are more than the actual ports and requires an engine restart for recovery. ]]&lt;br /&gt;
&lt;br /&gt;
=== Set up Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing in IVR intermittently – Some calls go through successfully and some fail intermittently and it may seem like the TCP connection is broken from the VRU PIM side at the time of the failed calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing with ApplicationMaxSessionsException because there are not enough sessions created for an ICM application in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ What versions of IP IVR are supported for UCCE 8.0? ]]&lt;br /&gt;
&lt;br /&gt;
=== Other Tips ===&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/CRA/Training/UCCX_8_0_IVR-ICM_Integration.pptx&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/ICM/Components/PG/PIMs/VRU/GED125.doc&lt;br /&gt;
&lt;br /&gt;
* [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
* Many services in Deactivated state. Refer to [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[Error in IE (Class doesn't support Automation) ]]&lt;br /&gt;
* [[User Authentication error during CUCM configuration ]]&lt;br /&gt;
* [[HTTP 403 or security protocols error ]]&lt;br /&gt;
* [[Add to cluster repeats in a loop ]]&lt;br /&gt;
* [[Object error during component activation ]]&lt;br /&gt;
* [[Components in deactivated state ]]&lt;br /&gt;
* [[UCCX Data containing &amp;quot;less than &amp;quot; or &amp;quot;greater than&amp;quot; characters fails to save ]]&lt;br /&gt;
* [[Component activation failed during cluster setup ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
== Replication ==&lt;br /&gt;
&lt;br /&gt;
*[[Reset and Repair - what is the difference]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
*[[Script porting issues]]&lt;br /&gt;
*[[W1 upgrade issues]]&lt;br /&gt;
*[[Editor hanging issues]]&lt;br /&gt;
*[[Issues with installing on windows vista and windows 7]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Application subsystem is in partial service]] &lt;br /&gt;
* [[Changes to applications do not register]] &lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]] &lt;br /&gt;
* [[An error message plays when calling a CTI route point]] &lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[ How to debug OutOfMemoryError ]]&lt;br /&gt;
* [[ How to analyze heap dumps ]]&lt;br /&gt;
* [[ How to debug the root cause for high CPU usage ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX ICD =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Required Tracing ===&lt;br /&gt;
* [[Log_Levels_for_issues_related_to_Routing_and_Queuing]]&lt;br /&gt;
=== RmCm is OOS OR in Partial Service ===&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem stuck in INITIALIZING state]]&lt;br /&gt;
&lt;br /&gt;
=== RmCm Configurations issues ===&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
&lt;br /&gt;
=== Agent Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[Unable to login Unified CCX Agent ]]&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state-Script queues and dequeueAll's the call to multiple CSQ's]]&lt;br /&gt;
* [[Agent stuck in Reserved state]]&lt;br /&gt;
* [[Agent stuck in Reserved state-&amp;quot;Not posting the ContactPresentedEvent&amp;quot; seen in logs]]&lt;br /&gt;
* [[Agent stuck in Reserved state-SessionTransferredMsg shows Initial and Final Contact Type:IAQ_CONSULT_CONTACT ]]&lt;br /&gt;
* [[Agent State transformations in Select Join and Join Across Line scenarios]]&lt;br /&gt;
&lt;br /&gt;
=== Call Issues ===&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Calls are sometimes not delivered accordingly to Skill Competence when Resource Selection Criteria is Most Skilled]]&lt;br /&gt;
* [[Same call is presented to two agents]]&lt;br /&gt;
* [[Agent and customer start hearing UCCX recordings played over their conversation]]&lt;br /&gt;
&lt;br /&gt;
=== Scripting Issue ===&lt;br /&gt;
* [[Call redirected from one RP to the other multiple times with Redirect Step]]&lt;br /&gt;
&lt;br /&gt;
=== Unsupported scenarios ===&lt;br /&gt;
&lt;br /&gt;
* [[IncompatibleSessionException seen in MIVR logs]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Guides ===&lt;br /&gt;
* [[Guide to read MIVR logs for a simple ICD call]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[RTR in SelectJoin, DirectTransfer, JoinAcrossLines, DirectTransferAcrossLines Scenarios]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Pre-Requisites]]&lt;br /&gt;
* [[Required Log levels]]&lt;br /&gt;
* [[Historical records not getting written to database]]&lt;br /&gt;
* [[Discrepancies of JAL Scenarios]]&lt;br /&gt;
* [[Differences among Various Cisco Unified CCX reports]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Automatic Speech Recognition Traces]]&lt;br /&gt;
===General ASR Issues===&lt;br /&gt;
* [[How To Bring MRCP ASR Provider To InService State]]&lt;br /&gt;
* [[Nuance 9.0 not working with Unified CCX]]&lt;br /&gt;
* [[How to integrate MRCP ASR-TTS with Unified CCX]]&lt;br /&gt;
* [[Assure ASR-TTS ports/resources are freed up after the application finishes]]&lt;br /&gt;
* [[UnsupportedGrammarException with Cisco Media i.e Default Dialog group]]&lt;br /&gt;
* [[Built in Grammar minlength and maxlength with Default or Cisco Media Group for DTMF inputs]]&lt;br /&gt;
* [[How to allow both DTMF and Speech Recognition together]]&lt;br /&gt;
* [[The Names are not recognized]]&lt;br /&gt;
* [[MRCP ASR Subsystem Status is out of service]]&lt;br /&gt;
* [[MRCP ASR Providers, MRCP Servers, or Groups Changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
*&amp;lt;B&amp;gt;Trace Levels&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Log Level usage in Outbound Subsystem]]&lt;br /&gt;
**[[Log Levels required to troubleshoot outbound issues]]&lt;br /&gt;
*&amp;lt;B&amp;gt;General Outbound Issues&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound contacts not being dialed after failover]]&lt;br /&gt;
**[[Outbound calls fail with no callback number]]&lt;br /&gt;
**[[Outbound agent Stuck in Reserved state]]&lt;br /&gt;
**[[Outbound General Configuration data is changed]]&lt;br /&gt;
**[[Outbound Subsystem is Out Of Service]]&lt;br /&gt;
*&amp;lt;B&amp;gt;Issues Related To Outbound Call Flow&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound agents are ready for long time with available contacts]]&lt;br /&gt;
*&amp;lt;B&amp;gt;CAD/CDA related issues&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Outbound Buttons are disabled on CAD]]&lt;br /&gt;
** [[CDA doesn't show checkbox for Outbound Dialer Mode]]&lt;br /&gt;
&lt;br /&gt;
= Text-To-Speech =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Text To Speech traces]]&lt;br /&gt;
=== General TTS Issues ===&lt;br /&gt;
* [[Setting TTS Provider as Default TTS Provider]]&lt;br /&gt;
* [[Control prosody rate in PlayPrompt TTS block]]&lt;br /&gt;
* [[TTS Provider shows Last Status when Added Again]]&lt;br /&gt;
* [[MRCP TTS subsystem shows out of service status]]&lt;br /&gt;
* [[MRCP TTS Providers, MRCP Servers, locales, or genders changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
*&amp;lt;B&amp;gt; Real-Time Monitoring Tool (RTMT)&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Troubleshooting RTMT Installation Errors]]&lt;br /&gt;
** [[Not able to install different RTMT clients on the same box]]&lt;br /&gt;
** [[Unable to Log in to Cisco Unified Real-Time Monitoring Tool]]&lt;br /&gt;
** [[Unable to Collect data for the second node from RTMT when the Primary Node is down]]&lt;br /&gt;
** [[Troubleshooting DiskSpace and Partition related alerts]]&lt;br /&gt;
** [[Collecting logs for troubleshooting RTMT Alerts]]&lt;br /&gt;
** [[Configuring RTMT Trace Settings]]&lt;br /&gt;
*&amp;lt;B&amp;gt;SNMP&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Log Collection for SNMP Voice SubAgent issues]]&lt;br /&gt;
** [[Unable to receive Unified CCX SNMP Traps]]&lt;br /&gt;
** [[SNMP operations on the Voice MIB not fetching any output]]&lt;br /&gt;
** [[Troubleshooting Alarms/Alerts to be sent as SNMP Traps]]&lt;br /&gt;
*&amp;lt;B&amp;gt; Log Profile &amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Debugging issues]]&lt;br /&gt;
** [[Known issues]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability (Analysis Manager) =&lt;br /&gt;
* [[I don't see the Analysis Manager Drawer or Menu items]]&lt;br /&gt;
* [[RTMT does not come up or behaves strangely]]&lt;br /&gt;
* [[I cannot log into RTMT]]&lt;br /&gt;
* [[My ‘Test Connectivity’ for Unified CCX node is failing]]&lt;br /&gt;
* [[The Call Records Repository connectivity test is failing]]&lt;br /&gt;
* [[Where can I access RTMT and Analysis Manager logs]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX VXML traces]]&lt;br /&gt;
=== General VXML Issues ===&lt;br /&gt;
* [[How to use JavaScript greater than, less than and ampersand symbols in vxml var expr declaration]]&lt;br /&gt;
* [[Voice Browser Not able to fetch files with dynamic file extensions]]&lt;br /&gt;
* [[Not able to fetch grammar and prompt files through CRTP]]&lt;br /&gt;
* [[VXML tag not working properly with VoiceBrowser]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Cluster setup =&lt;br /&gt;
&lt;br /&gt;
* [[Component activation failed during cluster setup]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
&lt;br /&gt;
* [[RCA for Engine failover]]&lt;br /&gt;
* [[Engine and CAD failover taking long time]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[hear nothing while playing back desktop recorded sessions]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CLI =&lt;br /&gt;
* [[UCCX CLI log collection]]&lt;br /&gt;
* [[Analyzing UCCX CLI logs]]&lt;br /&gt;
* [[Cannot login to CLI]]&lt;br /&gt;
* [[Enabling root account from CLI]]&lt;br /&gt;
* [[Checking UCCX version using CLI]]&lt;br /&gt;
* [[Checking if the current node is a VOS publisher]]&lt;br /&gt;
* [[Checking configured UCCX license using CLI]]&lt;br /&gt;
* [[Checking &amp;amp; updating JTAPI Client using CLI]]&lt;br /&gt;
* [[Updating the UCM IP address in UCCX from CLI]]&lt;br /&gt;
* [[Checking trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Setting trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Running DB query from UCCX CLI]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Security =&lt;br /&gt;
* [[CSA]]&lt;br /&gt;
* [[IPTables (firewall)]]&lt;br /&gt;
* [[Engine]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX IP Address/Hostname change =&lt;br /&gt;
* [[IP and Hostname change Log Collection]]&lt;br /&gt;
* [[Analyzing CCX IP and Hostname change log ]]&lt;br /&gt;
* [[Identify Cluster Issues after IP and Hostname change]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Wallboard Configuration =&lt;br /&gt;
* [[Troubleshooting and Log Collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CET =&lt;br /&gt;
* [[DB config objects not showing in CET]]&lt;br /&gt;
* [[CET tool exits with CetTool.bat not found error]]&lt;br /&gt;
* [[Enabling remote user account through CLI]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Licensing =&lt;br /&gt;
* [[Invalid License MAC address error at time of License Upload]]&lt;br /&gt;
* [[Need License MAC before system install to reduce time delay]]&lt;br /&gt;
* [[New Licenses required (License Rehosting)]]&lt;br /&gt;
* [[Using Demo licenses]]&lt;br /&gt;
* [[Warning: System running on grace period message on admin login]]&lt;br /&gt;
* [[Error: Grace period expired on admin login]]&lt;br /&gt;
* [[Warning: Some features are going to expire in x days message on admin login]]&lt;br /&gt;
* [[Error: License expired error on admin login]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/How_To_Bring_MRCP_TTS_Provider_To_InService_State</id>
		<title>How To Bring MRCP TTS Provider To InService State</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/How_To_Bring_MRCP_TTS_Provider_To_InService_State"/>
				<updated>2010-05-26T10:09:52Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: == How To Bring MRCP TTS Provider To InService State == &amp;lt;BR&amp;gt; &amp;lt;BR&amp;gt; {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | MRCP TTS Provider Not Configured. |- ! '''Error Message''' | MRCP TTS Provider ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== How To Bring MRCP TTS Provider To InService State ==&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| MRCP TTS Provider Not Configured.&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| MRCP TTS Provider in Unknown or OOS state.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| MRCP TTS Server HostName/IPAddress and Port are not correct.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| Configure MRCP TTS Provider-Server-Default Gender and once done visit the MRCP TTS provider page and call 'refresh' icon of configured MRCP TTS Provider. &lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 8.0(1) &lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0</id>
		<title>Troubleshooting Tips for Unified CCX 8.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0"/>
				<updated>2010-05-26T09:29:47Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* General ASR Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[Hardware not supported]]&lt;br /&gt;
* [[Unable to access NTP server]]&lt;br /&gt;
* [[Hardware not supported Error seen on 7835H2 and/or 7845H2]]&lt;br /&gt;
&lt;br /&gt;
= Backup and Restore =&lt;br /&gt;
&lt;br /&gt;
= Windows to Linux Upgrade =&lt;br /&gt;
* [[Desktop Agent Config backup operation failed using PUT]]&lt;br /&gt;
* [[Backup operation failed while backing up Config/Database/Recordings using PUT]]&lt;br /&gt;
* [[Pre-Upgrade Tool backup operation is not supported]]&lt;br /&gt;
* [[CVD communication failed during backup using PUT]]&lt;br /&gt;
* [[Could not find the Engine/DB master node during backup using PUT]]&lt;br /&gt;
* [[Database size is not supported during backup using PUT]]&lt;br /&gt;
* [[CCX Node is not reachable during backup using PUT]]&lt;br /&gt;
* [[Not all the recording files are backed up during backup using PUT]]&lt;br /&gt;
* [[Power failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[Failure during restore operation of Windows to Linux upgrade]]&lt;br /&gt;
* [[FTP/SFTP path not accessible during data restore]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in deployment type]]&lt;br /&gt;
* [[Restore operation fails due to mismatch in license package]]&lt;br /&gt;
* [[Invalid backup TAR file used during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Not enough space to stage backup file on Unified CCX 8.0(1) during restore]]&lt;br /&gt;
* [[Component activation failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Activating the node as Publisher failed during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Database manager is not IN_SERVICE during restore on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of configuration data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Restore operation fails during migration of DB data on Unified CCX 8.0(1)]]&lt;br /&gt;
* [[Node 2 CTI ports removal failed during restore]]&lt;br /&gt;
* [[Recordings not getting played after upgrade]]&lt;br /&gt;
* [[Deletion of Node 2 JTAPI user from CUCM fails during restore]]&lt;br /&gt;
* [[The VRU connection port for ICM Subsystem fails to migrate during restore of IP-IVR system]]&lt;br /&gt;
* [[Problem occurred during backing up of restore logs]]&lt;br /&gt;
* [[PUT backup fails during Desktop Agent Config backup operation]]&lt;br /&gt;
&lt;br /&gt;
= Linux to Linux Upgrade =&lt;br /&gt;
* [http://zed.cisco.com/confluence/display/TRIAGE/Upgrade+FAQs Link to Platform Upgrade FAQ]&lt;br /&gt;
* [[No valid upgrade options found while running upgrade on node2]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Telephony Subsystem =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the subsystem in full service? If not refer to section for [[#Telephony Subsystem Out Of Service or Partial Service Issues]] below&lt;br /&gt;
* Also cross check JTAPI Client and Data sync. Refer to [[JTAPI Client and data resynchronization]]&lt;br /&gt;
&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on SS_TEL]]&lt;br /&gt;
* [[Turning on Unified CCX Telephony Client traces]]&lt;br /&gt;
* [[Turning on UCM CCM and CTI SDI and SDL traces]]&lt;br /&gt;
&lt;br /&gt;
=== Telephony Subsystem Out Of Service or Partial Service Issues ===&lt;br /&gt;
* [[Trigger partition change causes JTAPI subsystem to go to Partial Service]]&lt;br /&gt;
* [[Telephony Subsystem in Partial Service - calculateGroupReadiness indicates groups NOT READY]]&lt;br /&gt;
* [[Standard CTI Enabled role for JTAPI user]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - Unable to create provider]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service - DB_ACCESS_ERROR]]&lt;br /&gt;
* [[UCM Telephony SS Out Of Service/Partial Service - Unable to Register CTI Port/Route Point]]&lt;br /&gt;
* [[Trigger Configuration Error]]&lt;br /&gt;
* [[Missing AddrInService events]]&lt;br /&gt;
* [[UCM Telephony SS in partial service after fall back to Node1]]&lt;br /&gt;
* [[UCM Telephony SS in partial service on a node]]&lt;br /&gt;
* [[JTAPI Client and data resynchronization]]&lt;br /&gt;
* [[JTAPI provider goes out of service]]&lt;br /&gt;
* [[Issues in JTAPI Port Recovery]]&lt;br /&gt;
&lt;br /&gt;
=== Callflow guides ===&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - IVR Call Flow]]&lt;br /&gt;
* [[Guide to reading MIVR logs for Telephony Issues - ICD Call Flow]]&lt;br /&gt;
&lt;br /&gt;
=== Identifying Issues in Call Flow ===&lt;br /&gt;
* [[Possible Issues in an ICD call flow]] &lt;br /&gt;
* Call is rejected as soon as it is received by Unified CCX&lt;br /&gt;
** [[REMOTE_TIMEOUT - No idle channels]]&lt;br /&gt;
* Call is not offered on the CTI Port&lt;br /&gt;
** [[TRIGGER_FAIL]]&lt;br /&gt;
** [[TRIGGER_MAX_SESSION]]&lt;br /&gt;
** [[Configuration issues]]&lt;br /&gt;
* Call is rejected after it is offered on the CTI Port&lt;br /&gt;
** [[SETUP_TIMEOUT]]&lt;br /&gt;
** [[SETUP_FAIL]]&lt;br /&gt;
* Issues invoking Application Task&lt;br /&gt;
** [[Null or Default Application Task]]&lt;br /&gt;
** [[ApplicationMaxSessionsException]]&lt;br /&gt;
** [[Invalid Script]]&lt;br /&gt;
* [[Media Setup Failure]]&lt;br /&gt;
* [[Codec Mismatch between Caller and CTI Port]]&lt;br /&gt;
* [[Call fails with CallCtlConnFailed event]]&lt;br /&gt;
* [[JTAPI Exception during redirect, accept, answer, transfer request]]&lt;br /&gt;
* [[Consult call fails with RESOURCE_BUSY]]&lt;br /&gt;
* Consult Call is not answered at agent extension&lt;br /&gt;
** [[RESOURCE_NOT_ACKNOWLEDGING]]&lt;br /&gt;
** [[RESOURCE_FORWARDING]]&lt;br /&gt;
* [[Could not meet post conditions of call.transfer]]&lt;br /&gt;
* [[Transfer does not receive CiscoTransferEndEv]]&lt;br /&gt;
* [[Multiple transfer failures]]&lt;br /&gt;
* [[Transfer success is false]]&lt;br /&gt;
&lt;br /&gt;
===Other tips===&lt;br /&gt;
* [[Call aborted due to WFMaxExecutedStepsExceededException]]&lt;br /&gt;
* [[Common Cause Codes and Meta Codes in JTAPI]]&lt;br /&gt;
* [[Troubleshooting JTAPI CCN Exceptions]]&lt;br /&gt;
* [[Codec support issues]]&lt;br /&gt;
* [[Commonly used regular expressions]]&lt;br /&gt;
* [[How to escalate an issue to IPCBU JTAPI team]]&lt;br /&gt;
* http://developer.cisco.com/web/jtapi/docs&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Media subsystem =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Media Traces]]&lt;br /&gt;
* [[Turning on IPVMS Traces]]&lt;br /&gt;
===General Media Issue===&lt;br /&gt;
* [[Media subsystem is stuck in initializing state]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express = &lt;br /&gt;
* [[Enabling CME Tracing]]&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
* [[Unified CCX stops working after Unified CME is rebuilt after crash]]&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
* [[Creation of Outbound trigger DN on UCCX fails]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IPIVR/ICM =&lt;br /&gt;
&lt;br /&gt;
=== First few things to check ===&lt;br /&gt;
* Is the ICM subsystem in full service in the IVR box? If not refer to section for [[#ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG]] below.&lt;br /&gt;
&lt;br /&gt;
* Verify whether the license uploaded on the system is for IVR.&lt;br /&gt;
 &lt;br /&gt;
* [[ Logs to be enabled for IVR issues ]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*  After the above mentioned logs are enabled, search the MIVR logs for any Exceptions- &amp;quot;exception&amp;quot; or errors. The following exceptions seen in MIVR logs can be ignored as they are benign in nature:&lt;br /&gt;
&lt;br /&gt;
     435718: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-DISPATCH_FAILURE:A failure occured while dispatching an event: &lt;br /&gt;
     listener=com.cisco.wf.subsystems.ged125.ICMChannel$CallListenerAdapter@118cef5,Exception=&lt;br /&gt;
     java.lang.IllegalStateException: already cleared&lt;br /&gt;
     435719: Mar 10 08:14:17.430 GMT %MIVR-LIB_EVENT-3-EXCEPTION:java.lang.IllegalStateException: already cleared&lt;br /&gt;
&lt;br /&gt;
&amp;quot;ICM subsystem in IVR receives call control events such as call cleared, call transferred etc from ICM as well as JTAPI (call manager). Hence, in some cases, this results in race conditions where ICM susbsystem processes the event coming from JTAPI and immediately receives another event for the same call control operation from ICM.  In such cases, the second request fails because the event is already processed by IVR and hence we see DISPATCH_FAILURE exceptions in the logs, which are purely benign.&lt;br /&gt;
&lt;br /&gt;
In normal scenarios, ICM susbsystem(in IVR) notifies the ICM that the call is cleared as soon as it processes the event from JTAPI, in which case ICM does not send another call cleared request to IVR. However, in some cases it may so happen that ICM and JTAPI send this event almost at the same time due to which we see DISPATCH_FAILURE exceptions in the logs as explained above. These exceptions can be ignored as they do not result in any failures in the system.&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
Based on the exceptions, Isolate the issues into the following -&lt;br /&gt;
&lt;br /&gt;
=== JTAPI issues ===&lt;br /&gt;
&lt;br /&gt;
Many a times, calls fail in IVR/ICM  due to telephony/JTAPI issues. Refer to the [[#Cisco Unified Communications Manager Telephony Subsystem]] and check whether the calls are failing at JTAPI level due to which ICM subsystem is unable to process calls in IPIVR.&lt;br /&gt;
&lt;br /&gt;
=== ICM Subsystem Out Of Service or Partial Service Issues/Communication issues between IVR and PG ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[ ICM subsystem is in OUT OF SERVICE state from IVR side and also the VRU PIM stays in IDLE state rather than ACTIVE state in the ICM peripheral gateway. ]]&lt;br /&gt;
          &lt;br /&gt;
* [[ Calls to IVR are failing and ICM subsystem is OUT_OF_SERVICE. ]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Issues ===&lt;br /&gt;
 &lt;br /&gt;
* [[ Calls are failing in IVR and user hears busy tone for these calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[IVR sends wrong values to ICM for the call variables.]] &lt;br /&gt;
&lt;br /&gt;
* [[Call transfer fails if the agent transfers the call from one IVR to a different IVR.]]&lt;br /&gt;
&lt;br /&gt;
* [[Intermittent Translation Route to VRU failure.]]&lt;br /&gt;
&lt;br /&gt;
* [[ Call reserves an agent although caller hanged in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ IVR gets freezed when the calls are more than the actual ports and requires an engine restart for recovery. ]]&lt;br /&gt;
&lt;br /&gt;
=== Set up Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing in IVR intermittently – Some calls go through successfully and some fail intermittently and it may seem like the TCP connection is broken from the VRU PIM side at the time of the failed calls. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Calls are failing with ApplicationMaxSessionsException because there are not enough sessions created for an ICM application in IPIVR. ]]&lt;br /&gt;
&lt;br /&gt;
* [[ What versions of IP IVR are supported for UCCE 8.0? ]]&lt;br /&gt;
&lt;br /&gt;
=== Other Tips ===&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/CRA/Training/UCCX_8_0_IVR-ICM_Integration.pptx&lt;br /&gt;
&lt;br /&gt;
* http://wwwin-eng.cisco.com/Eng/CCBU/ICM/Components/PG/PIMs/VRU/GED125.doc&lt;br /&gt;
&lt;br /&gt;
* [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
* Many services in Deactivated state. Refer to [[ CAD services visible in CLI 'utils service list' command ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[Error in IE (Class doesn't support Automation) ]]&lt;br /&gt;
* [[User Authentication error during CUCM configuration ]]&lt;br /&gt;
* [[HTTP 403 or security protocols error ]]&lt;br /&gt;
* [[Add to cluster repeats in a loop ]]&lt;br /&gt;
* [[Object error during component activation ]]&lt;br /&gt;
* [[Components in deactivated state ]]&lt;br /&gt;
* [[UCCX Data containing &amp;quot;less than &amp;quot; or &amp;quot;greater than&amp;quot; characters fails to save ]]&lt;br /&gt;
* [[Component activation failed during cluster setup ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
== Replication ==&lt;br /&gt;
&lt;br /&gt;
*[[Reset and Repair - what is the difference]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
*[[Script porting issues]]&lt;br /&gt;
*[[W1 upgrade issues]]&lt;br /&gt;
*[[Editor hanging issues]]&lt;br /&gt;
*[[Issues with installing on windows vista and windows 7]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Application subsystem is in partial service]] &lt;br /&gt;
* [[Changes to applications do not register]] &lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]] &lt;br /&gt;
* [[An error message plays when calling a CTI route point]] &lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[ How to debug OutOfMemoryError ]]&lt;br /&gt;
* [[ How to analyze heap dumps ]]&lt;br /&gt;
* [[ How to debug the root cause for high CPU usage ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX ICD =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Required Tracing ===&lt;br /&gt;
* [[Log_Levels_for_issues_related_to_Routing_and_Queuing]]&lt;br /&gt;
=== RmCm is OOS OR in Partial Service ===&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem stuck in INITIALIZING state]]&lt;br /&gt;
&lt;br /&gt;
=== RmCm Configurations issues ===&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
&lt;br /&gt;
=== Agent Issues ===&lt;br /&gt;
&lt;br /&gt;
* [[Unable to login Unified CCX Agent ]]&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state]]&lt;br /&gt;
* [[Agent toggles between Reserved and Ready state-Script queues and dequeueAll's the call to multiple CSQ's]]&lt;br /&gt;
* [[Agent stuck in Reserved state]]&lt;br /&gt;
* [[Agent stuck in Reserved state-&amp;quot;Not posting the ContactPresentedEvent&amp;quot; seen in logs]]&lt;br /&gt;
* [[Agent stuck in Reserved state-SessionTransferredMsg shows Initial and Final Contact Type:IAQ_CONSULT_CONTACT ]]&lt;br /&gt;
* [[Agent State transformations in Select Join and Join Across Line scenarios]]&lt;br /&gt;
&lt;br /&gt;
=== Call Issues ===&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Calls are sometimes not delivered accordingly to Skill Competence when Resource Selection Criteria is Most Skilled]]&lt;br /&gt;
* [[Same call is presented to two agents]]&lt;br /&gt;
* [[Agent and customer start hearing UCCX recordings played over their conversation]]&lt;br /&gt;
&lt;br /&gt;
=== Scripting Issue ===&lt;br /&gt;
* [[Call redirected from one RP to the other multiple times with Redirect Step]]&lt;br /&gt;
&lt;br /&gt;
=== Unsupported scenarios ===&lt;br /&gt;
&lt;br /&gt;
* [[IncompatibleSessionException seen in MIVR logs]]&lt;br /&gt;
&lt;br /&gt;
=== Call Flow Guides ===&lt;br /&gt;
* [[Guide to read MIVR logs for a simple ICD call]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[RTR in SelectJoin, DirectTransfer, JoinAcrossLines, DirectTransferAcrossLines Scenarios]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Pre-Requisites]]&lt;br /&gt;
* [[Required Log levels]]&lt;br /&gt;
* [[Historical records not getting written to database]]&lt;br /&gt;
* [[Discrepancies of JAL Scenarios]]&lt;br /&gt;
* [[Differences among Various Cisco Unified CCX reports]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Automatic Speech Recognition Traces]]&lt;br /&gt;
===General ASR Issues===&lt;br /&gt;
* [[How To Bring MRCP ASR Provider To InService State]]&lt;br /&gt;
* [[How To Bring MRCP TTS Provider To InService State ]]&lt;br /&gt;
* [[Nuance 9.0 not working with Unified CCX]]&lt;br /&gt;
* [[How to integrate MRCP ASR-TTS with Unified CCX]]&lt;br /&gt;
* [[Assure ASR-TTS ports/resources are freed up after the application finishes]]&lt;br /&gt;
* [[UnsupportedGrammarException with Cisco Media i.e Default Dialog group]]&lt;br /&gt;
* [[Built in Grammar minlength and maxlength with Default or Cisco Media Group for DTMF inputs]]&lt;br /&gt;
* [[How to allow both DTMF and Speech Recognition together]]&lt;br /&gt;
* [[The Names are not recognized]]&lt;br /&gt;
* [[MRCP ASR Subsystem Status is out of service]]&lt;br /&gt;
* [[MRCP ASR Providers, MRCP Servers, or Groups Changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
*&amp;lt;B&amp;gt;Trace Levels&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Log Level usage in Outbound Subsystem]]&lt;br /&gt;
**[[Log Levels required to troubleshoot outbound issues]]&lt;br /&gt;
*&amp;lt;B&amp;gt;General Outbound Issues&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound contacts not being dialed after failover]]&lt;br /&gt;
**[[Outbound calls fail with no callback number]]&lt;br /&gt;
**[[Outbound agent Stuck in Reserved state]]&lt;br /&gt;
**[[Outbound General Configuration data is changed]]&lt;br /&gt;
**[[Outbound Subsystem is Out Of Service]]&lt;br /&gt;
*&amp;lt;B&amp;gt;Issues Related To Outbound Call Flow&amp;lt;/B&amp;gt;&lt;br /&gt;
**[[Outbound agents are ready for long time with available contacts]]&lt;br /&gt;
*&amp;lt;B&amp;gt;CAD/CDA related issues&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Outbound Buttons are disabled on CAD]]&lt;br /&gt;
** [[CDA doesn't show checkbox for Outbound Dialer Mode]]&lt;br /&gt;
&lt;br /&gt;
= Text-To-Speech =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX Text To Speech traces]]&lt;br /&gt;
=== General TTS Issues ===&lt;br /&gt;
* [[Setting TTS Provider as Default TTS Provider]]&lt;br /&gt;
* [[Control prosody rate in PlayPrompt TTS block]]&lt;br /&gt;
* [[TTS Provider shows Last Status when Added Again]]&lt;br /&gt;
* [[MRCP TTS subsystem shows out of service status]]&lt;br /&gt;
* [[MRCP TTS Providers, MRCP Servers, locales, or genders changes like additions, or deletions to  do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
*&amp;lt;B&amp;gt; Real-Time Monitoring Tool (RTMT)&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Troubleshooting RTMT Installation Errors]]&lt;br /&gt;
** [[Not able to install different RTMT clients on the same box]]&lt;br /&gt;
** [[Unable to Log in to Cisco Unified Real-Time Monitoring Tool]]&lt;br /&gt;
** [[Unable to Collect data for the second node from RTMT when the Primary Node is down]]&lt;br /&gt;
** [[Troubleshooting DiskSpace and Partition related alerts]]&lt;br /&gt;
** [[Collecting logs for troubleshooting RTMT Alerts]]&lt;br /&gt;
** [[Configuring RTMT Trace Settings]]&lt;br /&gt;
*&amp;lt;B&amp;gt;SNMP&amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Log Collection for SNMP Voice SubAgent issues]]&lt;br /&gt;
** [[Unable to receive Unified CCX SNMP Traps]]&lt;br /&gt;
** [[SNMP operations on the Voice MIB not fetching any output]]&lt;br /&gt;
** [[Troubleshooting Alarms/Alerts to be sent as SNMP Traps]]&lt;br /&gt;
*&amp;lt;B&amp;gt; Log Profile &amp;lt;/B&amp;gt;&lt;br /&gt;
** [[Debugging issues]]&lt;br /&gt;
** [[Known issues]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability (Analysis Manager) =&lt;br /&gt;
* [[I don't see the Analysis Manager Drawer or Menu items]]&lt;br /&gt;
* [[RTMT does not come up or behaves strangely]]&lt;br /&gt;
* [[I cannot log into RTMT]]&lt;br /&gt;
* [[My ‘Test Connectivity’ for Unified CCX node is failing]]&lt;br /&gt;
* [[The Call Records Repository connectivity test is failing]]&lt;br /&gt;
* [[Where can I access RTMT and Analysis Manager logs]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
=== Tracing ===&lt;br /&gt;
* [[Turning on Unified CCX VXML traces]]&lt;br /&gt;
=== General VXML Issues ===&lt;br /&gt;
* [[How to use JavaScript greater than, less than and ampersand symbols in vxml var expr declaration]]&lt;br /&gt;
* [[Voice Browser Not able to fetch files with dynamic file extensions]]&lt;br /&gt;
* [[Not able to fetch grammar and prompt files through CRTP]]&lt;br /&gt;
* [[VXML tag not working properly with VoiceBrowser]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Cluster setup =&lt;br /&gt;
&lt;br /&gt;
* [[Component activation failed during cluster setup]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
&lt;br /&gt;
* [[RCA for Engine failover]]&lt;br /&gt;
* [[Engine and CAD failover taking long time]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[hear nothing while playing back desktop recorded sessions]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CLI =&lt;br /&gt;
* [[UCCX CLI log collection]]&lt;br /&gt;
* [[Analyzing UCCX CLI logs]]&lt;br /&gt;
* [[Cannot login to CLI]]&lt;br /&gt;
* [[Enabling root account from CLI]]&lt;br /&gt;
* [[Checking UCCX version using CLI]]&lt;br /&gt;
* [[Checking if the current node is a VOS publisher]]&lt;br /&gt;
* [[Checking configured UCCX license using CLI]]&lt;br /&gt;
* [[Checking &amp;amp; updating JTAPI Client using CLI]]&lt;br /&gt;
* [[Updating the UCM IP address in UCCX from CLI]]&lt;br /&gt;
* [[Checking trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Setting trace level settings from UCCX CLI]]&lt;br /&gt;
* [[Running DB query from UCCX CLI]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Security =&lt;br /&gt;
* [[CSA]]&lt;br /&gt;
* [[IPTables (firewall)]]&lt;br /&gt;
* [[Engine]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX IP Address/Hostname change =&lt;br /&gt;
* [[IP and Hostname change Log Collection]]&lt;br /&gt;
* [[Analyzing CCX IP and Hostname change log ]]&lt;br /&gt;
* [[Identify Cluster Issues after IP and Hostname change]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Wallboard Configuration =&lt;br /&gt;
* [[Troubleshooting and Log Collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX CET =&lt;br /&gt;
* [[DB config objects not showing in CET]]&lt;br /&gt;
* [[CET tool exits with CetTool.bat not found error]]&lt;br /&gt;
* [[Enabling remote user account through CLI]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Licensing =&lt;br /&gt;
* [[Invalid License MAC address error at time of License Upload]]&lt;br /&gt;
* [[Need License MAC before system install to reduce time delay]]&lt;br /&gt;
* [[New Licenses required (License Rehosting)]]&lt;br /&gt;
* [[Using Demo licenses]]&lt;br /&gt;
* [[Warning: System running on grace period message on admin login]]&lt;br /&gt;
* [[Error: Grace period expired on admin login]]&lt;br /&gt;
* [[Warning: Some features are going to expire in x days message on admin login]]&lt;br /&gt;
* [[Error: License expired error on admin login]]&lt;br /&gt;
* [[Troubleshooting and Log collection]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2010-05-26T09:24:26Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Engine */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Caller gets dropped when an attempt is made to recall a Cisco Unified CCX agent extension after the agent previously parked the call]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
* [[Uploading Scripts to Unified CCX throws error]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Purge command did not purge data]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
* [[After the replication between Primary/Secondary was created, the initial snapshot was successful but the merge agents would fail]]&lt;br /&gt;
* [[Uninstall SQL hotfix 2282 is failing]]&lt;br /&gt;
* [[The IPCC server is loosing the ODBC connection after running fine for some time]]&lt;br /&gt;
* [[SQL Agent crash with Red X Mark, and the Node Manager is down]]&lt;br /&gt;
* [[After the upgrade SQL Server got changed to MSDE]]&lt;br /&gt;
* [[From the log: Login failed for user '(null)'. Root cause: Not associated with a trusted SQL Server connection]]&lt;br /&gt;
* [[While doing some configuration change from the Appadmin gets the following error: &amp;quot;Error updating Database&amp;quot;]]&lt;br /&gt;
* [[Primary key violation exception in the MIVR logs while trying to insert a historical record to the Database table]]&lt;br /&gt;
* [[SQLException while uploading prompt, grammar, document using editor steps inside the workflow script]]&lt;br /&gt;
* [[Cannot configure Application or System parameters from the Cisco Unified CCX Administration]]&lt;br /&gt;
* [[Enterprise Database Subsystem is in out of service or in partial service]]&lt;br /&gt;
* [[Can't create a new Datasource from the Appadmin]]&lt;br /&gt;
* [[After creating the datasource and System DSN, it is not getting displayed in the editor step]]&lt;br /&gt;
* [[Not able to view/edit rmcm configurations from node2 appadmin in an HA setup]]&lt;br /&gt;
* [[DBAccessor errors while CVD start up]]&lt;br /&gt;
* [[When trying to delete and create a new Datsource from the appadmin page, there is an error stating Datasource with the same name exists]]&lt;br /&gt;
* [[There is an error displayed in the appadmin while trying to modify the Datasource configuration]]&lt;br /&gt;
* [[Regarding Enterprise Database driver usage]]&lt;br /&gt;
* [[Datastore component activations fails when trying to activate node2 components]]&lt;br /&gt;
* [[Cannot activate datastores on second node in HA deployment. On node2 DB version in Bootstrap   8.00.2187 does not match actual Database Engine version 8.00.2282]]&lt;br /&gt;
* [[Replication Failure seen in the DB control center Appadmin page]]&lt;br /&gt;
* [[Config datastore activation failed.java.sql.SQLException: The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction]]&lt;br /&gt;
* [[Cannot activate Datastore components on HA node]]&lt;br /&gt;
* [[In the Appadmin DB control center node 2 data store is not present in an HA setup]]&lt;br /&gt;
* [[node2 datastore component activation is failing]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup.Insert Error: Column name or number of supplied values does not match table definition.]]&lt;br /&gt;
* [[Replication broken between the two nodes ]]&lt;br /&gt;
* [[Node2 config and historical datastore component activation fails with the error message:java.rmi.NoSuchObjectException: no such object in table]]&lt;br /&gt;
* [[DB Write is failing with Exception: java.sql.SQLException: No row count was produced ExecuteUpdate Error Occurred ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
* [[Total logged in hours for agent very high after name change]]&lt;br /&gt;
* [[Filter by skill/team/resourcegroup not working]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2010-05-26T09:10:52Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Engine */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Caller gets dropped when an attempt is made to recall a Cisco Unified CCX agent extension after the agent previously parked the call]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
* [[Uploading Scripts to Unified CCX throws error]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Purge command did not purge data]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
* [[After the replication between Primary/Secondary was created, the initial snapshot was successful but the merge agents would fail]]&lt;br /&gt;
* [[Uninstall SQL hotfix 2282 is failing]]&lt;br /&gt;
* [[The IPCC server is loosing the ODBC connection after running fine for some time]]&lt;br /&gt;
* [[SQL Agent crash with Red X Mark, and the Node Manager is down]]&lt;br /&gt;
* [[After the upgrade SQL Server got changed to MSDE]]&lt;br /&gt;
* [[From the log: Login failed for user '(null)'. Root cause: Not associated with a trusted SQL Server connection]]&lt;br /&gt;
* [[While doing some configuration change from the Appadmin gets the following error: &amp;quot;Error updating Database&amp;quot;]]&lt;br /&gt;
* [[Primary key violation exception in the MIVR logs while trying to insert a historical record to the Database table]]&lt;br /&gt;
* [[SQLException while uploading prompt, grammar, document using editor steps inside the workflow script]]&lt;br /&gt;
* [[Cannot configure Application or System parameters from the Cisco Unified CCX Administration]]&lt;br /&gt;
* [[Enterprise Database Subsystem is in out of service or in partial service]]&lt;br /&gt;
* [[Can't create a new Datasource from the Appadmin]]&lt;br /&gt;
* [[After creating the datasource and System DSN, it is not getting displayed in the editor step]]&lt;br /&gt;
* [[Not able to view/edit rmcm configurations from node2 appadmin in an HA setup]]&lt;br /&gt;
* [[DBAccessor errors while CVD start up]]&lt;br /&gt;
* [[When trying to delete and create a new Datsource from the appadmin page, there is an error stating Datasource with the same name exists]]&lt;br /&gt;
* [[There is an error displayed in the appadmin while trying to modify the Datasource configuration]]&lt;br /&gt;
* [[Regarding Enterprise Database driver usage]]&lt;br /&gt;
* [[Datastore component activations fails when trying to activate node2 components]]&lt;br /&gt;
* [[Cannot activate datastores on second node in HA deployment. On node2 DB version in Bootstrap   8.00.2187 does not match actual Database Engine version 8.00.2282]]&lt;br /&gt;
* [[Replication Failure seen in the DB control center Appadmin page]]&lt;br /&gt;
* [[Config datastore activation failed.java.sql.SQLException: The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction]]&lt;br /&gt;
* [[Cannot activate Datastore components on HA node]]&lt;br /&gt;
* [[In the Appadmin DB control center node 2 data store is not present in an HA setup]]&lt;br /&gt;
* [[node2 datastore component activation is failing]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup]]&lt;br /&gt;
* [[Not able to activate config datastore from node2 of a CCX HA setup.Insert Error: Column name or number of supplied values does not match table definition.]]&lt;br /&gt;
* [[Replication broken between the two nodes ]]&lt;br /&gt;
* [[Node2 config and historical datastore component activation fails with the error message:java.rmi.NoSuchObjectException: no such object in table]]&lt;br /&gt;
* [[DB Write is failing with Exception: java.sql.SQLException: No row count was produced ExecuteUpdate Error Occurred ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
* [[Calls fail when sent into Cisco Unified CCX Server via a SIP transfer]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
* [[Total logged in hours for agent very high after name change]]&lt;br /&gt;
* [[Filter by skill/team/resourcegroup not working]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Total_logged_in_hours_for_agent_very_high_after_name_change</id>
		<title>Total logged in hours for agent very high after name change</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Total_logged_in_hours_for_agent_very_high_after_name_change"/>
				<updated>2010-04-30T04:45:32Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Total logged in hours for agent very high after name change */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
== Total logged in hours for agent very high after name change ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Total logged in hours for agent very high after name change.&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The agent name was changed via CCM while the agent was still logged into CAD.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| Change the agent's name when agent is not logged in.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| CSCsx49385 : Updating Agent name in Call Manager creates a new agent in UCCX.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Total_logged_in_hours_for_agent_very_high_after_name_change</id>
		<title>Total logged in hours for agent very high after name change</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Total_logged_in_hours_for_agent_very_high_after_name_change"/>
				<updated>2010-04-30T03:52:14Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: {{Template:Required Metadata}} == Total logged in hours for agent very high after name change ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | Total logged in hours for agent very high after...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
== Total logged in hours for agent very high after name change ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Total logged in hours for agent very high after name change.&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The agent name was changed via CCM while the agent was still logged into CAD.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| Change the agent's name when agent is not logged in.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2010-04-30T03:49:37Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Caller gets dropped when an attempt is made to recall a Cisco Unified CCX agent extension after the agent previously parked the call]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
* [[After the replication between Primary/Secondary was created, the initial snapshot was successful but the merge agents would fail]]&lt;br /&gt;
* [[Uninstall SQL hotfix 2282 is failing]]&lt;br /&gt;
* [[The IPCC server is loosing the ODBC connection after running fine for some time]]&lt;br /&gt;
* [[SQL Agent crash with Red X Mark, and the Node Manager is down]]&lt;br /&gt;
* [[After the upgrade SQL Server got changed to MSDE]]&lt;br /&gt;
* [[From the log: Login failed for user '(null)'. Root cause: Not associated with a trusted SQL Server connection]]&lt;br /&gt;
* [[While doing some configuration change from the Appadmin gets the following error: &amp;quot;Error updating Database&amp;quot;]]&lt;br /&gt;
* [[Primary key violation exception in the MIVR logs while trying to insert a historical record to the Database table]]&lt;br /&gt;
* [[SQLException while uploading prompt, grammar, document using editor steps inside the workflow script]]&lt;br /&gt;
* [[Cannot configure Application or System parameters from the Cisco Unified CCX Administration]]&lt;br /&gt;
* [[Enterprise Database Subsystem is in out of service or in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
* [[Total logged in hours for agent very high after name change]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Calls_fail_with_CTIERR_TIMEOUT%3D0x8ccc0001::Cti_request_timed_out</id>
		<title>Calls fail with CTIERR TIMEOUT=0x8ccc0001::Cti request timed out</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Calls_fail_with_CTIERR_TIMEOUT%3D0x8ccc0001::Cti_request_timed_out"/>
				<updated>2010-04-19T04:05:18Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: {{Template:Required Metadata}} ==  Calls fail with CTIERR TIMEOUT=0x8ccc0001::Cti request timed out ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' |  Calls fail with CTIERR TIMEOUT=0x8ccc000...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
==  Calls fail with CTIERR TIMEOUT=0x8ccc0001::Cti request timed out ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
|  Calls fail with CTIERR TIMEOUT=0x8ccc0001::Cti request timed out.&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| CTIERR TIMEOUT=0x8ccc0001::Cti request timed out seen in MIVR logs.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| Multicast is not supported for CTI.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| Configure the MOH (Music on Hold) for CTI Ports defined in the UCCX server's Call Control Group for Unicast instead of Multicast in CUCM.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 7.0(1) &lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| CSCdp20407, CSCsa89504 &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2010-04-19T04:00:50Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Caller gets dropped when an attempt is made to recall a Cisco Unified CCX agent extension after the agent previously parked the call]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
* [[Calls fail with CTIERR_TIMEOUT=0x8ccc0001::Cti request timed out]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Which_reports_should_be_used_to_determine_BHCA_and_BHCC%3F</id>
		<title>Which reports should be used to determine BHCA and BHCC?</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Which_reports_should_be_used_to_determine_BHCA_and_BHCC%3F"/>
				<updated>2010-04-09T12:21:53Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
== Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Which reports should be used to determine BHCA and BHCC?&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| The Traffic analysis report shows information related to any call that hits Unified CCX. In that sense, it is an accurate reflection of BHCA (Busy Hour Call Attempts).&lt;br /&gt;
To get the BHCC (Busy Hour Call Completion) from a Unified CCX perspective, we need to calculate BHCA - (all aborted calls + all rejected calls). The Aborted and Rejected Call Detail Report can help retrieve that information. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Which_reports_should_be_used_to_determine_BHCA_and_BHCC%3F</id>
		<title>Which reports should be used to determine BHCA and BHCC?</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Which_reports_should_be_used_to_determine_BHCA_and_BHCC%3F"/>
				<updated>2010-04-09T12:20:55Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: {{Template:Required Metadata}} == Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | Which reports sho...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
== Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Which reports should be used to determine BHCA and BHCC?&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| The Traffic analysis report shows information related to any call that hits UCCX. In that sense, it is an accurate reflection of BHCA (Busy Hour Call Attempts).&lt;br /&gt;
To get the BHCC (Busy Hour Call Completion) from a Unified CCX perspective, we need to calculate BHCA - (all aborted calls + all rejected calls). The Aborted and Rejected Call Detail Report can help retrieve that information. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0</id>
		<title>Troubleshooting Tips for Unified CCX 7.0</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_7.0"/>
				<updated>2010-04-09T12:19:04Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Cisco Unified CCX Historical Reporting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Back:''' [[Troubleshooting Unified Contact Center Express]] &lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Additional troubleshooting information for Unified CCX 7.0]] &lt;br /&gt;
&lt;br /&gt;
'''Add tip:''' [[Create Contact Center Troubleshooting Tips]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following tips were added by Cisco Documentation:&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
* [[One node on a Cisco Unified CCX 7.0(1) two-node cluster crashes beyond repair]]&lt;br /&gt;
&lt;br /&gt;
= Backup, Restore, and Update =&lt;br /&gt;
* [[Backup, Restore, and Upgrade cannot be started from a client desktop]]&lt;br /&gt;
* [[During Backup, Restore, or Upgrade, an exception is seen in user interface]]&lt;br /&gt;
* [[Backup failed for a One or Two-Node system]]&lt;br /&gt;
* [[CRS 4.5 profile name is missing]]&lt;br /&gt;
* [[Page Not Found message is displayed during Restore or Upgrade]]&lt;br /&gt;
* [[Restore fails due to a file not being found]]&lt;br /&gt;
* [[Restore failed for a one-node system]]&lt;br /&gt;
* [[Restore failed on a two-node system that had run before the Restore]]&lt;br /&gt;
* [[Restore failed on a two-node system that was re-imaged]]&lt;br /&gt;
* [[Some RmCm configuration is missing after upgrade]]&lt;br /&gt;
* [[During the backup process, the backup window is accidentally closed]]&lt;br /&gt;
* [[Restore error in HA deployment when tape drive moved]]&lt;br /&gt;
* [[Restore error in HA deployment when backup and restore is performed on different nodes]]&lt;br /&gt;
* [[Failure when Updating Outbound Subsystem Configuration]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Enterprise Telephony subsystem =&lt;br /&gt;
* [[A functional routing point stopped working or the Cisco Unified CME Telephony subsystem is in partial service]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Automated Attendant =&lt;br /&gt;
* [[ Dial by name does not find the specified server ]]&lt;br /&gt;
* [[ Automated Attendant prompt is not played ]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified Communications Manager Express =&lt;br /&gt;
* [[Agent cannot log in on shared line]]&lt;br /&gt;
* [[Agent cannot log in on restricted line]]&lt;br /&gt;
* [[When agent drops from conference, all parties on conference are dropped]]&lt;br /&gt;
* [[Cisco Unified CME triggers with 2811/CME router are not working]]&lt;br /&gt;
* [[Pressing hash character truncates the prompt and the prompts that follow are not played]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX =&lt;br /&gt;
* [[RmCm subsystem is out of service]]&lt;br /&gt;
* [[RmCm subsystem remains INITIALIZING]]&lt;br /&gt;
* [[RmCm remains in Initializing state]]&lt;br /&gt;
* [[Agents, Supervisors, or Teams are out of synch]]&lt;br /&gt;
* [[Agent or CSQ does not appear in CDA]]&lt;br /&gt;
* [[Agents do not appear in the Resources area in the Cisco Unified CCX Configuration web page]]&lt;br /&gt;
* [[You cannot select the order of agents]]&lt;br /&gt;
* [[Agent does not go to Work state after handling a call]]&lt;br /&gt;
* [[A media step causes a Could not create PlayPromptDialog Object exception]]&lt;br /&gt;
* [[Unable to make any Cisco Unified CCX configuration changes]]&lt;br /&gt;
* [[Some resource selection criteria are missing]]&lt;br /&gt;
* [[Unable to record an agent]]&lt;br /&gt;
* [[Sometimes the supervisor can monitor and record an agent and sometimes he cannot]]&lt;br /&gt;
* [[Calls to Cisco Unified CCX route points are disconnected]]&lt;br /&gt;
* [[Calls are not routed to agents]]&lt;br /&gt;
* [[Agents do not show in a CSQ]]&lt;br /&gt;
* [[Caller gets dropped when an attempt is made to recall a Cisco Unified CCX agent extension after the agent previously parked the call]]&lt;br /&gt;
* [[Updating a NIC driver disables silent monitoring and recording]]&lt;br /&gt;
* [[Agent alternates between Reserved and Ready state]]&lt;br /&gt;
* [[Agent in Reserved state but the consult transfer fails repeatedly]]&lt;br /&gt;
* [[Call fails if agent doesn’t pick the call in the first two rings]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified IP IVR =&lt;br /&gt;
* [[Cisco Unified IP IVR drops callers when transferring to an extension]]&lt;br /&gt;
* [[Prompts play in language]]&lt;br /&gt;
* [[Some prompts do not play]]&lt;br /&gt;
* [[Some prompts in a script play in the language specified and other prompts play in English]]&lt;br /&gt;
* [[A prompt plays phrases in the wrong order]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Administration =&lt;br /&gt;
* [[The Cisco Unified CCX Administration Authentication web page is not available]]&lt;br /&gt;
* [[Uploading a license file can result in a warning message]]&lt;br /&gt;
* [[User cannot log in to the Cisco Unified CCX web page]]&lt;br /&gt;
* [[Refreshing subflow script does not update parent scripts]]&lt;br /&gt;
* [[Cisco Unified CM users display in random order]]&lt;br /&gt;
* [[Cisco Unified CCX Supervisor web page cannot be viewed from Cisco Unified CCX Server]]&lt;br /&gt;
* [[Database table fields used by wallboard store data in milliseconds]]&lt;br /&gt;
* [[Management pages display error message when selected]]&lt;br /&gt;
* [[Zip file does not auto unzip on Document Management page]]&lt;br /&gt;
* [[Invalid files message displays while uploading a zip file of prompts]]&lt;br /&gt;
* [[A Component Manager goes into partial service when uploading a zip file]]&lt;br /&gt;
* [[High call rejection rate under heavy load]]&lt;br /&gt;
* [[Error in Cisco Unified CCX Administration when trying to upload a large prompt.wav file]]&lt;br /&gt;
* [[Callers hear a fast busy while calling the JTAPI triggers]]&lt;br /&gt;
* [[Override media termination group displayed twice]]&lt;br /&gt;
* [[SUPERVISE_CALL_REQ type barge in without AgentCallID]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Admin Utility =&lt;br /&gt;
* [[The cluster is not in synchronization]]&lt;br /&gt;
* [[Cisco Unified CCX Admin Utility exits or does not come up after login]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility fails due to data corruption]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run on a non bootstrap node]]&lt;br /&gt;
* [[The Cisco Unified CCX Admin Utility will not run since the Node Manager hung]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Database =&lt;br /&gt;
* [[Cannot configure Application or System parameters from their pages in Cisco Unified CCX Administration]]&lt;br /&gt;
* [[HR client login error]]&lt;br /&gt;
* [[Cannot activate DB components on HA node]]&lt;br /&gt;
* [[Cisco Unified CCX Databases are not purged as expected]]&lt;br /&gt;
* [[Historical Database db&amp;amp;#95;cra is full]]&lt;br /&gt;
* [[E-mail notification of database purging activities is not sent]]&lt;br /&gt;
* [[Syslog or SNMP trap notification of database purging activities is not sent]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Editor =&lt;br /&gt;
* [[Change a string variable to an integer]]&lt;br /&gt;
* [[Accept step error during active debug]]&lt;br /&gt;
* [[Error occurs with Reactive Debugging Tool]]&lt;br /&gt;
* [[Agent automatically put into Ready state]]&lt;br /&gt;
* [[Agent has invalid state transition from Reserved to Available to Talking]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Engine =&lt;br /&gt;
* [[Agent cannot go Ready after logging in]]&lt;br /&gt;
* [[Voice Browser step throws an exception]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start and an RMI port in use error appears]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1067]]&lt;br /&gt;
* [[Attempting to start the Cisco Unified CCX Node Manager service causes an error 1069]]&lt;br /&gt;
* [[Application subsystem is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX Engine is running but calls are not answered]]&lt;br /&gt;
* [[Changing the time in Cisco Unified CCX machines results in agents getting logged off]]&lt;br /&gt;
* [[An error message plays when calling a CTI route point]]&lt;br /&gt;
* [[Changes to applications do not register]]&lt;br /&gt;
* [[Call drops during transfer over gateway]]&lt;br /&gt;
* [[H.323 client DTMF digits not detected]]&lt;br /&gt;
* [[Redirected call is disconnected]]&lt;br /&gt;
* [[The Cisco Unified CCX server runs out of disk space]]&lt;br /&gt;
* [[Cisco Unified CCX Server runs at 100% capacity or is slow]]&lt;br /&gt;
* [[Database Subsystem goes into partial service]]&lt;br /&gt;
* [[JTAPI subsystem is in partial service]]&lt;br /&gt;
* [[Unable to connect to JTAPI provider]]&lt;br /&gt;
* [[The Simple Recognition step takes the unsuccessful branch]]&lt;br /&gt;
* [[Calling party and Cisco Unified CCX do not have common codec]]&lt;br /&gt;
* [[Prompts with incorrect codec being played out]]&lt;br /&gt;
* [[Prompt Exception in Cisco Unified CCX Engine log file]]&lt;br /&gt;
* [[Cisco Unified CCX Engine does not start]]&lt;br /&gt;
* [[Application subsystem in partial service and application running for an unexpectedly long time]]&lt;br /&gt;
* [[Cisco Unified CCX Server and Active Directory integration results in some services being unregistered]]&lt;br /&gt;
* [[Database Subsystem fails to connect to MS SQL server]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Real-Time Reporting =&lt;br /&gt;
* [[Attempting to run a real-time report causes an error]]&lt;br /&gt;
* [[After installing JRE, the user receives a message from real-time reporting saying to install JRE]]&lt;br /&gt;
* [[Contact entry is stuck in real-time reporting]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Historical Reporting =&lt;br /&gt;
* [[Exported PDF report does not print in landscape orientation]]&lt;br /&gt;
* [[User login missing in Windows XP after installing HR client]]&lt;br /&gt;
* [[Client and Server security policies do not match]]&lt;br /&gt;
* [[Charts do not appear properly in MS Excel format]]&lt;br /&gt;
* [[Columns of data missing in report in MS Excel format]]&lt;br /&gt;
* [[Records truncated in report in MS Excel format]]&lt;br /&gt;
* [[Agent names overwritten on charts]]&lt;br /&gt;
* [[RTF Report containing charts has tabular report headings]]&lt;br /&gt;
* [[Scheduler icon does not appear on Terminal Services client]]&lt;br /&gt;
* [[Reports do not execute at scheduled times]]&lt;br /&gt;
* [[Search dialog box and Preview tab appear in English on Windows system with locale set to German]]&lt;br /&gt;
* [[Dialog box does not appear as expected when report is exported]]&lt;br /&gt;
* [[Error when choosing an option from the Historical Reporting web page]]&lt;br /&gt;
* [[Truncated report description in Historical Reports client]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run]]&lt;br /&gt;
* [[The SQL Command Failed dialog box appears when you try to generate a historical report]]&lt;br /&gt;
* [[Some information appears in English on a German system]]&lt;br /&gt;
* [[The Historical Reports client computer cannot connect to the Cisco Unified CCX server]]&lt;br /&gt;
* [[A Database Connection Error 5051 error appears]]&lt;br /&gt;
* [[Export file name does not appear in Export dialog box]]&lt;br /&gt;
* [[Cannot point to local applications from the Database Server Configuration page]]&lt;br /&gt;
* [[Attempt to log in to the Cisco Unified CCX Server from the Historical Reporting client fails and an error message is returned]]&lt;br /&gt;
* [[Only three report templates are available for Cisco Unified CCX Standard]]&lt;br /&gt;
* [[Discrepancy in number of ACD calls shown on custom reports]]&lt;br /&gt;
* [[Priority Summary Activity Report chart prints only partly in color]]&lt;br /&gt;
* [[Scheduled Historical Reports do not run and message appears in CiscoSch.log file]]&lt;br /&gt;
* [[Historical Reporting Client window shows nothing in the user drop-down menu]]&lt;br /&gt;
* [[Historical Reporting Client stops working; attempt to log in again results in error messages]]&lt;br /&gt;
* [[Scheduler DOS exception error received when running a custom report]]&lt;br /&gt;
* [[Columns displaced in Excel spreadsheet when exporting a report]]&lt;br /&gt;
* [[Scheduler icon does not appear in Windows status bar]]&lt;br /&gt;
* [[Error message appears indicating connection with database is broken]]&lt;br /&gt;
* [[Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)]]&lt;br /&gt;
* [[Which reports should be used to determine BHCA and BHCC?]]&lt;br /&gt;
&lt;br /&gt;
= Automatic Speech Recognition =&lt;br /&gt;
* [[Names are not recognized]]&lt;br /&gt;
* [[Recognition never times out]]&lt;br /&gt;
* [[Alternate pronunciations and nicknames are not recognized]]&lt;br /&gt;
* [[Reduced call completion rate under heavy load while using an MRCP ASR Group]]&lt;br /&gt;
* [[MRCP ASR subsystem is out of service]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP ASR Providers, MRCP Servers, or Groups do not take effect]]&lt;br /&gt;
* [[Calling a route point with an MRCP ASR Dialog Group results in default treatment]]&lt;br /&gt;
&lt;br /&gt;
= Outbound =&lt;br /&gt;
* [[Agent does skip or skip-close but does not stay reserved]]&lt;br /&gt;
* [[Agent is not getting callbacks]]&lt;br /&gt;
* [[Agent is ready but does not get an Outbound call for up to two minutes]]&lt;br /&gt;
* [[Errors placing Outbound calls]]&lt;br /&gt;
* [[Not all contacts get imported]]&lt;br /&gt;
* [[On the Campaigns Configuration web page, the available CSQs list is empty even though there are CSQs configured under the RmCm subsystem]]&lt;br /&gt;
* [[Outbound buttons do not show up on CAD]]&lt;br /&gt;
* [[Outbound buttons show up but are disabled on CAD]]&lt;br /&gt;
* [[Outbound calls are not getting dialed]]&lt;br /&gt;
* [[Outbound call volume is low]]&lt;br /&gt;
* [[Outbound System Service is not in service]]&lt;br /&gt;
* [[RTR Outbound reports do not show all possible reclassification]]&lt;br /&gt;
&lt;br /&gt;
= Text-to-Speech =&lt;br /&gt;
* [[Provider becomes IN_SERVICE immediately]]&lt;br /&gt;
* [[TTS Prompt does not play]]&lt;br /&gt;
* [[TTS prompt is not recognizable]]&lt;br /&gt;
* [[MRCP TTS subsystem is out of service]]&lt;br /&gt;
* [[Long TTS prompts consume significant memory on Cisco Unified CCX Server]]&lt;br /&gt;
* [[Non-UTF-8 characters needed for some languages]]&lt;br /&gt;
* [[A .wav file prompt playback is garbled when played by a TTS server]]&lt;br /&gt;
* [[Changes, additions, or deletions to MRCP TTS Providers, MRCP Servers, locales, or genders do not take effect]]&lt;br /&gt;
&lt;br /&gt;
= Serviceability =&lt;br /&gt;
* [[SNMP-based network management tools cannot monitor Cisco Unified CCX components]]&lt;br /&gt;
* [[File Manager in partial service]]&lt;br /&gt;
* [[SNMP traps do not arrive at the trap receiver]]&lt;br /&gt;
* [[Syslog messages not received by receiver]]&lt;br /&gt;
* [[The Alarm Service does not start]]&lt;br /&gt;
* [[Serviceability does not uninstall completely]]&lt;br /&gt;
* [[Updating Data with the Serviceability Tool on One Node does not Update Other Nodes]]&lt;br /&gt;
* [[Virus Scan software slows Call Completion Rate]]&lt;br /&gt;
&lt;br /&gt;
= Cisco Unified CCX Internationalization =&lt;br /&gt;
* [[Results not as expected for first name and last name in Chinese, Japanese, and Korean]]&lt;br /&gt;
* [[Language specified is not accepted or played]]&lt;br /&gt;
&lt;br /&gt;
= VXML =&lt;br /&gt;
* [[Voice Browser Step troubleshooting steps]]&lt;br /&gt;
* [[Timeout attribute for non-input does not work]]&lt;br /&gt;
* [[Menu Choice DTMF does not work]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Bootstrap =&lt;br /&gt;
* [[Transaction Manager cannot start]]&lt;br /&gt;
* [[Have an exception on startup with a message like &amp;quot;unable to recover transaction&amp;quot; or an error message related to reading or modifying the &amp;quot;Tx.per&amp;quot; file]]&lt;br /&gt;
&lt;br /&gt;
= High Availability and Failover =&lt;br /&gt;
* [[Conflicts in Datastore Control Center history]]&lt;br /&gt;
* [[Cannot make configuration changes in HA cluster]]&lt;br /&gt;
* [[Cannot make configuration changes in RmCm Subsystem]]&lt;br /&gt;
* [[Service constantly shows Invalid]]&lt;br /&gt;
* [[Cisco Unified CCX server keeps rebooting due to Cisco Unified CCX Node Manager failure]]&lt;br /&gt;
* [[Cluster is in partial service]]&lt;br /&gt;
* [[Server is in partial service]]&lt;br /&gt;
* [[Cisco Unified CCX does not accept a call or function properly]]&lt;br /&gt;
* [[Service Master/Slave status is not shown on Cisco Unified CCX Administration Control Center]]&lt;br /&gt;
* [[Cluster time synch fails]]&lt;br /&gt;
* [[Cisco Unified CCX Servers respond slowly in a High Availability environment]]&lt;br /&gt;
* [[Multiple failovers with high CPU usage]]&lt;br /&gt;
&lt;br /&gt;
= VoIP Monitor =&lt;br /&gt;
* [[VoIP monitor does not work correctly]]&lt;br /&gt;
* [[Cisco Unified CCX fails to start]]&lt;br /&gt;
* [[VoIP Monitor tab of the CDA gives an error]]&lt;br /&gt;
* [[VoIP Monitor does not list some phone devices]]&lt;br /&gt;
&lt;br /&gt;
= CDP =&lt;br /&gt;
* [[CDP Protocol Driver missing in Device Manager]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Called_Number_Summary_Report_(CNSR)_has_more_calls_than_the_Traffic_Analysis_Report_(TAR)</id>
		<title>Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Called_Number_Summary_Report_(CNSR)_has_more_calls_than_the_Traffic_Analysis_Report_(TAR)"/>
				<updated>2010-04-09T10:39:28Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
== Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR).&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The TAR only lists external calls that hit Unified CCX. Any processing that the call undergoes within Unified CCX will not be reflected in the TAR report, but will be seen in the CNSR. The CNSR tracks not only the calls that hit Unified CCX from outside, but also the calls made within Unified CCX, outbound preview, and internal transfers (agent to agent, agent to UCCX trigger).&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Called_Number_Summary_Report_(CNSR)_has_more_calls_than_the_Traffic_Analysis_Report_(TAR)</id>
		<title>Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Called_Number_Summary_Report_(CNSR)_has_more_calls_than_the_Traffic_Analysis_Report_(TAR)"/>
				<updated>2010-04-09T10:35:12Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
== Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR).&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The TAR only lists external calls that hit Unified CCX. Any processing that the call undergoes within Unified CCX will not be reflected in the TAR report, but will be seen in the CNSR. The CNSR tracks not only the calls that hit Unified CCX from outside, but also the calls made within Unified CCX, outbound preview, and internal transfers (agent to agent, agent to UCCX trigger).&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0, Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Called_Number_Summary_Report_(CNSR)_has_more_calls_than_the_Traffic_Analysis_Report_(TAR)</id>
		<title>Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Called_Number_Summary_Report_(CNSR)_has_more_calls_than_the_Traffic_Analysis_Report_(TAR)"/>
				<updated>2010-04-09T03:28:34Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: New page: {{Template:Required Metadata}} == Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) ==  {| border=&amp;quot;1&amp;quot; |- ! '''Problem Summary''' | Called Number Sum...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
== Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR).&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The TAR only lists external calls that hit Unified CCX. Any processing that the call undergoes within Unified CCX will not be reflected in the TAR report, but will be seen in the CNSR. The CNSR tracks not only the calls that hit Unified CCX from outside, but also the calls made within Unified CCX, outbound preview, and internal transfers (agent to agent, agent to UCCX trigger).&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 8.0(1)&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 8.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/wiki/Called_Number_Summary_Report_(CNSR)_has_more_calls_than_the_Traffic_Analysis_Report_(TAR)</id>
		<title>Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR)</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/wiki/Called_Number_Summary_Report_(CNSR)_has_more_calls_than_the_Traffic_Analysis_Report_(TAR)"/>
				<updated>2010-04-08T05:25:31Z</updated>
		
		<summary type="html">&lt;p&gt;Robapat: /* Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
== Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR) ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| Called Number Summary Report (CNSR) has more calls than the Traffic Analysis Report (TAR).&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Possible Cause'''&lt;br /&gt;
| The TAR only lists external calls that hit UCCX. Any processing that the call undergoes within UCCX will not be reflected in the TA report, but will be seen in the CNSR. The CNSR tracks not only calls that hit UCCX from the outside, but also calls made within UCCX, outbound preview and  internal transfers (agent to agent, agent to UCCX trigger).&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 7.0(1)&lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| None.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Unified CCX, Release 7.0]]&lt;/div&gt;</summary>
		<author><name>Robapat</name></author>	</entry>

	</feed>