Search found 9 matches

by Soldos81
21 Jan 2019, 18:56
Forum: Howtos
Topic: List All QUEUES THAT a Ticket HAD.... Yes is possible
Replies: 0
Views: 12176

List All QUEUES THAT a Ticket HAD.... Yes is possible

Hi, After the request of a manager, we arrived at a query that gave us the desired output. You have been asked to list all the queues in which each ticket has passed. the result was: Basically we get the first QUEUE (no MOVE Action) on ticket creation, and the rest, identify each queue with the time...
by Soldos81
07 Jan 2019, 12:43
Forum: General
Topic: Filter by Empty field
Replies: 2
Views: 2541

Re: Filter by Empty field

Hi there..

It look's like an easy notification setting:
On stateUpdate and Dynamic filed Update(identify the field) -Send Notification..

you can make 2 diferent notifications, one for each trigger.
by Soldos81
24 Dec 2018, 18:20
Forum: General
Topic: [SOLVED] Query No Moved Ticket's - Little Help!!
Replies: 1
Views: 2129

Re: Query No Moved Ticket's - Little Help!!

Hey... I managed to get the info I need... just for reference.. if anyone need something similar.. select distinct(otrsprd.th.ticket_id),t.tn as 'Nº Ticket', q.name as Fila, t.title as Assunto, t.create_time as 'Data_Criação', th.create_time 'Passado a resolved em', s.name as Serviço from ticket_his...
by Soldos81
24 Dec 2018, 14:01
Forum: General
Topic: [SOLVED] Query No Moved Ticket's - Little Help!!
Replies: 1
Views: 2129

[SOLVED] Query No Moved Ticket's - Little Help!!

HI, I am trying, without great success, to make a QUERY, where I want to get only the tikcet's that have not been moved to any QUEUE. The tickets are opened, by default in the Service Desk queue, and if they are resolved immediately (Fist Time Fix), they are not forwarded to any technical queues. I ...
by Soldos81
09 Oct 2017, 17:19
Forum: General
Topic: Track Time on Each queue until close
Replies: 3
Views: 12273

Re: Track Time on Each queue until close

Yep... thanks... That was my suspicion.. However, for now, the previous query that i posted is getting the job done.(adding + 1 hours of pivot tables im Excel...) As soon as i manage to get more time to search, maybe with temporary tables, just maybe, i can transform in the output that i want.. I'm ...
by Soldos81
04 Oct 2017, 15:07
Forum: General
Topic: Track Time on Each queue until close
Replies: 3
Views: 12273

Re: Track Time on Each queue until close

I have managed to advance whit another direction. get code on other, otterhub post, and change a little to my intent. My issue now is to separate the queue's by row.. SELECT th.id, ts.name state, t.tn as 'Ticket_Number', th.name fromto, th.create_time createtime, -- th.ticket_id ticket_id, COALESCE(...
by Soldos81
04 Oct 2017, 14:54
Forum: General
Topic: track time by ticket state
Replies: 25
Views: 51419

Re: track time by ticket state

Add -> t.tn as 'Ticket_Number', in the first select and LEFT JOIN ticket t ON t.id = th.ticket_id on the last from... we use: SELECT th.id, ts.name state, t.tn as 'Ticket_Number', th.name fromto, th.create_time createtime, -- th.ticket_id ticket_id, COALESCE((SELECT th2.create_time FROM ticket_histo...
by Soldos81
04 Oct 2017, 12:15
Forum: General
Topic: Filter client queues
Replies: 2
Views: 10453

Re: Filter client queues

Yes,
ACl's is the best way....
even to hide menu's from user/roles
Ex in attachment...
by Soldos81
04 Oct 2017, 12:11
Forum: General
Topic: Track Time on Each queue until close
Replies: 3
Views: 12273

Track Time on Each queue until close

Hi, I have a challenge.. I'm trying to get by mysql the time tat one ticket spends on each queue, until state = closed: Example: -> Ticket 123456 -> Open on queue Entry after Xminutes moved to Queue Websphere -> Queue Websphere after X minutes moved to Queue Aproval -> Aproval state=closed after X m...