Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

dbms_ldap_utl.get_user_properties throwing ORA-12703: this character set conversion is not supported

raghunadhanAug 6 2021

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

Comments
Post Details
Added on Aug 6 2021
0 comments
181 views