Ticket type for queues

Moderator: crythias

Locked
jj99
Znuny newbie
Posts: 36
Joined: 11 Apr 2013, 16:31
Znuny Version: 2.3.4
Company: Student

Ticket type for queues

Post by jj99 »

Hi,

Is it possible to have separate ticket types for specific queues

e.g . Q1---> Type = Standard, Service , RFC
Q2----> Type = Information , ...

thanks
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Ticket type for queues

Post by crythias »

ACL
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
wurzel
Znuny guru
Posts: 3270
Joined: 08 Jul 2010, 22:25
Znuny Version: x.x.x
Real Name: Florian

Re: Ticket type for queues

Post by wurzel »

Hi,

you can use ACLs and I think there is a commercial feature add on from otrs.com that can do this in GUI.

Florian
OTRS 2025 SILVER (Prod)
OTRS 2025 auf Debian 12 (Test)
Znuny 7.x latest version testing auf Debian 12

-- Ich beantworte keine Forums-Fragen PN - No PN please

I won't answer to unfriendly users any more. A greeting and regards are just polite.
jj99
Znuny newbie
Posts: 36
Joined: 11 Apr 2013, 16:31
Znuny Version: 2.3.4
Company: Student

Re: Ticket type for queues

Post by jj99 »

hi I created a ACL but its not working,
I want this ACL to work when an Agent creates a phone or emial ticket.

Code: Select all

 $Self->{TicketAcl}->{'ACL-Name-2'} = {
        # match properties
        Properties => {
            # current ticket match properties
            Ticket => {
                Queue => ['Test'],
     
            }
        },
        # return possible options (white list)
        Possible => {
            # possible ticket options (white list)
            Ticket => {
                Type => ['Test'],
            },
        },
    };
thanks
wurzel
Znuny guru
Posts: 3270
Joined: 08 Jul 2010, 22:25
Znuny Version: x.x.x
Real Name: Florian

Re: Ticket type for queues

Post by wurzel »

Hi,

where do you put this ACL?
Do you use root@localhost user for testing?

Flo
OTRS 2025 SILVER (Prod)
OTRS 2025 auf Debian 12 (Test)
Znuny 7.x latest version testing auf Debian 12

-- Ich beantworte keine Forums-Fragen PN - No PN please

I won't answer to unfriendly users any more. A greeting and regards are just polite.
Locked