DBA Data[Home] [Help]

APPS.WF_MESSAGES_VL_PUB dependencies on HTP

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

304: DESCRIPTION: Shows the display name of a message along with
305: any message attributes for that message that
306: have been passed in as a html view as a part of
307: a hierical summary list of an item type.
308: This function uses the htp to generate its html
309: output.
310:
311: When we find an attribute that matches
312: the message activity, we copy that attribute and all

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

427:
428: DESCRIPTION: Shows the display names of message attributes for
429: a given message as a html view as a part of
430: a hierical summary list of an item type.
431: This function uses the htp to generate its html
432: output.
433:
434: ============================================================================*/
435: PROCEDURE draw_message_attr_list

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

531: /*
532: ** Open a new table for each attribute so you can control the spacing
533: ** between each attribute
534: */
535: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0
536: summary=""');
537:
538: /*
539: ** Create the target for the hotlink from the summary view. Also

Line 682: htp.tableClose;

678:
679: /*
680: ** Table is created so close it out
681: */
682: htp.tableClose;
683:
684: /*
685: ** Here we look for all the message attributes that are related to the
686: ** current message. The p_wf_message_attr_vl_tbl is ordered by display

Line 739: htp.p('

');

735: /*
736: ** Put in a couple of blank lines between the current message
737: ** and its attributes
738: */
739: htp.p('

');
740:
741: /*
742: ** List all the message attribute details for this message that
743: ** we found above.

Line 759: htp.p('

');

755: /*
756: ** Put in a couple of blank lines between the current message
757: ** attributes and the next message
758: */
759: htp.p('

');
760:
761: /*
762: ** Draw the section title for the Message detail section
763: */

Line 781: htp.p ('
');

777: */
778: IF (l_message_record_num < p_wf_messages_vl_tbl.count AND
779: l_cur_attr_record_num = 1) THEN
780:
781: htp.p ('


');
782:
783: END IF;
784:
785: END LOOP;

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

834: /*
835: ** Open a new table for each attribute so you can control the spacing
836: ** between each attribute
837: */
838: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0
839: summary=""');
840:
841: /*
842: ** Create the target for the hotlink from the summary view. Also

Line 1019: htp.tableClose;

1015: END IF;
1016: /*
1017: ** Table is created so close it out
1018: */
1019: htp.tableClose;
1020:
1021: /*
1022: ** Draw a line between each message attribute definition
1023: ** if this is not the last item in the list

Line 1028: htp.p ('
');

1024: */
1025: IF (l_record_num <> p_wf_message_attr_vl_tbl.count AND
1026: p_indent_level <> -1) THEN
1027:
1028: htp.p ('


');
1029:
1030: END IF;
1031:
1032: END LOOP;