DBA Data[Home] [Help]

APPS.WF_LOOKUP_TYPES_PUB dependencies on HTP

Line 340: an item type. This function uses the htp to

336: PROCEDURE NAME: draw_lookup_type_list
337:
338: DESCRIPTION: Shows the display name of lookup type as a
339: html view as a part of a hierical summary list of
340: an item type. This function uses the htp to
341: generate its html output.
342:
343: ============================================================================*/
344: PROCEDURE draw_lookup_type_list

Line 457: This function uses the htp to generate its html

453:
454: DESCRIPTION: Shows the display names of message attributes for
455: a given message as a html view as a part of
456: a hierical summary list of an item type.
457: This function uses the htp to generate its html
458: output.
459:
460: ============================================================================*/
461: PROCEDURE draw_lookup_list

Line 511: html view. This function uses the htp to

507: /*===========================================================================
508: PROCEDURE NAME: draw_lookup_type_details
509:
510: DESCRIPTION: Shows all the details of an lookup type as a
511: html view. This function uses the htp to
512: generate its html output.
513:
514: MODIFICATION LOG:
515: 06-JUN-2001 JWSMITH BUG 1819232 - added summary attr for table tag for ADA

Line 546: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0

542: /*
543: ** Open a new table for each attribute so you can control the spacing
544: ** between each attribute
545: */
546: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0
547: summary=""');
548:
549: /*
550: ** Create the target for the hotlink from the summary view. Also

Line 586: htp.tableClose;

582:
583: /*
584: ** Table is created so close it out
585: */
586: htp.tableClose;
587:
588: /*
589: ** Here we look for all the lookups that are related to the current
590: ** lookup type. The p_wf_lookups_tbl is ordered by display

Line 637: htp.p('

');

633: /*
634: ** Put in a couple of blank lines between the current lookup type
635: ** and its lookups
636: */
637: htp.p('

');
638:
639: /*
640: ** List all the lookup details for this lookup typethat
641: ** we found above.

Line 657: htp.p('

');

653: /*
654: ** Put in a couple of blank lines between the current message
655: ** attributes and the next message
656: */
657: htp.p('

');
658:
659: /*
660: ** Draw the section title for the Lookup Type detail section
661: */

Line 678: htp.p ('
');

674: */
675: IF (l_lookup_type_record_num < p_wf_lookup_types_tbl.count AND
676: l_cur_lookup_record_num = 1) THEN
677:
678: htp.p ('


');
679:
680: END IF;
681:
682: END LOOP;

Line 725: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0

721: /*
722: ** Open a new table for each lookup so you can control the spacing
723: ** between each attribute
724: */
725: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0
726: summary=""');
727:
728: /*
729: ** Create the target for the hotlink from the summary view. Also

Line 765: htp.tableClose;

761:
762: /*
763: ** Table is created so close it out
764: */
765: htp.tableClose;
766:
767: /*
768: ** Draw a line between each lookup definition
769: ** if this is not the last item in the list

Line 773: htp.p ('
');

769: ** if this is not the last item in the list
770: */
771: IF (l_record_num <> p_wf_lookups_tbl.count) THEN
772:
773: htp.p ('


');
774:
775: END IF;
776:
777: END LOOP;