I'm configuring OTRS. I won't be using the customer portal just the agent portal.
I'm getting some customer information from a public LDAP (cn, givenName, sn, mail, uid).
When a customer calls to file a ticket, I want the agent to be able to do an LDAP look-up. If the costumer exist, copy the LDAP customer information into OTRS database (customer_user table) and then add more information (telephone, mobile, address). I need to keep all customer data in database because I don't have any control over LDAP.
Is there a way to copy costumer information from LDAP to OTRS database?
Thank you.
Customer Information from public LDAP into OTRS Database
Moderator: crythias
-
- Znuny newbie
- Posts: 2
- Joined: 28 Jan 2011, 16:52
- Znuny Version: 3.0.4
Re: Customer Information from public LDAP into OTRS Database
no, not like you wanted. LDAP will be needed to store all data or DB is needed. But you can not copy data from LDAP to DB via frontend
"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
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
Re: Customer Information from public LDAP into OTRS Database
Hi,
i have a similar problem. I'd like to store the location of a user in the OTRS DB per ticket.
Background is the request for a report containing all tickets from a special location.
The location of a user is stored in the LDAP directory. And OTRS shows it in the Field "Customer Info".
Configured here: Config.pm -> [ 'UserLocation', 'Location', 'location', 1, 0, 'var' ],
Is there really no possibility to store this info in a for example dynamic field ???
Thanks
paddew
i have a similar problem. I'd like to store the location of a user in the OTRS DB per ticket.
Background is the request for a report containing all tickets from a special location.
The location of a user is stored in the LDAP directory. And OTRS shows it in the Field "Customer Info".
Configured here: Config.pm -> [ 'UserLocation', 'Location', 'location', 1, 0, 'var' ],
Is there really no possibility to store this info in a for example dynamic field ???
Thanks
paddew
-
- Znuny superhero
- Posts: 630
- Joined: 17 Mar 2011, 14:40
- Znuny Version: 5.0.6
- Real Name: Yuri Kolesnikov
- Location: Russia
Re: Customer Information from public LDAP into OTRS Database
You can do it manually in new created Dynamic Field or by coding this action in appropriated module, but store it in customer DB - if you use LDAP - no.paddew wrote:Hi,
Is there really no possibility to store this info in a for example dynamic field ???

Best regards Yuri Kolesnikov
OTRS 5.0.14, ITSM 5.0.14
SUSE 13.2, MariaDB 10.0.22(productive)
OTRS 5.0.14, ITSM 5.0.14(test)
OTRS 5.0.14, ITSM 5.0.14
SUSE 13.2, MariaDB 10.0.22(productive)
OTRS 5.0.14, ITSM 5.0.14(test)
Re: Customer Information from public LDAP into OTRS Database
Could you be more specific? I have no idea how to do this...