I'm using OTRS 3.3.x on CentOS 64 bit, my OTRS is using the customer data backend from the external MS SQL database, the connection via DSN OBDC of Microsoft. But there are something wrong displaying the customer name
My customer name in external database is : Servië Somalië Oekraïne Tunesië
But in AdminCustomerUser screen that is displaying: Servië Somalië Oekraïne Tunesië Here is my file, customer backend
Code: Select all
# external customer database backend
$Self->{CustomerUser} = {
Name => 'VispBossCustomer',
Module => 'Kernel::System::CustomerUser::DB',
Params => {
DSN => 'DBI:ODBC:mssqlvispboss',
User => 'sa',
Password => 'Password123',
Table => 'VW_OTRS_Customer',
SourceCharset => 'utf-8',
DestCharset => 'utf-8',
CaseSensitive => 1,
},
CustomerKey => 'customer_id',
CustomerID => 'customer_id',
CustomerUserListFields => [ 'customer_id', 'first_name', 'last_name', 'ISNULL(email_address_1, \'\') + ISNULL(\',\' + email_address_2, \'\')' ],
CustomerUserSearchFields => [ 'customer_id', 'first_name', 'last_name', 'ISNULL(email_address_1, \'\') + ISNULL(\',\' + email_address_2, \'\')' ],
....
Thanks
Vu Nguyen