We are migrating AIMS to Active Directory
we using below code to get user properties from Active directories.It is getting some user attributes and throwing ORA-12703: this character set conversion is not supported.
When i set l_attrs(1):='mail'.IT gets mail id and not throwing error .To get all properties we used.
l_attrs(1):='*';
l_retval := dbms_ldap_utl.get_user_properties(ld => g_session,
user_handle => l_user_handle,
attrs => l_attrs,
ptype => dbms_ldap_utl.entry_properties,
ret_pset_coll => l_pset_collection);
dbms_ldap_utl.get_user_properties throwing ORA-12703: this character set conversion is not supported
when