Search found 16 matches

by sunylkumar
23 Mar 2012, 03:04
Forum: Developers
Topic: OTRS Control Queue Visibility based on Group
Replies: 1
Views: 1006

OTRS Control Queue Visibility based on Group

Hi, I am trying to use groups to set visibility on queues: $Self->{TicketAcl}->{'ACL-Queues-Visibility'} = { # match properties Properties => { User => { Group_rw => ['Group1'], }, }, #Action - Possible => { Ticket => { Queue => ['G1',], }, }, }; $Self->{TicketAcl}->{'ACL-Queues-Visibility'} = { # m...
by sunylkumar
02 Mar 2012, 23:29
Forum: Developers
Topic: Dynamic Fields (3.1) Vs TicketFreeText (3.0)
Replies: 0
Views: 1233

Dynamic Fields (3.1) Vs TicketFreeText (3.0)

Hi, I am willing to upgrade my system to 3.1.1 but I am facing a problems with TicketFreeText fields from older version which are to be migrated to Dynamic Field implementation: The data is intact and displays exactly what its suppose to display but I don't know how to display a particular dynamic f...
by sunylkumar
11 Oct 2011, 01:16
Forum: Developers
Topic: Is it possible to enable follow up for the Cc field
Replies: 0
Views: 803

Is it possible to enable follow up for the Cc field

Hi,

Is it possible to enable follow-up for Cc field in "New email ticket" form so that emails listed in Cc field can receive ticket event notifications like new ticket, close ticket etc?
by sunylkumar
06 Oct 2011, 01:15
Forum: Developers
Topic: Adding additional colum to views
Replies: 3
Views: 1953

Adding additional colum to views

Hi,

Does anyone know how to add additional column (to populate data from free text field) to status View or Que Views?

Add column to views.jpg
by sunylkumar
05 Oct 2011, 23:40
Forum: Developers
Topic: Additional notification in New Phone Ticket
Replies: 2
Views: 1544

Re: Additional notification in New Phone Ticket

Hey thanks for your reply but ; separated email did not work in customer field.
by sunylkumar
05 Oct 2011, 01:09
Forum: Developers
Topic: Additional notification in New Phone Ticket
Replies: 2
Views: 1544

Additional notification in New Phone Ticket

Hi,

I want to add an email recipient box in New Phone Ticket for additional notifiers (if any).

I tried adding "To" and "Cc" fields from New Email Ticket form but it doesn't work. I need this field to be optional.

Is there a way to achieve this?

Please help.
by sunylkumar
03 Oct 2011, 21:44
Forum: Help
Topic: Is Freetext possible in iPhone app
Replies: 4
Views: 2548

Re: Is Freetext possible in iPhone app

I am having same problem. I dont see freetext fields in Compose View even if they are enabled in SysConf iphone settings. Also the key names for ticketfreetext don't reflect in Ticket View on iphone I just see TicketFreeText1,TicketFreeText2 etc..

Can any one help me with this?
by sunylkumar
30 Sep 2011, 22:20
Forum: Developers
Topic: ACL for Queue visibility per Group
Replies: 0
Views: 924

ACL for Queue visibility per Group

Hi, I am trying to achieve this condition: If a user belongs to a particular queue say 'X' then he/she should only be able to view queue 'Y' in phone ticket form in the dropdown; I have configured ACL like this: $Self->{TicketAcl}->{'ACL-Queues'} = { # match properties Properties => { User => { Grou...
by sunylkumar
05 Aug 2011, 00:31
Forum: Developers
Topic: Issue with TicketFreeText1 field
Replies: 2
Views: 1566

Re: Issue with TicketFreeText1 field

Never mind its resolved...The field works when you do $Data{"TicketFreeKeyField1"} <div class="Field"> $Data{"TicketFreeTextField1"} </div> <div class="Clear"></div> which generates/displays keyfield:valuefiled text boxes I was replacing $Data{"TicketFree...
by sunylkumar
04 Aug 2011, 02:11
Forum: Developers
Topic: Issue with TicketFreeText1 field
Replies: 2
Views: 1566

Issue with TicketFreeText1 field

Hi, I have added TicketFreeText1 to AgentTicketPhone.tdl, enabled it in SysConfig to Key=>ID, content => ID, but when I submit the ticket form it doesn't write it in database. Any ideas what I might be missing? I tried adding a hidden field in the form like <input type=hidden name="ID" id=...
by sunylkumar
27 Jul 2011, 00:29
Forum: Developers
Topic: Adding conditional filter to Generic Agent
Replies: 1
Views: 1416

Re: Adding conditional filter to Generic Agent

Never mind I am taking the freetextfield approach by creating a perl script that calculates the difference of current time and deadline and stores it in one of the free text fields also I setup a deadline index which keeps increasing at time passes. This deadline index then can be used in generic ag...
by sunylkumar
25 Jul 2011, 21:16
Forum: Developers
Topic: Adding conditional filter to Generic Agent
Replies: 1
Views: 1416

Adding conditional filter to Generic Agent

Hi, I was wondering if there is a way to add conditional filter to GenericAgent.pm, like say for example I have created a ticket deadline field using one of the TicketFreeTime fields on new phone Ticket form. Now I want to filter all the tickets who's deadline will be met in next 10 minutes, so my f...
by sunylkumar
20 Jul 2011, 02:57
Forum: Developers
Topic: How to Add a custom button to grab data from database
Replies: 7
Views: 6463

Re: How to Add a custom button to grab data from database

Here is what I did, The basic structure to construct these files can be found in OTRS manual at http://doc.otrs.org/developer/2.2/en/html/ch13.html There are mainly 4 files in play to create your own customized page/module. otrs/Kernel/output/HTML/standard/AgentHello.dtl - This is basically your htm...
by sunylkumar
19 Jul 2011, 22:53
Forum: Developers
Topic: How to Add a custom button to grab data from database
Replies: 7
Views: 6463

Re: How to Add a custom button to grab data from database

Thanks MichaelR ,

Got it working :)

Cheers!
by sunylkumar
18 Jul 2011, 20:38
Forum: Developers
Topic: How to Add a custom button to grab data from database
Replies: 7
Views: 6463

Re: How to Add a custom button to grab data from database

Thanks MichaelR , The only piece I am missing here is how do I make the click/submit button action to be able to listened by the perl module where I have the database connection ( Kernel/System/Hello.pm ). I trying hard to understand the framework but no clue what specifically I should be looking in...
by sunylkumar
16 Jul 2011, 02:55
Forum: Developers
Topic: How to Add a custom button to grab data from database
Replies: 7
Views: 6463

How to Add a custom button to grab data from database

Hi, I am new to OTRS I want to create a custom button on a page that calls perl module which in-turn will connect to the database grabbing required data formatting it into a table and displaying on the fronted. So far I managed to connect to the database and collect the data in a perl module but not...