OTRS 6: Making more rows show up in the Customer User Management table

Moderator: crythias

Locked
DBar
Znuny newbie
Posts: 11
Joined: 22 Jul 2020, 14:05
Znuny Version: 6.0.26
Real Name: David Bartholomäus

OTRS 6: Making more rows show up in the Customer User Management table

Post by DBar »

Hi guys,

I want to make more rows visible in the Customer User Management table.
Using https://doc.otrs.com/doc/manual/admin/s ... users.html, I figured these setting in my config.pm should do the trick:


# insert your own config settings "here" #
# config settings taken from Kernel/Config/Defaults.pm #
# ---------------------------------------------------- #
# $Self->{SessionUseCookie} = 0;
# $Self->{CheckMXRecord} = 0;

$Self->{'SendmailModule'} = 'Kernel::System::Email::SMTP';
$Self->{'SendmailModule::Host'} = '127.0.0.1';
$Self->{'SendmailModule::Port'} = '25';
$Self->{CustomerUserSearchListLimit} = 500;
# ---------------------------------------------------- #


It doesn't seem to be enough though... Does anybody know what I did wrong?

Best,
David
DBar
Znuny newbie
Posts: 11
Joined: 22 Jul 2020, 14:05
Znuny Version: 6.0.26
Real Name: David Bartholomäus

Re: OTRS 6: Making more rows show up in the Customer User Management table

Post by DBar »

Is this just too obvious for anybody to want to spell it out for me?

Would be really nice if somebody had the answer to my problem.
skullz
Znuny superhero
Posts: 658
Joined: 24 Feb 2012, 03:58
Znuny Version: LTS and Features
Real Name: Mo Azfar
Location: Kuala Lumpur, MY
Contact:

Re: OTRS 6: Making more rows show up in the Customer User Management table

Post by skullz »

i dont think you can just direct define single parameter..
you must define the whole CustomerUser config

Code: Select all

-----------
  # CustomerUser
    # (customer user database backend and settings)
   $Self->{CustomerUser} = {
        Name   => Translatable('Database Backend'),
        Module => 'Kernel::System::CustomerUser::DB',
        --------
        --------
         CustomerUserSearchListLimit        => 500,
         ------------
         };
   --------------------
   -----------------

Or check https://github.com/OTRS/otrs/blob/1f692 ... er.pm#L891 (last option)

Good luck and bear in mind, this is community forum..so yeahhh bye
My Github
OTRS CE/LTS Discord Channel
Cant Update Package Anymore ? Check This

Professional OTRS, Znuny & OTOBO services: efflux.de/en
Free and premium add-ons: English
Locked