View Ticket ownership, responsible or lock in dashboard

Moderator: crythias

Locked
mrq
Znuny newbie
Posts: 7
Joined: 31 May 2010, 17:53
Znuny Version: 2.4.7

View Ticket ownership, responsible or lock in dashboard

Post by mrq »

Hello Again,

Is it possible to configure the dashboard to view tickets and the Agent associated with the ticket; either by ownership, responsible or who has it locked?

I've seen this feature in other helpdesk / service desk applications and would really like to know how it can be done in OTRS.

Any ideas, tips, tricks or configuration suggestions would be greatly appreciated.

mrq
OTRS 2.4.7 using mySQL on Linux openSUSE 11.2
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: View Ticket ownership, responsible or lock in dashboard

Post by crythias »

Edit AgentDashboardTicketGeneric.dtl (it's best to do this in your own theme.)
about line 53:

Code: Select all

          <td width="60%">
            <div title="$QData{"Title"}">$QData{"Title","70"}</div>
          </td>
          <td>$QData{"Owner"}</td> <!-- add this line -->
          <td>$QData{"Responsible"}</td> <!-- and maybe this line, too -->
          <td>$QData{"Time"}</td>

OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
watcher
Znuny newbie
Posts: 13
Joined: 09 Apr 2010, 13:02
Znuny Version: 2.4.7 + ITSM 1.3.2

Re: View Ticket ownership, responsible or lock in dashboard

Post by watcher »

Hi
it is possbile to show the CustomerCompany ??

This example does not work, and many others too like "Company, CustomerCompany, UserCompany.

Code: Select all

          <td>$QData{"CustomerCompanyName"}</td> 
Thank you
Produktiv: OTRS 2.4.7
TESTING : OTRS::ITSM 2.0.2 + Customizing & SIRIOS
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: View Ticket ownership, responsible or lock in dashboard

Post by crythias »

If the option you chose doesn't work, then it's not built-in.
I should note that Queue does work, though.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: View Ticket ownership, responsible or lock in dashboard

Post by crythias »

Did you try CustomerID?
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
mrq
Znuny newbie
Posts: 7
Joined: 31 May 2010, 17:53
Znuny Version: 2.4.7

Re: View Ticket ownership, responsible or lock in dashboard

Post by mrq »

cythias,
I finally had the chance to input your suggestion.

Worked like a charm

thanks again.

mrq
OTRS 2.4.7 using mySQL on Linux openSUSE 11.2
Cheesypuffs
Znuny newbie
Posts: 27
Joined: 20 Jun 2012, 10:50
Znuny Version: 3.1.6

Re: View Ticket ownership, responsible or lock in dashboard

Post by Cheesypuffs »

Hi

Now that we have this established, is it possible to filter only tickets by certain owner in the dashboard? I know you can do it using the search option but it is long winded and time consuming. Is there not a filter button on the dashboard itself for this?

I have an agent who only wants to see the tickets assigned to him and which are new/open

Thanks!
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: View Ticket ownership, responsible or lock in dashboard

Post by jojo »

there are already build in filters for your own (locked) tickets
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
Cheesypuffs
Znuny newbie
Posts: 27
Joined: 20 Jun 2012, 10:50
Znuny Version: 3.1.6

Re: View Ticket ownership, responsible or lock in dashboard

Post by Cheesypuffs »

And if we are not talking about locked tickets?

I am referring to open and new tickets which are NOT locked to the owner

Thanks
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: View Ticket ownership, responsible or lock in dashboard

Post by jojo »

As you wrote:
I have an agent who only wants to see the tickets assigned to him and which are new/open
This is exactly what is done by the dashboard
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
BrianYin
Znuny newbie
Posts: 76
Joined: 29 Aug 2012, 10:12
Znuny Version: 3.1.12

Re: View Ticket ownership, responsible or lock in dashboard

Post by BrianYin »

why this code does not work?

Code: Select all

<td>$QData{"UserFirstname"} $QData{"UserLastname"}</td>
it's different from owner.
when i changed owner to UserFirstname the dashboard turns out nothing, why is that?
is there the field name i can look for?
Thanks!
OTRS Version: 3.1.9
OS: windows 2003
ITSM 3.1.6
MySQL 5.xxx
Cheesypuffs
Znuny newbie
Posts: 27
Joined: 20 Jun 2012, 10:50
Znuny Version: 3.1.6

Re: View Ticket ownership, responsible or lock in dashboard

Post by Cheesypuffs »

Ok so I have enabled the My Responsibilities module in the Dashboard. However what I want is to see the tickets listed which are my responsibility (being the owner) but all I see are all tickets by each agent
BrianYin
Znuny newbie
Posts: 76
Joined: 29 Aug 2012, 10:12
Znuny Version: 3.1.12

Re: View Ticket ownership, responsible or lock in dashboard

Post by BrianYin »

Cheesypuffs wrote:Ok so I have enabled the My Responsibilities module in the Dashboard. However what I want is to see the tickets listed which are my responsibility (being the owner) but all I see are all tickets by each agent
there has your responsibility tickets in the Dashboard: my responsibility ; my queue ; all tickets
OTRS Version: 3.1.9
OS: windows 2003
ITSM 3.1.6
MySQL 5.xxx
Cheesypuffs
Znuny newbie
Posts: 27
Joined: 20 Jun 2012, 10:50
Znuny Version: 3.1.6

Re: View Ticket ownership, responsible or lock in dashboard

Post by Cheesypuffs »

OK, I see it now. However I am more interested in having the same as My Responsibilities but called "Owned Tickets". My responsibilities are not the same as tickets owned by me. In all other ticketing systems, I have been able to list all tickets owned by me (assigned to me). Is there a module just like My responsibilities which can be created in the dashboard which filters Owned tickets. I am sure it is possible given that My Responsibilities depends on the field Responsible.

Any ideas how to formulate it or where to look? (.pm, .dtl, etc)

Thanks
michaelsteib
Znuny newbie
Posts: 25
Joined: 23 Oct 2013, 14:12
Znuny Version: 3.2.11
Real Name: Michael Steib

Re: View Ticket ownership, responsible or lock in dashboard

Post by michaelsteib »

Hi
I am also interested in having a new button instead of OR like "my locked tickets" which is called "my owned ticket". This sould then show me only the tickets owned by me and all this for reminder tickets, new tickets and open tickets.

Would be great if someone can help here.

Thanks and best regards
michael
Locked