DBA Data[Home] [Help]

APPS.WF_ACTIVITIES_VL_PUB dependencies on HTP

Line 594: htp.p('

');

590: ** the draw skipped activity headers function
591: */
592: IF (p_activity_type = 'PROCESS') THEN
593:
594: htp.p('

');
595:
596: END IF;
597:
598: /*

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

636: DESCRIPTION: Shows the display name of an activity along with
637: any activity attributes for that activity that
638: have been passed in as a html view as a part of
639: a hierical summary list of an item type.
640: This function uses the htp to generate its html
641: output.
642:
643: When we find an attribute that matches
644: the current activity, we copy that attribute and all

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

894:
895: DESCRIPTION: Shows the display names of activity attributes for
896: a given activity as a html view as a part of
897: a hierical summary list of an item type.
898: This function uses the htp to generate its html
899: output.
900:
901: ============================================================================*/
902: PROCEDURE draw_activity_attr_list

Line 1154: htp.p ('

');

1150: ** interrupt from the parent to perform this function
1151: */
1152: IF (l_activity_type IN ('NOTICE', 'FUNCTION', 'EVENT')) THEN
1153:
1154: htp.p ('

');
1155:
1156: END IF;
1157:
1158: /*

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

1173: /*
1174: ** Open a new table for each attribute so you can control the spacing
1175: ** between each attribute
1176: */
1177: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0
1178: summary=""');
1179:
1180: /*
1181: ** Create the target for the hotlink from the summary view. Also

Line 1455: htp.tableClose;

1451:
1452: /*
1453: ** Table is created so close it out
1454: */
1455: htp.tableClose;
1456:
1457: /*
1458: ** Here we look for all the activity attributes that are related to
1459: ** the current activity. The p_wf_activity_attr_vl_tbl is

Line 1510: htp.p('

');

1506: /*
1507: ** Put in a couple of blank lines between the current activity
1508: ** and its attributes
1509: */
1510: htp.p('

');
1511:
1512: /*
1513: ** List all the activity attribute details for this activity that
1514: ** we found above.

Line 1532: htp.p('

');

1528: /*
1529: ** Put in a couple of blank lines between the current activity
1530: ** attributes and the next activity
1531: */
1532: htp.p('

');
1533:
1534: /*
1535: ** Draw the section title for the Activity detail section
1536: */

Line 1556: htp.p ('
');

1552: IF (l_activity_record_num < p_wf_activities_vl_tbl.count AND
1553: l_cur_attr_record_num = 1 AND
1554: l_activity_type = p_wf_activities_vl_tbl(l_activity_record_num + 1).type) THEN
1555:
1556: htp.p ('


');
1557:
1558: END IF;
1559:
1560: END IF;

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

1654: /*
1655: ** Open a new table for each attribute so you can control the spacing
1656: ** between each attribute
1657: */
1658: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0
1659: summary=""');
1660:
1661: /*
1662: ** Create the target for the hotlink from the summary view. Also

Line 1803: htp.tableClose;

1799:
1800: /*
1801: ** Table is created so close it out
1802: */
1803: htp.tableClose;
1804:
1805: /*
1806: ** Draw a line between each activity attribute definition
1807: ** if this is not the last item in the list

Line 1811: htp.p ('
');

1807: ** if this is not the last item in the list
1808: */
1809: IF (l_record_num <> p_wf_activity_attr_vl_tbl.count) THEN
1810:
1811: htp.p ('


');
1812:
1813: END IF;
1814:
1815: END LOOP;