DBA Data[Home] [Help]

APPS.WF_ITEM_TYPES_VL_PUB dependencies on HTP

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

75: PROCEDURE NAME: draw_item_type_list
76:
77: DESCRIPTION: Shows the display name of an item type as a
78: html view as a part of a hierical summary list of
79: an item type. This function uses the htp to
80: generate its html output.
81:
82: ============================================================================*/
83: PROCEDURE draw_item_type_list

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

122: /*===========================================================================
123: PROCEDURE NAME: draw_item_type_details
124:
125: DESCRIPTION: Shows all the details of an item type as a
126: html view. This function uses the htp to
127: generate its html output.
128:
129: MODIFICATION LOG:
130: 06-JUN-2001 JWSMITH BUG 1819232 - added summary attr for table tag for ADA

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

154: /*
155: ** Open a new table for each item_type so you can control the spacing
156: ** between each attribute
157: */
158: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0
159: summary="' || wf_core.translate('WFITD_ITEM_TYPE_DETAILS') || '"');
160:
161: /*
162: ** Create the target for the hotlink from the summary view. Also

Line 213: htp.tableClose;

209:
210: /*
211: ** Table is created so close it out
212: */
213: htp.tableClose;
214:
215: /*
216: ** Draw a line between each attribute definition
217: ** if this is not the last item in the list

Line 221: htp.p ('
');

217: ** if this is not the last item in the list
218: */
219: IF (l_record_num <> p_wf_item_types_vl_tbl.count) THEN
220:
221: htp.p ('


');
222:
223: END IF;
224:
225: END LOOP;