<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>Screenpop using BAAcountNumber</title>
  <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=13017214" />
  <subtitle>Screenpop using BAAcountNumber</subtitle>
  <id>http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=13017214</id>
  <updated>2013-05-18T10:02:06Z</updated>
  <dc:date>2013-05-18T10:02:06Z</dc:date>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13340115" />
    <author>
      <name>Harishankar Venkatesan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13340115</id>
    <updated>2013-03-21T11:38:50Z</updated>
    <published>2013-03-21T11:38:50Z</published>
    <summary type="html">Hi David,
Thanks a lot. It works on the dialog change.
 
Thanks
Hari</summary>
    <dc:creator>Harishankar Venkatesan</dc:creator>
    <dc:date>2013-03-21T11:38:50Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13333584" />
    <author>
      <name>Arul Selvan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13333584</id>
    <updated>2013-03-21T09:15:01Z</updated>
    <published>2013-03-21T09:09:36Z</published>
    <summary type="html">[quote=David Lender]The only other thing I can think of is that maybe the initial dialog object does not have the BA Variables in it and the BA variables come in a subsequent Dialog update. You can check this out by reviewing all the Dialog updates in the console that are logged by the CallControl gadget. Try doing the screenpop on a subsequent dialog update after the initial handleNewDialog by adding a dialog change handler like this: dialog.addHandler('change', _processCall);   then add a  _processCall function to display the callvars.        [/quote]
 
[i]Thanks lot David i am able to get inside _processCall[/i]</summary>
    <dc:creator>Arul Selvan</dc:creator>
    <dc:date>2013-03-21T09:09:36Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13317588" />
    <author>
      <name>David Lender</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13317588</id>
    <updated>2013-03-20T21:48:44Z</updated>
    <published>2013-03-20T21:48:44Z</published>
    <summary type="html">The only other thing I can think of is that maybe the initial dialog object does not have the BA Variables in it and the BA variables come in a subsequent Dialog update.

You can check this out by reviewing all the Dialog updates in the console that are logged by the CallControl gadget.
Try doing the screenpop on a subsequent dialog update after the initial handleNewDialog by adding a dialog change handler like this:

dialog.addHandler('change', _processCall);
 
