<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Main</title>
    <link>http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711</link>
    <description />
    <item>
      <title>Wiki Home 28.8</title>
      <link>http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;Wiki+Home</link>
      <description>=== This is the home page for the Contact Center Reporting Wiki space. ===

[[Additional Contact Center and CUIS Resources]]</description>
      <pubDate>Tue, 25 Sep 2012 13:39:48 GMT</pubDate>
      <guid isPermaLink="false">http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;Wiki+Home</guid>
      <dc:creator>Marjie Ennis Floyd</dc:creator>
      <dc:date>2012-09-25T13:39:48Z</dc:date>
    </item>
    <item>
      <title>CUIC 7.5 4.4</title>
      <link>http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;CUIC+7.5</link>
      <description>===Delete Users===

CUIC 7.5 by design does not have a feature to delete users. As a workaround, you can execute the procedure [[Delete users|listed in this page]] for removing a user.</description>
      <pubDate>Tue, 25 Sep 2012 13:37:11 GMT</pubDate>
      <guid isPermaLink="false">http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;CUIC+7.5</guid>
      <dc:creator>Marjie Ennis Floyd</dc:creator>
      <dc:date>2012-09-25T13:37:11Z</dc:date>
    </item>
    <item>
      <title>Delete users 1.0</title>
      <link>http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;Delete+users</link>
      <description>Steps to delete a CUIC 7.5 user.

1. Back up the IC database. 

2. From Microsoft SQL Studio, run the script below against the CUIC database. 

3. Expand Stored Procedures. 

4. Locate, right-click, and execute the procedure named asp_DeleteUser. Then click Execute Stored Procedure. 

5. Fill in the user name (domain\username)and execute the procedure. 

**SCRIPT**

----

SET QUOTED_IDENTIFIER ON set ANSI_NULLS ON 
GO 

-- Delete all user related information for a given UserName (Domain\Name format) 

IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[asp_DeleteUser]') AND type in (N'P', N'PC')) EXEC dbo.sp_executesql @statement = N' CREATE PROCEDURE [dbo].[asp_DeleteUser] @UserName varchar(150) AS 

BEGIN 
DECLARE @errorFound tinyint Select @errorFound = 0 
BEGIN TRANSACTION 

   SELECT UserName FROM AA_Users WHERE UserName = @UserName
IF @@ERROR &gt; 0 SET @errorFound = 1 

   DELETE AA_SharedObjects WHERE SharedWithID = @UserName AND PermissionInheritedFromID = (SELECT UserGroupID FROM AA_UserGroupMembership WHERE UserID=@UserName) 

   DELETE AA_UserGroupMembership WHERE UserID = @UserName and UserGroupID = (SELECT UserGroupID FROM AA_UserGroupMembership WHERE UserID=@UserName) 

   DELETE AA_UsersAllowedReports WHERE UserID = @UserName
   DELETE AA_CollectionsToUsers WHERE UserID = @UserName 

   DELETE UserRoles WHERE UserID = (SELECT UserID FROM Users WHERE UserName = @UserName) IF @@ERROR &gt; 0 SET @errorFound = 1 

   DELETE FROM Users WHERE UserName = @UserName 

   DELETE FROM AA_Users WHERE UserName = @UserName 

   IF (@@ERROR &gt; 0) OR (@errorFound &gt; 0) 
   BEGIN 
     ROLLBACK 
   END 
   ELSE BEGIN 
     COMMIT 
   END 
END ' 

GO 

----</description>
      <pubDate>Fri, 03 Sep 2010 15:26:10 GMT</pubDate>
      <guid isPermaLink="false">http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;Delete+users</guid>
      <dc:creator>Prabhu Periasamy</dc:creator>
      <dc:date>2010-09-03T15:26:10Z</dc:date>
    </item>
    <item>
      <title>Sample Release 8.0 Report 1.0</title>
      <link>http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;Sample+Release+8.0+Report</link>
      <description />
      <pubDate>Wed, 09 Jun 2010 01:08:13 GMT</pubDate>
      <guid isPermaLink="false">http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;Sample+Release+8.0+Report</guid>
      <dc:creator>Carmen Logue</dc:creator>
      <dc:date>2010-06-09T01:08:13Z</dc:date>
    </item>
    <item>
      <title>Additional Contact Center and CUIS Resources 1.0</title>
      <link>http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;Additional+Contact+Center+and+CUIS+Resources</link>
      <description>&lt;p&gt;Below are additional sources of information for Cisco Unified Intelligence Suite and Contact Center Reporting&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;CCBU Dev Twitter Account: &lt;a href="http://twitter.com/ccbu_dev" target="_top"&gt;CCBU_Dev&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;CCBU Twitter Account: &lt;a href="http://twitter.com/CiscoCC" target="_top"&gt;CiscoCC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.myciscocommunity.com/community/technology/collaboration" target="_top"&gt;Cisco Communities&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.myciscocommunity.com/community/technology/collaboration/usergroups" target="_top"&gt;Join the Contact Center Users' Group&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description>
      <pubDate>Sun, 02 May 2010 00:43:42 GMT</pubDate>
      <guid isPermaLink="false">http://developer.cisco.com/web/ccr/wikidocs?p_p_auth=S08Za0KK&amp;p_p_id=36&amp;p_p_lifecycle=0&amp;p_r_p_185834411_nodeId=2158711&amp;p_r_p_185834411_title=&amp;Additional+Contact+Center+and+CUIS+Resources</guid>
      <dc:creator>David Nguyen</dc:creator>
      <dc:date>2010-05-02T00:43:42Z</dc:date>
    </item>
  </channel>
</rss>

