DBA Data[Home] [Help]

APPS.WF_ITEM_ATTRIBUTES_VL_PUB dependencies on HTP

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

221: PROCEDURE NAME: draw_item_attribute_list
222:
223: DESCRIPTION: Shows the display name of an item attribute as a
224: html view as a part of a hierical summary list of
225: an item type. This function uses the htp to
226: generate its html output.
227:
228: ============================================================================*/
229: PROCEDURE draw_item_attribute_list

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

276: /*===========================================================================
277: PROCEDURE NAME: draw_item_attribute_details
278:
279: DESCRIPTION: Shows all the details of an item attrribute as a
280: html view. This function uses the htp to
281: generate its html output.
282: MODIFICATION LOG:
283: 06-JUN-2001 JWSMITH BUG 1819232 - added summary attr for table tag for ADA
284:

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

307: /*
308: ** Open a new table for each attribute so you can control the spacing
309: ** between each attribute
310: */
311: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0
312: summary= "' || wf_core.translate('WFITD_ATTRIBUTE_DETAILS') || '"');
313:
314: /*
315: ** Create the target for the hotlink from the summary view. Also

Line 418: htp.tableRowClose;

414: NVL(TO_CHAR(p_wf_item_attributes_vl_tbl(l_record_num).number_default),
415: TO_CHAR(p_wf_item_attributes_vl_tbl(l_record_num).date_default))));
416:
417: END IF;
418: htp.tableRowClose;
419:
420: /*
421: ** Call function to print the customization/protection levels
422: */

Line 430: htp.tableClose;

426:
427: /*
428: ** Table is created so close it out
429: */
430: htp.tableClose;
431:
432: /*
433: ** Draw a line between each attribute definition
434: ** if this is not the last item in the list

Line 438: htp.p ('
');

434: ** if this is not the last item in the list
435: */
436: IF (l_record_num <> p_wf_item_attributes_vl_tbl.count) THEN
437:
438: htp.p ('


');
439:
440: END IF;
441:
442: END LOOP;