Different states for different Companies/Groups(/Customers)

Moderator: crythias

Locked
Nicsoft
Znuny newbie
Posts: 53
Joined: 12 Aug 2010, 14:58
Znuny Version: 2.4
Location: Stockholm
Contact:

Different states for different Companies/Groups(/Customers)

Post by Nicsoft »

Hi!

I am using OTRS:ITSM 3.0.1.

I want to configure different states for different companies in a multi-company setup. Usually, different companies have different needs for states. I want to do this for Incident, Problem and Change. I couldn't find anything about this in the OTRS documentation.

How do I do this?

Thank you in advance!
root
Administrator
Posts: 4254
Joined: 18 Dec 2007, 12:23
Znuny Version: Znuny and Znuny LTS
Real Name: Roy Kaldung
Company: Znuny
Contact:

Re: Different states for different Companies/Groups(/Custome

Post by root »

Probably an ACL will be your friend.
Znuny and Znuny LTS running on CentOS / RHEL / Debian / SLES / MySQL / PostgreSQL / Oracle / OpenLDAP / Active Directory / SSO

Use a test system - always.

Do you need professional services? Check out https://www.znuny.com/

Do you want to contribute or want to know where it goes ?
Nicsoft
Znuny newbie
Posts: 53
Joined: 12 Aug 2010, 14:58
Znuny Version: 2.4
Location: Stockholm
Contact:

Re: Different states for different Companies/Groups(/Custome

Post by Nicsoft »

Thank you for your reply.

How can I use ACL for this?
Nicsoft
Znuny newbie
Posts: 53
Joined: 12 Aug 2010, 14:58
Znuny Version: 2.4
Location: Stockholm
Contact:

Re: Different states for different Companies/Groups(/Custome

Post by Nicsoft »

I think I found the answer here (point 3 and 4): http://faq.otrs.org/otrs/public.pl?Acti ... &ItemID=68

I will try it out but it seems to be the solution.
root
Administrator
Posts: 4254
Joined: 18 Dec 2007, 12:23
Znuny Version: Znuny and Znuny LTS
Real Name: Roy Kaldung
Company: Znuny
Contact:

Re: Different states for different Companies/Groups(/Custome

Post by root »

Here is a small example:

Code: Select all

# ticket acl
$Self->{TicketAcl}->{'ACL-Name-2'} = {
   # match properties
   Properties => {
   # current ticket match properties
      Ticket => {
      Queue => ['Company1'],
   }
 },
 # return possible options (white list)
 Possible => {
   # possible ticket options (white list)
   Ticket => {
     Type => ['Icindent', 'Change'],
   },
 },
};
You can retrieve the available ticket types from Type in the admin area.

Also check this wiki post http://faq.otrs.org/otrs/public.pl?Acti ... &ItemID=68 and give it a try

hth, Roy
Znuny and Znuny LTS running on CentOS / RHEL / Debian / SLES / MySQL / PostgreSQL / Oracle / OpenLDAP / Active Directory / SSO

Use a test system - always.

Do you need professional services? Check out https://www.znuny.com/

Do you want to contribute or want to know where it goes ?
Nicsoft
Znuny newbie
Posts: 53
Joined: 12 Aug 2010, 14:58
Znuny Version: 2.4
Location: Stockholm
Contact:

Re: Different states for different Companies/Groups(/Custome

Post by Nicsoft »

Thank you, we found the same faq at the same time. I will look into this.
Locked