DBA Data[Home] [Help]

OWAPUB.OWA_UTIL dependencies on HTF

Line 288: htp.p(htf.bold('PL/SQL Cartridge')||' on '||

284: procedure signature is
285: begin
286: htp.line;
287: htp.p('This page was produced by the ');
288: htp.p(htf.bold('PL/SQL Cartridge')||' on '||
289: to_char(sysdate,'Month DD, YYYY HH12:MI PM')||htf.nl);
290: end;
291:
292: procedure signature(cname in varchar2) is

Line 289: to_char(sysdate,'Month DD, YYYY HH12:MI PM')||htf.nl);

285: begin
286: htp.line;
287: htp.p('This page was produced by the ');
288: htp.p(htf.bold('PL/SQL Cartridge')||' on '||
289: to_char(sysdate,'Month DD, YYYY HH12:MI PM')||htf.nl);
290: end;
291:
292: procedure signature(cname in varchar2) is
293: begin

Line 301: /* Procedure for printing a page generated by htp/htf */

297: 'View PL/SQL source code');
298: end;
299:
300: /******************************************************/
301: /* Procedure for printing a page generated by htp/htf */
302: /* in SQL*Plus or SQL*DBA */
303: /******************************************************/
304: procedure showpage is
305: begin

Line 329: htp.print(owa.cgi_var_name(i)||' = '||owa.cgi_var_val(i)||htf.nl);

325: procedure print_cgi_env is
326: begin
327: for i in 1..owa.num_cgi_vars
328: loop
329: htp.print(owa.cgi_var_name(i)||' = '||owa.cgi_var_val(i)||htf.nl);
330: end loop;
331: end;
332:
333: function get_owa_service_path return varchar2 is

Line 1502: htp.p(htf.format_cell(columnValue, format_numbers));

1498: procedure format_cell(
1499: columnValue in varchar2, format_numbers in varchar2
1500: ) is
1501: begin
1502: htp.p(htf.format_cell(columnValue, format_numbers));
1503: end format_cell;
1504:
1505: function bind_outputs( p_theCursor in integer ) return number
1506: is

Line 2006: htp.tableData( htf.br );

2002: htp.tableRowOpen;
2003: loop
2004: exit when to_char( l_magic_date, 'DY' ) = to_char(l_start,'DY');
2005: if ( not l_mf_only or not is_weekend(l_magic_date) ) then
2006: htp.tableData( htf.br );
2007: end if;
2008: l_magic_date := l_magic_date+1;
2009: end loop;
2010:

Line 2016: htp.p( htf.italic(htf.bold(to_char(l_start,'DD'))) || htf.br );

2012: exit when ( to_char( p_start,'MON') <> to_char( l_start,'MON') );
2013:
2014: if ( not l_mf_only or not is_weekend(l_start) ) then
2015: htp.p( '' );
2016: htp.p( htf.italic(htf.bold(to_char(l_start,'DD'))) || htf.br );
2017: end if;
2018:
2019: while(l_cnt < p_cnt AND to_char(l_start) = to_char(p_dates(l_cnt)) )
2020: loop

Line 2047: htp.tableData( htf.br );

2043: end loop;
2044: if ( to_char(l_start ,'DY','NLS_DATE_LANGUAGE=AMERICAN') <> 'SUN' ) then
2045: loop
2046: if ( not l_mf_only or not is_weekend( l_start ) ) then
2047: htp.tableData( htf.br );
2048: end if;
2049: exit when ( to_char(l_start,'DY','NLS_DATE_LANGUAGE=AMERICAN') = 'SAT' );
2050: l_start := l_start+1;
2051: end loop;