LDAP Username Edit Function [message #188373] |
Fri, 18 August 2006 04:28 |
tom01
Messages: 29 Registered: July 2006
|
Junior Member |
|
|
Hi!
I want to add 'uid=' to username before LDAP authentication starts.
I have created a function:
create or replace function "ADD_UID"
(t_no in VARCHAR2)
return VARCHAR2
is
begin
return ('uid='||t_no);
end;
and then I have referenced it in 'LDAP Username Edit Function' field like this:
return ADD_UID(:P9_USERNAME);
It doesn't work. Says:
ORA-01008: not all variables bound
Error ERR-10412 Unable to run edit ldap user function.
How can I add 'uid=' to the value of username field??
Tom
|
|
|