<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Display Caller ID Name on Finesse Desktop in DevNet General Discussions</title>
    <link>https://community.cisco.com/t5/devnet-general-discussions/display-caller-id-name-on-finesse-desktop/m-p/5012167#M2231</link>
    <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/1567124"&gt;@Ekmal&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Still facing the issue?All sorted?&lt;/P&gt;</description>
    <pubDate>Fri, 02 Feb 2024 18:58:44 GMT</pubDate>
    <dc:creator>Ruben Cocheno</dc:creator>
    <dc:date>2024-02-02T18:58:44Z</dc:date>
    <item>
      <title>Display Caller ID Name on Finesse Desktop</title>
      <link>https://community.cisco.com/t5/devnet-general-discussions/display-caller-id-name-on-finesse-desktop/m-p/4899124#M2032</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have a question regarding UCCX Finesse desktop and caller info.&lt;/P&gt;
&lt;P&gt;How can I customize script for fetching data from database for Name Variable? In my case, I add contact details in CUBE(Voice Gateway)&lt;/P&gt;
&lt;P&gt;This script is for displaying caller ID name in Finesse desktop as it is requirement from user. Currently, only FIPPA can display caller ID name. Need to display caller ID name in Finesse desktop also.&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Ekmal&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Aug 2023 07:11:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/devnet-general-discussions/display-caller-id-name-on-finesse-desktop/m-p/4899124#M2032</guid>
      <dc:creator>Ekmal</dc:creator>
      <dc:date>2023-08-05T07:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Display Caller ID Name on Finesse Desktop</title>
      <link>https://community.cisco.com/t5/devnet-general-discussions/display-caller-id-name-on-finesse-desktop/m-p/4933573#M2098</link>
      <description>&lt;P&gt;To customize a Cisco UCCX script to fetch caller ID name information from a database and display it in the Finesse desktop, you would typically follow these steps:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Database Connection&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Ensure that your UCCX environment is configured to connect to the database where you store caller information. This may involve configuring a JDBC connection to your database server.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Write SQL Query&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Write an SQL query within your UCCX script that retrieves the caller ID name information from your database. The query should use the caller's phone number (ANI) as a parameter to fetch the corresponding name.&lt;/LI&gt;&lt;LI&gt;Make sure to handle cases where no name is found for a given phone number.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Store the Result&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Once you retrieve the caller's name from the database, store it in a script variable. You can use a Set Enterprise Data step to do this.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Display the Name&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;To display the caller's name in the Finesse desktop, you would typically use the Enterprise Data feature in Cisco Finesse.&lt;/LI&gt;&lt;LI&gt;Configure your UCCX workflow to set an ECC (Enterprise Call Control) variable with the caller's name.&lt;/LI&gt;&lt;LI&gt;In the Finesse desktop layout, you can add a gadget that displays ECC variables. This gadget will show the caller's name when it's available.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here's a simplified example script snippet to illustrate these steps:&lt;/P&gt;&lt;P&gt;// Connect to the database&lt;BR /&gt;DB: DBConnection = Get Connection ("jdbc:mysql://database_server:port/database", "username", "password");&lt;/P&gt;&lt;P&gt;// Fetch caller name from the database using the ANI (caller's phone number)&lt;BR /&gt;SELECT name FROM caller_info_table WHERE phone_number = caller_ani INTO caller_name;&lt;/P&gt;&lt;P&gt;// Check if a name was found&lt;BR /&gt;IF (caller_name is not null) {&lt;BR /&gt;// Store the caller's name in an ECC variable&lt;BR /&gt;Set Enterprise Call Info caller_name = caller_name;&lt;BR /&gt;} ELSE {&lt;BR /&gt;// Handle the case where no name is found&lt;BR /&gt;Set Enterprise Call Info caller_name = "Unknown";&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please note that this is a simplified example, and your specific implementation may require additional error handling and database connection configuration. Be sure to consult the UCCX scripting documentation and your database's documentation for more details on setting up database connections and writing SQL queries within UCCX scripts. Additionally, Finesse desktop layout configuration will vary depending on your specific Finesse version and setup.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2023 17:32:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/devnet-general-discussions/display-caller-id-name-on-finesse-desktop/m-p/4933573#M2098</guid>
      <dc:creator>sufianbaloch7867</dc:creator>
      <dc:date>2023-10-03T17:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Display Caller ID Name on Finesse Desktop</title>
      <link>https://community.cisco.com/t5/devnet-general-discussions/display-caller-id-name-on-finesse-desktop/m-p/5012167#M2231</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/1567124"&gt;@Ekmal&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Still facing the issue?All sorted?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2024 18:58:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/devnet-general-discussions/display-caller-id-name-on-finesse-desktop/m-p/5012167#M2231</guid>
      <dc:creator>Ruben Cocheno</dc:creator>
      <dc:date>2024-02-02T18:58:44Z</dc:date>
    </item>
  </channel>
</rss>

