Is it possible to filter ITSM Impact (FreeText14) per ACL?

Moderator: crythias

Locked
shostakovich
Znuny advanced
Posts: 146
Joined: 11 Apr 2011, 08:11
Znuny Version: 3.2.5

Is it possible to filter ITSM Impact (FreeText14) per ACL?

Post by shostakovich »

Hi,

I want to have some ITSM impact values not available in certain windows. To be precise, I do not want to have ITSM::Impact values visible in AgentTicketPhone that start with "SR".

Code: Select all

$Self->{TicketAcl}->{'ACL-Name-998'} = {
   # apply always, for testing
   Properties => {},
   PossibleNot => {
      Ticket => {TicketFreeText14 => ['[RegExp]^SR.*'],},
   },
};
Well, it matches, but in any case the Impact dropdown will not be fed with anything. Even if I use the following, nothing will appear in the impact dropdown list e.g. in AgentTicketPhone:

Code: Select all

   Possible => {
      Ticket => {TicketFreeText14 => ['[RegExp].*'],},
   },
Any ideas? TIA

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

Re: Is it possible to filter ITSM Impact (FreeText14) per AC

Post by crythias »

You could theoretically use my javascript/queue hack. http://forums.otrs.org/viewtopic.php?f=60&t=8032
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
shostakovich
Znuny advanced
Posts: 146
Joined: 11 Apr 2011, 08:11
Znuny Version: 3.2.5

Re: Is it possible to filter ITSM Impact (FreeText14) per AC

Post by shostakovich »

Thanks, I'll keep that option in mind, it may be useful for other ticket freetext situations. Meanwhile, I found a way to get rid of the respective Impact values, but thanks anyway.
Locked