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

Report for SPAM

$
0
0
Does anyone know how I can report SPAM and who has set a ticket to SPAM?

Show all users from a specific email domain

$
0
0
Hello

Can you let me know how to generate the user list from a specified email domain please?

I can find this information by checking the user list under an organisation, but I need it in an exportable format that a KQL report will provide.

Report on ticket per team (dynamic staff)

$
0
0
Hi There,

I am trying to figure out how to create a report on tickets, but with a scope to a specific team only (staff)

I was hoping that the KQL could be written to select the desired ticket fields and use in the where clause something like "where 'Staff.staffgroupid' = ''TEAM BE" thus effectively only reporting on tickets of the TEAM BE only.

Tried playing around with a join on tickets and staff, but this does not seem possible. Does anybody have any tips here?

How to create report

$
0
0
We're using Kayako Classic and currently, a report is generated for tickets that are considered "On Hold"

With these however, every day, I have to update the ticket with a new auto response. My question is how to I create a report that will show me ones that either have the 1st response sent or no response?

Also, how can I tailor it for those with the 2nd? Or the 3rd?

Here is the query we're using now:

SELECT 'Tickets.Ticket Mask ID','Users.Fullname','' AS 'US/Ext', '' AS 'State/Country'...

How to create report

Create report by tag used

$
0
0
Morning,
My company sends way too many replies as follow ups to customers and I need to stagger the report so that we aren't flooding inboxes. My thought was to tag tickets at each step so that we could generate a report for specifically that tag and it would in turn keep us from overwhelming people with tickets - or setting up an auto responder where it would send a set response based on tag. My idea is as follows:

Ticket:
Initial reply --next day-->1st follow up--2 days later-->2nd follow...

Create report by tag used

Number of replies per ticket

$
0
0
I'm after a report that for a set date range will return the average number of staff replies per closed ticket.

That's for tickets that were closed within the date range.

KQL to count AVG length of staff reply (Ticket Posts.Contents)

$
0
0
Hi,

Need to check which staff writing most detailed answers.

Can someone help me with writing KQL ?

I did an expression like

SELECT AVG(LENGTH('Ticket Posts.Contents')), 'Users' FROM 'Tickets' WHERE 'Tickets.Resolved Date' <= Today() ORDER BY COUNT(*) DESC MULTIGROUP BY 'Tickets.Owner'

But it doesn't work properly.

I assume it's because there is no LENGTH function, or 'Ticket Posts.Contents' return an array so AVG(LENGTH(..)) can't handle with it fine or maybe I need to use 'Ticket Audit...

KQL to count AVG length of staff reply (Ticket Posts.Contents)

Crash when exporting

$
0
0
Hello everyone!

I need your help. I have a problem when I do report's export with a lot of strings and columns. :( If I export in xlsx - errow "HTTP ERROR 500". If I export in csv - it is not work (Data don't separate on columns. And I see html tag <br> in 'Ticket Posts.Contents').


My report:
SELECT 'Tickets.Ticket ID', 'Tickets.Department', 'Tickets.Owner', 'Tickets.Type', 'Tickets.Priority', 'Tickets.Creation Mode', 'Tickets.Creation Date', 'Tickets.Resolved Date', CUSTOMFIELD('Tickets',...

Crash when exporting

Time worked only showing one entry per department

$
0
0
Hi,

I'm running a report to show time worked grouped by department, but only seem to be seeing one entry per department rather than a commutative time. Does anyone have any ideas please?

SELECT 'tickets.department', 'Tickets.Ticket Mask ID', 'Tickets.Owner', 'Ticket Billing.Worker', 'Tickets.Subject', 'Tickets.Status', 'Tickets.Type', 'Ticket Billing.Time Spent' FROM 'Ticket Billing', 'Tickets' WHERE 'Ticket Billing.Creation Date' = thisWeek() ORDER BY 'Tickets.Ticket Mask ID' GROUP BY...

Time worked only showing one entry per department

Number of replies per ticket

$
0
0
I'm after a report that for a set date range will return the average number of staff replies per closed ticket.

That's for tickets that were closed within the date range.

Ticket Assignment Report

$
0
0
Hello,

When I ran the report below I get duplicates. Is there any way I can remove the duplicate ticket ?

I would only like to have one instance of the ticket when status was changed from --unassigned-- to --updated owner-- .

SELECT DISTINCT 'Tickets.Ticket Mask ID' AS 'TicketID', 'Ticket Audit Logs.Creation Date', 'Ticket Audit Logs. Actiontype', 'Ticket Audit Logs.Message' FROM 'Ticket Audit Logs' where 'Ticket Audit Logs.message' like 'Ticket owner changed from: -- Unassigned -- to:%' and...

Ticket Assignment Report

KSQL Edit - Ticket assignment

$
0
0
I am trying to figure out how to show only one specific Staff or department that change the ticket assignment. Below in ?????????? is where I am faulting to produce data.


SELECT DISTINCT 'Ticket Audit Logs.Creation Date', 'Tickets.Ticket ID', CUSTOMFIELD('Tickets', 'Classification'), 'Tickets.Owner', 'Tickets.User', 'Tickets.Subject', 'Ticket Audit Logs.Message' FROM 'Ticket Audit Logs' where 'Ticket Audit Logs.message' like 'Ticket owner changed from: -- Unassigned -- to:%' and 'Ticket owner...

KSQL Edit - Ticket assignment

Notes field??

$
0
0
Ive searched and searched, and it seems like there is no way to pull ticket notes into a report? is this true or am I missing something?

I found an old thread that said it was being worked on... but that was years and years ago. Seems odd that you cant.

Thanks!

get the whole history of tickets and the tickets that have the status open?

$
0
0
Hi,

I have two questions. When I make the query (SELECT * FROM ‚Tickets‘) don't get the whole history of tickets but only the last entries of tickets. What am I doing wrong?
And how can I even query the tickets that have the status open?

Thanks,
nunulili

Total replies by Staff of Open tickets only

$
0
0
Hey guys!
I'm trying to come up with a query that will show total number of replies per staff member/department, I want to have this only for Open tickets that they replied (disregarding the onholds). Tthe problem I'm facing is with mixing the criteria in Audit Logs "reply created" and "Ticket status changed from: Open". Here's the code I have for now:

SELECT COUNT(*) AS 'Total Replies'
FROM 'Ticket Audit Logs', 'Tickets'
WHERE 'Ticket Audit Logs.Creator' = 'Staff' AND 'Tickets.Creator' !=...

Total replies by Staff of Open tickets only

KQL - 2 tags requirement

$
0
0
Hello everyone, KQL and SQL noob here. :)

