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!
Different states for different Companies/Groups(/Customers)
Moderator: crythias
-
- 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
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 ?
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 ?
-
- 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
Thank you for your reply.
How can I use ACL for this?
How can I use ACL for this?
-
- 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
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.
I will try it out but it seems to be the solution.
-
- 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
Here is a small example:
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
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'],
},
},
};
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 ?
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 ?
-
- 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
Thank you, we found the same faq at the same time. I will look into this.