Customer-Group Relations

Moderator: crythias

Post Reply
nking
Znuny newbie
Posts: 35
Joined: 07 May 2012, 19:56
Znuny Version: OTRS 3.0
Real Name: Natalia King
Company: Lyons Consulting Group
Location: Chicago, Illinois
Contact:

Customer-Group Relations

Post by nking »

I am hoping to resolve this issue soon. Here is what happens:
When number of our customers exceeds 200, I can only see 200 in Customer-Group Relations tab. That means I can only set permissions for first 200 customers and the rest of them do not get displayed in these settings. Is there a way I can increase this number? Code? SysConfig?

Thank you.
OTRS 3.0, CentOS 5.5
jojo
Znuny guru
Posts: 15019
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: Customer-Group Relations

Post by jojo »

this needs to changed in the code.

But typically there is no need to use Customer Group assignment
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
nking
Znuny newbie
Posts: 35
Joined: 07 May 2012, 19:56
Znuny Version: OTRS 3.0
Real Name: Natalia King
Company: Lyons Consulting Group
Location: Chicago, Illinois
Contact:

Re: Customer-Group Relations

Post by nking »

Our customers all have different permissions, which is why I assign them to different groups. For example, some have 24/7 support and some do not... So I need to be able to assign new customers to a group that has permissions to access a queue that only 24/7 support customers have access to. Something like that.
OTRS 3.0, CentOS 5.5
jojo
Znuny guru
Posts: 15019
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: Customer-Group Relations

Post by jojo »

for this kind of config you should use Service/SLA which also can be assigned to customers
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
nking
Znuny newbie
Posts: 35
Joined: 07 May 2012, 19:56
Znuny Version: OTRS 3.0
Real Name: Natalia King
Company: Lyons Consulting Group
Location: Chicago, Illinois
Contact:

Re: Customer-Group Relations

Post by nking »

Yes, I realize that but at this point I will have to re-do all the settings. Person who set it all up is no longer employed with our company and he created most configurations.
OTRS 3.0, CentOS 5.5
nking
Znuny newbie
Posts: 35
Joined: 07 May 2012, 19:56
Znuny Version: OTRS 3.0
Real Name: Natalia King
Company: Lyons Consulting Group
Location: Chicago, Illinois
Contact:

Re: Customer-Group Relations

Post by nking »

I went to Manage Customer-Services Relations and it also limits me to 200 customers... So if I go with Services / SLA solution, it still won't solve my problem
OTRS 3.0, CentOS 5.5
jojo
Znuny guru
Posts: 15019
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: Customer-Group Relations

Post by jojo »

you can search for customers in the screen (if you have at least 3.0.x)
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
crythias
Moderator
Posts: 10169
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Customer-Group Relations

Post by crythias »

Check this thread as well: viewtopic.php?f=62&t=12487#p48841
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
nking
Znuny newbie
Posts: 35
Joined: 07 May 2012, 19:56
Znuny Version: OTRS 3.0
Real Name: Natalia King
Company: Lyons Consulting Group
Location: Chicago, Illinois
Contact:

Re: Customer-Group Relations

Post by nking »

jojo wrote:you can search for customers in the screen (if you have at least 3.0.x)
I guess for now I will really have to manually look for those customers who are not being displayed due to these 200 limitations. It is kind of inconvenient though and I am just not familiar with Perl to find where it might be changed in a code. I will keep looking though.
OTRS 3.0, CentOS 5.5
nking
Znuny newbie
Posts: 35
Joined: 07 May 2012, 19:56
Znuny Version: OTRS 3.0
Real Name: Natalia King
Company: Lyons Consulting Group
Location: Chicago, Illinois
Contact:

Re: Customer-Group Relations

Post by nking »

crythias wrote:Check this thread as well: viewtopic.php?f=62&t=12487#p48841
I looked at the thread but I cannot find where I make a change?
OTRS 3.0, CentOS 5.5
crythias
Moderator
Posts: 10169
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Customer-Group Relations

Post by crythias »

otrs/Kernel/Modules/AdminCustomerUserGroup.pm

Code: Select all

sub Run {
    my ( $Self, %Param ) = @_;

    # set search limit
    my $SearchLimit = 200;
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
nking
Znuny newbie
Posts: 35
Joined: 07 May 2012, 19:56
Znuny Version: OTRS 3.0
Real Name: Natalia King
Company: Lyons Consulting Group
Location: Chicago, Illinois
Contact:

Re: Customer-Group Relations

Post by nking »

crythias wrote:otrs/Kernel/Modules/AdminCustomerUserGroup.pm

Code: Select all

sub Run {
    my ( $Self, %Param ) = @_;

    # set search limit
    my $SearchLimit = 200;
Great! Thank you so much for your help! Much appreciated, Sir.
OTRS 3.0, CentOS 5.5
Post Reply