Quantcast
Channel: Kayako reports (Kayako Classic)
Viewing all 108 articles
Browse latest View live

Report of tickets including the body split per reply

$
0
0
Hi,

How would I write a report that returns the ticket number and all the ticket history (replies) split per reply. So example would be, I want the report to show the ticket number and the body, however if there was 5 replies on the ticket, I want the body field to split those replies.

Querying ticket contents for a specific word.

$
0
0
I would like to have the below code pull all tickets that both the subject field and ticket body content have using a keyword 'Radius'

Any help would be appreciated.

SELECT'Tickets.Creation Date','Tickets.Ticket Mask ID','Users.Fullname','tickets.type','tickets.subject','Tickets.Priority','Tickets.Status','Ticket Posts.Contents' from 'Ticket Posts'

Single instance of reported contents.

$
0
0
While my below is now running and generating instances of the selected contents keyword it's generating multiple entries of the same ticket in the report, every time it finds the keyword in the same ticket.

I am looking to limit the entries to just the first instance that it finds in the contents so i can get an accurate count of calls/emails on that keyword.

how do i limit it to just 1 reported instance per call/ticket.

SELECT'Tickets.Creation Date','Tickets.Ticket Mask...

Single instance of reported contents.

first time and who performed

$
0
0
I need to create a report that will show who the application was assigned to for the first time and who performed

Report with User Organization notes

$
0
0
Is it possible to create a report to identify all user organizations that have a note tha contain "xxxxx"?
Thank you in advance!

Daily Report on staff for both - Total Tickets Closed and Total Ticket Replies (open/closed)

$
0
0
Hello,

Hoping someone can help me with a dual report that shows two fields ;

Total Tickets resolved by staff
Total Replies made by staff

I have these working in two individual reports, but would be great to have one report showing both the data. Appreciate any help or guidance on this.

Here is my report for Total Replies;
Code:
SELECT COUNT(*) AS Total
FROM 'Ticket Posts'
WHERE'Ticket Posts.Creation Date' = Today()
AND 'Ticket Posts.Creator' = "Staff"
GROUP BY ('Tickets.Owner')
...

Daily Report on staff for both - Total Tickets Closed and Total Ticket Replies (open/closed)

Graph - Creation Date Week vs Closure Date Week

$
0
0
This is a report I use for Tickets Created over the past 3 months

Code:
SELECT COUNT(*) AS 'TOTALCREATED' FROM 'Tickets'

Where 'Tickets.Creation Date' > DATE_SUB(ThisWeek(),INTERVAL 12 Week)

Order By 'Tickets.Creation Date'desc
GROUP BY X('Tickets.Creation Date':Year),X('Tickets.Creation Date':Week), Y('TOTALCREATED')
And an almost identical report for Tickets Closed over the past 3 months;

Code:
SELECT COUNT(*) AS 'TOTALRESOLVED' FROM 'Tickets'

Where 'Tickets.Resolved Date' >...
Graph - Creation Date Week vs Closure Date Week

Wrong week in reports.

$
0
0
We have some reports where we present weeknumbers.
When we run them we get week 13 (It's week 14 in sweden now).
The datesetting in Kayako is sweden and date and time on tickets are correct.
Can anyone please guide me toward what might be wrong.

Viewing all 108 articles
Browse latest View live