Kayako logo
SupportSuite, eSupport and LiveResponse Discussion, troubleshooting and feedback related to Kayako's flagship support desk products SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
jon Offline
New Member
 
Posts: 15
Join Date: Nov 2005
Ticket Labels - 26-01-2007, 11:09 PM

Ticket Labels are great, but...

Deleting a ticket with a label doesn't always remove the swlabellink record and skews up the label counts. (referential integrity would have been helpful here) Usually deleting the orphaned record fixes the label count but that trick isn't working in the latest CVS build.

You can find the orphaned labellinks with the following query and then delete them.
Code:
; find orphaned ticket labels
select tll.ticketlabellinkid from swticketlabellinks tll left join swtickets t ON t.ticketid = tll.ticketid where t.ticketid is null

; delete them manually :(
delete from swticketlabellinks where ticketlabellinkid in (xxx, ..., xxx)
Another thing I noticed while trying to fix my label counts is the swticket.islabeld field...

I currently have about 28 tickets labeled, but looking at "select count(islabeled) from swtickets where islabeled = 1" gave me 120! No idea why they are not being un-'islabeled'.

Mass Action to remove labels doesn't work.

Deleting labels is possible, but not intuitive... Like right now, I cant remember where that function is :P

You can't change labels while replying to a ticket.

And most importantly, There is no way to search for tickets using label as a criteria. There is 'Flag' but not label. Maybe you could add labels to the flags dropdown like for mass actions, but I really think it deserves it's own category.

Last edited by jon; 26-01-2007 at 11:16 PM.
   
Reply With Quote
Reply

Tags
labels, ticket

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Free Create links in ticket emails that auto login and go to the ticket khoffman Modifications & Addon Releases 41 11-04-2008 03:04 AM
connection problem inteltechs InstaAlert 5 27-04-2006 12:23 AM
eSupport v2.2 RC1 Available in Members Area Varun Shoor Technical Chat 1 17-05-2004 01:28 PM



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46