I'm trying to create a report based on tickets that have 2 specific tags.

I have created the below but it doesn't work.

SELECT 'Tickets.Ticket ID', 'Tickets.Creation Date', 'Tickets.Owner'
FROM 'Tickets', 'Tag Links'
WHERE 'Tag Links.Tag' IN ('wisdom','support')
ORDER BY 'Tickets.Creation Date'
MULTIGROUP BY 'Tag Links.Tag' Totalize by Count(*)

I want the report to contain the tickets that have both tags. If a ticket has only one of the above tags...

KQL - 2 tags requirement

Buy Passport,Driver License,IELTS,PMP,NEBOSH,PTE,TOEFL Certificate. Buy Undetected Counterfeit Money

$
0
0
Buy Passport,Driver License,IELTS,PMP,NEBOSH,PTE,TOEFL Certificate. Buy Undetected Counterfeit Money ( genuinedockies201@gmail.com )





Buy high quality Real Passports, Visas, Driver's License ,ID CARDS, Marriage certificates, Diplomas, Birth Certificates, Credit cards, Utility bills, Social Security cards, Resident permits, Death certificates, Seaman card e.t.c

We are a team of highly experienced and sophisticated IT professionals with many years of experience in producing...

Buy Passport,Driver License,IELTS,PMP,NEBOSH,PTE,TOEFL Certificate. Buy Undetected Counterfeit Money

Count of word or phrase in ticket contents

$
0
0
Hello,

Trying to see if I can create a report to show a count of how many tickets that have the contents of a specific word or phrase. For example:

SELECT COUNT(*) AS "Total" from 'Tickets' Where 'Tickets.Department' LIKE 'YDepartment'

instead:

SELECT COUNT(*) AS "Total" from 'Tickets' Where 'Tickets.Contents' LIKE 'Invalid Key'

There does not seem to be a mechanism to have a report pay attention to the contents of the ticket, rather, just higher (less verbose) sections; is that true?...

Count of word or phrase in ticket contents

https://www.nutritionfit.org/keto-max-800/

$
0
0
framework. Close by getting more fit, this program oketo max 800 r than guarantees change and upkeep in keto max 800 human body so keto max 800 effects of keto max 800 are kept up. amazon How does picking keto max 800 best results for keto max 800. Guaranteed works out obviously in setting of keto max 800 activities Endless people have fathomed this keto max 800 program and expanded colossal results from keto max 800 same. Visit keto max 800 authority site of keto max 800 program to take a...

https://www.nutritionfit.org/keto-max-800/

Count of word or phrase in ticket contents

$
0
0
Hello,

Trying to see if I can create a report to show a count of how many tickets that have the contents of a specific word or phrase. For example:

SELECT COUNT(*) AS "Total" from 'Tickets' Where 'Tickets.Department' LIKE 'YDepartment'

instead:

SELECT COUNT(*) AS "Total" from 'Tickets' Where 'Tickets.Contents' LIKE 'Invalid Key'

There does not seem to be a mechanism to have a report pay attention to the contents of the ticket, rather, just higher (less verbose) sections; is that true?...

Count of word or phrase in ticket contents
Viewing all 108 articles
Browse latest View live