Login  Register

Re: Authentication in apex

Posted by ErmanArslansOracleBlog on Sep 26, 2021; 7:31pm
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/Authentication-in-apex-tp10283p10303.html

Okay, so you need a custom authentication schema then.. Using FND_WEB_SEC.validate_login maybe..

Ex:

FUNCTION ebs_authenticate (
 p_username IN VARCHAR2
 , p_password IN VARCHAR2) RETURN BOOLEAN
AS
BEGIN
RETURN (FND_WEB_SEC.validate_login
 (p_username, p_password) = 'Y');
END ebs_authenticate;
END IF;
END;

Please check the following doc -> https://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf