Topic Last Modified: 2013-02-22

The Response Group application provides a way for Microsoft Lync Server 2013 to answer and route phone calls based on the number that was dialed and, optionally, on the caller's responses to a series of questions. Typically, Response Group calls are not routed to an individual person but, instead, are routed to a team of people referred to as an agent group. For example, if someone calls the phone number for your help desk, Lync Server 2013 can automatically route that call to the first available help desk agent. Alternatively, Lync Server could ask a series of questions ("Press 1 if you are having hardware problems. Press 2 if you are having software problems. Press 3 if you are having network problems.") and then route the call to the most appropriate help desk agent based on the answer to those questions.

The Response Group Call List Report represents a collection of calls made for a specified period of time and for a specified type of call. The Response Group Usage Report (which must be opened first before you can open the Response Group Call List Report) recognizes the following call types:

Accessing the Response Group Call List Report

The Response Group Call List Report can only be accessed by clicking one of the following metrics found on the Response Group Usage Report:

  • Received calls

  • Successful calls

  • Offered calls

  • Answered calls

  • Transferred calls

Making the Best Use of the Response Group Call List Report

The Response Group Call List Report allows you to limit the displayed data to calls involving a particular Response Group workflow. To do that, you need to enter the workflow URI (the workflow's SIP address) in the Workflow URI box. Before you can do that, however, you must actually be able to see the Workflow URI box. To display the filtering options for the Response Group Call List Report, click the Show/Hide Parameters button in the upper left-hand portion of the report window.

Note that the Response Group Call List does not display information about either the Response code or the Diagnostic ID if you hold the mouse over either of those metrics. If you need more information, you might note the Response code and/or Diagnostic ID, and then search for those values in the Top Failures Report.

a question like this one: "Which individual workflow received the most calls?", you can do the following:

  1. On the Response Group Usage Report, set the desired time period and then click the Received Calls metric. That will open the Response Group Call List Report.

  2. Export the data shown on the Response Group Call List Report. For example, you might export the data in Microsoft Excel format, and then use Excel to convert that data to a comma-separated values file.

  3. Run your analyses using Windows PowerShell.

For example, if you have saved the data to a file named C:\Data\Response_Group_Call_List_Report.csv, you can then use the following command to return the total number of received calls for each workflow listed in the report:

Copy Code
$calls = Import-Csv -Path "C:\ Data\Response_Group_Call_List_Report.csv"
$calls | Group-Object Workflow | Select-Object Count, Name | Sort-Object Count -Descending

That will information similar to this:

Copy Code
Count	Name
-----	----
  160	Redmond Help Desk
   47	Dublin Help Desk
   31	North America Customer Support
   16	EMEA Customer Support
   14	Employment Opportunities

Filters

Filters provide a way for you to return a more finely-targeted set of data or to view the returned data in different ways. The following table lists the filters that you can use with the Response Group Call List Report.

Response Group Call List Report Filters

Name Description

From

Start date/time for the time range. To view data by hours, enter both the start date and time as follows:

7/7/2012 1:00 PM

If you do not enter a start time, the report automatically begins at 12:00 AM on the specified day. To view data by day, enter just the date:

7/7/2012

To view by week or by month, enter a date that falls anywhere within the week or month that you want to view (you do not have to enter the first day of the week or month):

7/3/2012

Weeks always run from Sunday through Saturday.

To

End date/time for the time range. To view data by hours, enter both the end date and time as follows:

7/7/2012 1:00 PM

If you do not enter an end time, the report automatically ends at 12:00 AM on the specified day. To view data by day, enter just the date:

7/7/2012

To view by week or by month, enter a date that falls anywhere within the week or month that you want to view (you do not have to enter the first day of the week or month):

7/3/2012

Weeks always run from Sunday through Saturday.

Workflow URI

Enables you to limit the returned data to the specified Response Group workflow. To use this filter, enter the Workflow SIP address. For example:

sip:helpdesk@litwareinc.com

Calls

You can select one of the following call types:

  • Received Calls

  • Successful Calls

  • Offered Calls

  • Answered Calls

  • Transferred Calls

Metrics

The following table lists the information provided in the Response Group Call List Report for each call received by the Response Group application.

Response Group Call List Report Metrics

Name Can you sort on this item? Description

Caller

No

SIP address of the caller.

Workflow

No

SIP address of the Response Group workflow.

Start time

No

Date and time that the call started.

End time

No

Date and time that the call ended.

Response code

No

SIP response code sent when the session failed.

Diagnostic ID

No

Unique identifier (in the form of an ms-diagnostics header) attached to a SIP message that often provides information useful in troubleshooting errors.