DBA Data[Home] [Help]

APPS.TEST_AUTHENTICATION dependencies on HTP

Line 3: htp.bodyOpen();

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'));

Line 4: htp.htmlOpen();

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();

Line 5: htp.bodyClose();

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;

Line 6: htp.p('Does authentication work?');

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;

Line 7: htp.p(fnd_web_sec.validate_login('SYSADMIN','SYSADMIN'));

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;

Line 8: htp.htmlClose();

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;