DBA Data[Home] [Help]

PROCEDURE: APPS.TEST_AUTHENTICATION

Source


1 procedure test_authentication AUTHID CURRENT_USER as
2 begin
3 htp.bodyOpen();
4 htp.htmlOpen();
5 htp.bodyClose();
6 htp.p('Does authentication work?');
7 htp.p(fnd_web_sec.validate_login('SYSADMIN','SYSADMIN'));
8 htp.htmlClose();
9 END test_authentication;