Output a html table
SQL>
SQL> CREATE OR REPLACE PROCEDURE p_test
2 IS
3 BEGIN
4 htp.p('');
5 htp.p('');
6 htp.p('Records');
7 htp.p('');
8 htp.p('');
9 htp.p('Records
');
10 htp.p('');
11 htp.p('Hierarchy | Org Long Name |
');
12 htp.p('');
13 htp.p('Director | ');
14 htp.p('Office of DirectorInc. | ');
15 htp.p('
');
16 htp.p('');
17 htp.p('Director | ');
18 htp.p('Office | ');
19 htp.p('
');
20 htp.p('
');
21 htp.p('');
22 htp.p('');
23 end;
24 /
Procedure created.