DBA Data[Home] [Help]

APPS.WF_ITEM_DEFINITION_UTIL_PUB dependencies on HTP

Line 167: htp.tableRowOpen(calign=>'left', cvalign=>'top');

163: l_indent_string := l_indent_string || '      ';
164:
165: END LOOP;
166:
167: htp.tableRowOpen(calign=>'left', cvalign=>'top');
168:
169: /*
170: ** If this is a all from the detail region then you'll have a two
171: ** column format and you need to put this prompt on. Otherwise it's

Line 181: htp.tableData(

177: p_detail_prompt);
178:
179: END IF;
180:
181: htp.tableData(
182: cvalue=>l_indent_string||
183: ' 260: ':'||p_internal_name||'"'||
261: '>');
262:

Line 265: htp.p ('');

261: '>');
262:
263: wf_item_definition_util_pub.draw_detail_prompt(p_display_prompt);
264:
265: htp.p ('');
266:
267: wf_item_definition_util_pub.draw_detail_value(p_display_name);
268:
269: htp.tableRowClose;

Line 269: htp.tableRowClose;

265: htp.p ('');
266:
267: wf_item_definition_util_pub.draw_detail_value(p_display_name);
268:
269: htp.tableRowClose;
270:
271: EXCEPTION
272: WHEN OTHERS THEN
273: Wf_Core.Context('wf_item_definition_util_pub',

Line 316: htp.tableRowOpen(calign=>'left', cvalign=>'top');

312: /*
313: ** Open a row in the summary table, put on the the section title.
314: ** and then close the row.
315: */
316: htp.tableRowOpen(calign=>'left', cvalign=>'top');
317:
318: htp.tableData(
319: cvalue=>l_indent_string||''||p_section_title||'',
320: calign=>'Left',

Line 318: htp.tableData(

314: ** and then close the row.
315: */
316: htp.tableRowOpen(calign=>'left', cvalign=>'top');
317:
318: htp.tableData(
319: cvalue=>l_indent_string||''||p_section_title||'',
320: calign=>'Left',
321: cnowrap=>'NOWRAP');
322:

Line 323: htp.tableRowClose;

319: cvalue=>l_indent_string||''||p_section_title||'',
320: calign=>'Left',
321: cnowrap=>'NOWRAP');
322:
323: htp.tableRowClose;
324:
325: EXCEPTION
326: WHEN OTHERS THEN
327: Wf_Core.Context('wf_item_definition_util_pub',

Line 353: htp.bold(p_section_title);

349:
350: /*
351: ** Draw the detail section title
352: */
353: htp.bold(p_section_title);
354:
355: /*
356: ** Put a line across the form
357: */

Line 358: htp.p('

');

354:
355: /*
356: ** Put a line across the form
357: */
358: htp.p('


');
359:
360: EXCEPTION
361: WHEN OTHERS THEN
362: Wf_Core.Context('wf_item_definition_util_pub',

Line 385: htp.tableRowOpen(calign=>'middle', cvalign=>'top');

381: p_value IN VARCHAR2) IS
382:
383: BEGIN
384:
385: htp.tableRowOpen(calign=>'middle', cvalign=>'top');
386:
387: htp.tableData(cvalue=>p_prompt||' ',
388: calign=>'Right',
389: cnowrap=>'NOWRAP');

Line 387: htp.tableData(cvalue=>p_prompt||' ',

383: BEGIN
384:
385: htp.tableRowOpen(calign=>'middle', cvalign=>'top');
386:
387: htp.tableData(cvalue=>p_prompt||' ',
388: calign=>'Right',
389: cnowrap=>'NOWRAP');
390:
391: htp.tableData(''||p_value||'', 'Left');

Line 391: htp.tableData(''||p_value||'', 'Left');

387: htp.tableData(cvalue=>p_prompt||' ',
388: calign=>'Right',
389: cnowrap=>'NOWRAP');
390:
391: htp.tableData(''||p_value||'', 'Left');
392:
393: htp.tableRowClose;
394:
395: EXCEPTION

Line 393: htp.tableRowClose;

389: cnowrap=>'NOWRAP');
390:
391: htp.tableData(''||p_value||'', 'Left');
392:
393: htp.tableRowClose;
394:
395: EXCEPTION
396: WHEN OTHERS THEN
397: Wf_Core.Context('wf_item_definition_util_pub',

Line 418: htp.tableData(p_prompt||' ', 'Right');

414: (p_prompt IN VARCHAR2) IS
415:
416: BEGIN
417:
418: htp.tableData(p_prompt||' ', 'Right');
419:
420: EXCEPTION
421: WHEN OTHERS THEN
422: Wf_Core.Context('wf_item_definition_util_pub',

Line 441: htp.tableData(''||p_value||'', 'Left');

437: (p_value IN VARCHAR2) IS
438:
439: BEGIN
440:
441: htp.tableData(''||p_value||'', 'Left');
442:
443: EXCEPTION
444: WHEN OTHERS THEN
445: Wf_Core.Context('wf_item_definition_util_pub',

Line 579: htp.p ('

');

575:
576: /*
577: ** Create some blank space around the title
578: */
579: htp.p ('

');
580:
581:
582: ELSIF (ii = 2) THEN
583:

Line 596: htp.p ('

');

592:
593: /*
594: ** Create some blank space around the title
595: */
596: htp.p ('

');
597:
598:
599: ELSIF (ii = 3) THEN
600:

Line 737: htp.tableRowOpen;

733:
734: /*
735: ** Open the checkboxes row
736: */
737: htp.tableRowOpen;
738:
739: END IF;
740:
741: /*

Line 746: htp.tableData(

742: ** Create the checkbox for Top Level Process Only List
743: ** add nbsp; to space out the checkboxes
744: */
745: IF (p_image_name IS NOT NULL) THEN
746: htp.tableData(
747: cvalue=>
748: htf.formcheckbox(
749: cname=>p_name,
750: cvalue=>p_value,

Line 764: htp.tableData(

760: calign=>'left');
761:
762: ELSE
763:
764: htp.tableData(
765: cvalue=>
766: htf.formcheckbox(
767: cname=>p_name,
768: cvalue=>p_value,

Line 782: htp.tableRowClose;

778:
779: /*
780: ** Close the checkboxes row
781: */
782: htp.tableRowClose;
783:
784: END IF;
785:
786: EXCEPTION