ACL for Dynamic field of list type

Moderator: crythias

Locked
bhcuong2008
Znuny newbie
Posts: 10
Joined: 09 Mar 2013, 15:22
Znuny Version: 3.2.2
Real Name: Cuong
Company: N/A

ACL for Dynamic field of list type

Post by bhcuong2008 »

Hi,

I know this question is repeated in the forum. However, I still failed, so I need help.

In the free fields view (OTRS 3.2.2), I display a dynamic field of list type, ex:
key1 => val1, key2 => val2, key3 => val3

Depending on queues, I just want to show some values, such as,
queue A => show val1
queue B => show val2, val3

I've made an ACL as below (just for queue A)
=========
$Self->{TicketAcl}->{'ACL-Name-1'} = {
Properties => {
Ticket => {
Queue => ['A'],
},
},
Possible => {
Ticket => {
DynField1 => ['key1'],
},
},
};
=========

Please help me,
Thank you,
bhcuong2008
Znuny newbie
Posts: 10
Joined: 09 Mar 2013, 15:22
Znuny Version: 3.2.2
Real Name: Cuong
Company: N/A

Re: ACL for Dynamic field of list type

Post by bhcuong2008 »

Now, I found my issue, due to my mistake in reading document.
Locked