This content has been marked as final.
Show 2 replies
-
1. Re: Social Sign-in Username attribute
Christian Neumueller-Oracle Jan 10, 2019 9:22 AM (in response to Scott Wesley)Hi Scott,
for 19.1, I already added a new attribute "Convert Username To Uppercase" to Social Sign-In.
In older versions, you can use the Post-Authentication procedure to change the name, before it is stored in the session:
procedure post_auth is
begin
apex_custom_auth.set_user(p_user => upper(v('APP_USER')));
end post_auth;
Regards,
Christian
-
2. Re: Social Sign-in Username attribute
Scott Wesley Jan 11, 2019 1:00 AM (in response to Christian Neumueller-Oracle)Sometimes APEX just makes things too easy