Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

List members of a Pickup Group 1

Status
Not open for further replies.

gmail2

Programmer
Jun 15, 2005
987
IE
We've just moved over to call manager after having a meridian for years. We have extension mobility enabled, so users log onto whichever phone they need to work at (although in general this doesn't change that much). However, I can't find a way to find out who is in a particular pick up group. If I go to phones, and search for phones in a certain pickup group - it will tell me which phones that users from that pickup group are logged into. But it won't tell me the actual users that are logged into the phones unless I click on each one individually. Can anybody help with this at all?

Irish Poetry - Karen O'Connor
Get your Irish Poetry Published
Garten und Landschaftsbau
 
The best way is to go to each PUG and look for the dependancies
 
You can Query the SQL database!

Query list of members of Call Pickup Groups
-------------------------------------------
SELECT PickupGroup.Name AS [Call Pickup Group Name], NumPlan.DNOrPattern AS Members

FROM PickupGroup INNER JOIN

PickupGroupMember ON PickupGroup.pkid = PickupGroupMember.fkPickupGroup_Primary AND

PickupGroup.pkid = PickupGroupMember.fkPickupGroup_Member INNER JOIN

PickupGroupLineMap ON PickupGroup.pkid = PickupGroupLineMap.fkPickupGroup INNER JOIN

NumPlan ON PickupGroupLineMap.fkNumPlan_Line = NumPlan.pkid

ORDER BY PickupGroup.Name

Query list of Call Pickup Groups
--------------------------------
SELECT NumPlan.Description, NumPlan.DNOrPattern, RoutePartition.Name AS Partition

FROM NumPlan INNER JOIN

RoutePartition ON NumPlan.fkRoutePartition = RoutePartition.pkid

WHERE (NumPlan.tkPatternUsage = 4)

ORDER BY NumPlan.DNOrPattern


Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top