then add a  _processCall function to display the callvars.
 
 </summary>
    <dc:creator>David Lender</dc:creator>
    <dc:date>2013-03-20T21:48:44Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13303832" />
    <author>
      <name>David Lender</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13303832</id>
    <updated>2013-03-20T16:57:28Z</updated>
    <published>2013-03-20T16:57:28Z</published>
    <summary type="html">[color=#1f497d]I am baffled.  [/color]I looked at the javascript for CallControl.js  (you can look at this too in the debugger) and it has this code for displaying the BA variables:
 
[color=#1f497d] [/color]
 
[color=#1f497d]var callvars, columns, headerMPName, headerMPValue = "", partRows, callType = dialog.getCallType(), count, callCheckValue, BANames, BAStatus;[/color]
 
[color=#1f497d]if (_layoutMap) {[/color]
 
[color=#1f497d]BANames = ["AccountNumber", "BuddyName", "Campaign", "DialedListID", "Response", "Status", "TimeZone"];[/color]
 
[color=#1f497d]callvars = dialog.getMediaProperties();[/color]
 
[color=#1f497d]columns = _layoutMap.columns;[/color]
 
[color=#1f497d]headerMPName = _layoutMap.header.mediaProperty;[/color]
 
[color=#1f497d]if (headerMPName) {[/color]
 
[color=#1f497d]headerMPValue = callvars[headerMPName];[/color]
 
[color=#1f497d]}[/color]
 
[color=#1f497d]BAStatus = "BAStatus";[/color]
 
[color=#1f497d]if(callvars.BAStatus) {[/color]
 
[color=#1f497d]_showBA = true;[/color]
 
[color=#1f497d]}[/color]
 
[color=#1f497d]else {[/color]
 
[color=#1f497d]_showBA = false;[/color]
 
[color=#1f497d]}[/color]
 
[color=#1f497d] [/color][color=#1f497d]So the callcontrol gadget is using callvars.BAStatus to determine whether or not to display the BA variables.[/color]
 [color=#1f497d]Since in your environment the call control gadget IS displaying the BA variables, the gadget must be checking the BAStatus variable, but I don’t see the BAStatus variable in your console output.[/color]
 [color=#1f497d]Also, your participant actions are null and with the dialog state of “Alerting” there should be an “ANSWER” action available[/color]
 [color=#1f497d]Can you try answering the call first and then showing me the Dialog display from the CallControl gadget from the console?[/color][color=#1f497d] [/color]
 [color=#1f497d]It should look like: [/color]
 
12:49:20: CallControl : [ClientServices] {"content":"/finesse/api/User/41005/Dialogs&lt;Update&gt;\n  &lt;data&gt;\n    &lt;dialogs&gt;\n      &lt;Dialog&gt;\n        &lt;associatedDialogUri&gt;&lt;/associatedDialogUri&gt;\n        &lt;fromAddress&gt;41006&lt;/fromAddress&gt;\n        &lt;id&gt;16785433&lt;/id&gt;\n        &lt;mediaProperties&gt;\n          &lt;DNIS&gt;41005&lt;/DNIS&gt;\n          &lt;callType&gt;AGENT_INSIDE&lt;/callType&gt;\n          &lt;callvariables&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable1&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable2&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable3&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable4&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable5&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable6&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable7&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable8&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable9&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n            &lt;CallVariable&gt;\n              &lt;name&gt;callVariable10&lt;/name&gt;\n              &lt;value&gt;&lt;/value&gt;\n            &lt;/CallVariable&gt;\n          &lt;/callvariables&gt;\n          &lt;dialedNumber&gt;41005&lt;/dialedNumber&gt;\n        &lt;/mediaProperties&gt;\n        &lt;mediaType&gt;Voice&lt;/mediaType&gt;\n        &lt;participants&gt;\n          &lt;Participant&gt;\n            &lt;actions&gt;\n              &lt;action&gt;ANSWER&lt;/action&gt;\n            &lt;/actions&gt;\n            &lt;mediaAddress&gt;41005&lt;/mediaAddress&gt;\n            &lt;mediaAddressType&gt;AGENT_DEVICE&lt;/mediaAddressType&gt;\n            &lt;state&gt;ALERTING&lt;/state&gt;\n            &lt;stateCause&gt;&lt;/stateCause&gt;\n          &lt;/Participant&gt;\n          &lt;Participant&gt;\n            &lt;actions&gt;\n              &lt;action&gt;UPDATE_CALL_DATA&lt;/action&gt;\n              &lt;action&gt;DROP&lt;/action&gt;\n            &lt;/actions&gt;\n            &lt;mediaAddress&gt;41006&lt;/mediaAddress&gt;\n            &lt;mediaAddressType&gt;AGENT_DEVICE&lt;/mediaAddressType&gt;\n            &lt;state&gt;INITIATED&lt;/state&gt;\n            &lt;stateCause&gt;&lt;/stateCause&gt;\n          &lt;/Participant&gt;\n        &lt;/participants&gt;\n        &lt;state&gt;ALERTING&lt;/state&gt;\n        &lt;toAddress&gt;41005&lt;/toAddress&gt;\n        &lt;uri&gt;/finesse/api/Dialog/16785433&lt;/uri&gt;\n      &lt;/Dialog&gt;\n    &lt;/dialogs&gt;\n  &lt;/data&gt;\n  &lt;event&gt;POST&lt;/event&gt;\n  &lt;requestId&gt;&lt;/requestId&gt;\n  &lt;source&gt;/finesse/api/User/41005/Dialogs&lt;/source&gt;\n&lt;/Update&gt;"</summary>
    <dc:creator>David Lender</dc:creator>
    <dc:date>2013-03-20T16:57:28Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13301914" />
    <author>
      <name>Arul Selvan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13301914</id>
    <updated>2013-03-20T16:19:36Z</updated>
    <published>2013-03-20T16:18:50Z</published>
    <summary type="html">[quote=David Lender] Arul Selvan: Hi, I am also facing similar issue unable to take outbound variable BAStatus, BABuddyName, BAAccountNumber  using dialog.getData().mediaProperties inside NewDialog but other call variables(variable 1-10) able to get. handleNewDialog = [color=blue]function[/color] (dialog) {         mpData = dialog.getData().mediaProperties;         console.log("Call Variables:" + JSON.stringify(mpData)); }     Thanks, --Arul   Arul, are you seeing the BA variables in the CallControl gadget?  If you are, you can look at the console in the debugger and see the contents of the Dialog object.  Can you copy and paste that here?[/quote]   Thanks for your quick response. Yes i am able to see in callcontrol gadget. but unable to get in the getmediaPropery method inside NewHandleDialog but from xml response i am able to see the values: Console Logs: -------------------   dialog.getData().mediaProperties Response: Call Variables:{"associatedDialogUri":null,"fromAddress":null,"id":"2130706443","mediaProperties":{"DNIS":"4107","callType":"OUTBOUND_PREVIEW","callvariables":{"CallVariable":[{"name":"callVariable1","value":null},{"name":"callVariable2","value":null},{"name":"callVariable3","value":null},{"name":"callVariable4","value":null},{"name":"callVariable5","value":null},{"name":"callVariable6","value":null},{"name":"callVariable7","value":null},{"name":"callVariable8","value":null},{"name":"callVariable9","value":null},{"name":"callVariable10","value":null}]},"dialedNumber":"3015"},"mediaType":"Voice","participants":{"Participant":{"actions":null,"mediaAddress":"4107","mediaAddressType":"AGENT_DEVICE","state":"ALERTING","stateCause":null}},"state":"ALERTING","toAddress":"4107","uri":"/finesse/api/Dialog/2130706443"}   XML Response:                   961084588       2130706436               4107         OUTBOUND_PREVIEW                               callVariable1                                             callVariable2                                             callVariable3                                             callVariable4                                             callVariable5                                             callVariable6                                             callVariable7                                             callVariable8                                             callVariable9                                             callVariable10                                             BACampaign             fareportal_preview                                 BAStatus             PREVIEW_OUTBOUND_RESERVATION                                 BAAccountNumber                                             BAResponse                                             BADialedListID             66                                 BATimeZone             +00330                                 BABuddyName             ,santhosh                           3015             Voice                                     UPDATE_CALL_DATA             CLOSE             ACCEPT             REJECT                     4107           AGENT_DEVICE           ACTIVE                               ACTIVE       4107       /finesse/api/Dialog/2130706436         PUT     /finesse/api/Dialog/2130706436   Thanks, --Arul Selvan  </summary>
    <dc:creator>Arul Selvan</dc:creator>
    <dc:date>2013-03-20T16:18:50Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13299217" />
    <author>
      <name>David Lender</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13299217</id>
    <updated>2013-03-20T15:05:24Z</updated>
    <published>2013-03-20T14:59:20Z</published>
    <summary type="html">[quote=Arul Selvan]Hi, I am also facing similar issue unable to take outbound variable BAStatus, BABuddyName, BAAccountNumber  using dialog.getData().mediaProperties inside NewDialog but other call variables(variable 1-10) able to get. handleNewDialog = [color=blue]function[/color] (dialog) {         mpData = dialog.getData().mediaProperties;         console.log("Call Variables:" + JSON.stringify(mpData)); }     Thanks, --Arul[/quote]   Arul, are you seeing the BA variables in the CallControl gadget?  If you are, you can look at the console in the debugger and see the contents of the Dialog object.  Can you copy and paste that here?</summary>
    <dc:creator>David Lender</dc:creator>
    <dc:date>2013-03-20T14:59:20Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13298875" />
    <author>
      <name>David Lender</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13298875</id>
    <updated>2013-03-20T14:50:18Z</updated>
    <published>2013-03-20T14:50:18Z</published>
    <summary type="html">Looks like my original reply didnt get posted. I looked at your screen shots, you don't have anything defined in CallVariable1 which is why your screenpop has null.
As for why BAAccountNumber says undefined, I would need to look at your gadget javascript.  I think You should be specifying callvars["BAAccountNumber"]   To determine how the BAAccountNumber callvar is defined, you can use poster to get the MediaPropertiesLayout.  
[url=http://&lt;host&gt;/finesse/api/User/&lt;User&gt;/MediaPropertiesLayout]http://&lt;host&gt;/finesse/api/User/&lt;User&gt;/MediaPropertiesLayout[/url]
for example
 
[url=http://10.201.64.83/finesse/api/User/41005/MediaPropertiesLayout]http://10.201.64.83/finesse/api/User/41005/MediaPropertiesLayout[/url]
 
from that I got the layout which shows:
&lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;&lt;MediaPropertiesLayout&gt;&lt;header&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 1&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable1&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;/header&gt;&lt;column&gt;&lt;entry&gt;&lt;displayName&gt;BA AccountNumber&lt;/displayName&gt;&lt;mediaProperty&gt;BAAccountNumber&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;BA Campaign&lt;/displayName&gt;&lt;mediaProperty&gt;BACampaign&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 1&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable1&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 2&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable2&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 3&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable3&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 4&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable4&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 5&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable5&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;/column&gt;&lt;column&gt;&lt;entry&gt;&lt;displayName&gt;BA Status&lt;/displayName&gt;&lt;mediaProperty&gt;BAStatus&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;BA Response&lt;/displayName&gt;&lt;mediaProperty&gt;BAResponse&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 6&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable6&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 7&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable7&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 8&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable8&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 9&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable9&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;entry&gt;&lt;displayName&gt;Call Variable 10&lt;/displayName&gt;&lt;mediaProperty&gt;callVariable10&lt;/mediaProperty&gt;&lt;/entry&gt;&lt;/column&gt;&lt;/MediaPropertiesLayout&gt;
 
So that verifies that the name of the mediaproperty is BAAccountNumber at least on my system.
I dont have Outbound option installed in my lab so I can't test it for you, but I am pretty sure you should be specifying callvars["BAAccountNumber"] in your gadget javascript.
Can you post your gadget javascript?
 
 
 
 </summary>
    <dc:creator>David Lender</dc:creator>
    <dc:date>2013-03-20T14:50:18Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13297336" />
    <author>
      <name>Arul Selvan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13297336</id>
    <updated>2013-03-20T14:36:52Z</updated>
    <published>2013-03-20T14:35:32Z</published>
    <summary type="html">Hi,
I am also facing similar issue unable to take outbound variable BAStatus, BABuddyName, BAAccountNumber  using dialog.getData().mediaProperties inside NewDialog but other call variables(variable 1-10) able to get.
handleNewDialog = [color=blue]function[/color] (dialog) {        
mpData = dialog.getData().mediaProperties;        
console.log("Call Variables:" + JSON.stringify(mpData));
}  
 
Thanks,
--Arul</summary>
    <dc:creator>Arul Selvan</dc:creator>
    <dc:date>2013-03-20T14:35:32Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13297071" />
    <author>
      <name>Harishankar Venkatesan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13297071</id>
    <updated>2013-03-20T14:21:56Z</updated>
    <published>2013-03-20T14:21:56Z</published>
    <summary type="html">Hi David,
 
Any updates??
 
Thanks
Hari</summary>
    <dc:creator>Harishankar Venkatesan</dc:creator>
    <dc:date>2013-03-20T14:21:56Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13062826" />
    <author>
      <name>Harishankar Venkatesan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13062826</id>
    <updated>2013-03-15T06:16:43Z</updated>
    <published>2013-03-15T06:16:43Z</published>
    <summary type="html">Hi David, Thanks for the response. I am able to use the Screenpop gadget but the value of the CallVariable1 is displayed as [b]NULL on the search screen  . [/b]Instead of CallVarible1 if i use BAAccountNumber it says "[b]undefined[/b]". i have attached the screenshots for your reference. In addition to this, i am also attaching the Finesse javascript js file for your reference. Please let me know if i am doing anything wrong.   Thanks Hari</summary>
    <dc:creator>Harishankar Venkatesan</dc:creator>
    <dc:date>2013-03-15T06:16:43Z</dc:date>
  </entry>
  <entry>
    <title>RE: Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13030288" />
    <author>
      <name>David Lender</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13030288</id>
    <updated>2013-03-14T16:37:40Z</updated>
    <published>2013-03-14T16:36:03Z</published>
    <summary type="html">Are you able to use the Screenpop sample gadget and display Callvariable1 in the search? 
Dialog.getMediaProperties should return an array of the Callvariables and ECC variables. Are you saying  your mediaproperties array is totally empty, there are no standard Callvariables either?  Are you using the 9.1(1) version of the Finesse javascript library?</summary>
    <dc:creator>David Lender</dc:creator>
    <dc:date>2013-03-14T16:36:03Z</dc:date>
  </entry>
  <entry>
    <title>Screenpop using BAAcountNumber</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13017213" />
    <author>
      <name>Harishankar Venkatesan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=13017213</id>
    <updated>2013-03-14T12:00:46Z</updated>
    <published>2013-03-14T12:00:46Z</published>
    <summary type="html">Hi,
We are trying to do a screenpop in Finesse using BAAccountNumber but unfortunately dialog.getMediaProperties() returns an empty array.
Finesse version used is 9.1. Are we missing something? Please let us know.
Note : we could see the value of BAAccountNumber, BABuddyName, Campaign etc in the callcontrol jsp page
 
Thanks
Hari
 </summary>
    <dc:creator>Harishankar Venkatesan</dc:creator>
    <dc:date>2013-03-14T12:00:46Z</dc:date>
  </entry>
</feed>

