DBA Data[Home] [Help]

APPS.WF_ITEM_ATTRIBUTES_VL_PUB dependencies on WF_ITEM_DEFINITION

Line 168: wf_item_definition.Error;

164: 'fetch_item_attributes',
165: p_item_type,
166: p_name);
167:
168: wf_item_definition.Error;
169:
170: END fetch_item_attributes;
171:
172: /*===========================================================================

Line 243: wf_item_definition_util_pub.draw_summary_section_title(

239:
240: /*
241: ** Create the the attributes title. Indent it to the level specified
242: */
243: wf_item_definition_util_pub.draw_summary_section_title(
244: wf_core.translate('WFITD_ATTRIBUTES'),
245: p_indent_level);
246:
247: /*

Line 257: wf_item_definition_util_pub.create_hotlink_to_details (

253: ** The creation of the anchor from the summary frame to the detail
254: ** frame was very complex so I've extracted the function into its
255: ** own routine.
256: */
257: wf_item_definition_util_pub.create_hotlink_to_details (
258: p_wf_item_attributes_vl_tbl(l_record_num).item_type,
259: p_effective_date,
260: 'ATTRIBUTE',
261: p_wf_item_attributes_vl_tbl(l_record_num).name,

Line 271: wf_item_definition.Error;

267:
268: EXCEPTION
269: WHEN OTHERS THEN
270: Wf_Core.Context('wf_item_attributes_vl_pub', 'draw_item_attribute_list');
271: wf_item_definition.Error;
272:
273: END draw_item_attribute_list;
274:
275:

Line 298: wf_item_definition_util_pub.draw_detail_section_title (

294:
295: /*
296: ** Draw the section title for the item type detail section
297: */
298: wf_item_definition_util_pub.draw_detail_section_title (
299: wf_core.translate('WFITD_ATTRIBUTE_DETAILS'),
300: 0);
301:
302: /*

Line 319: wf_item_definition_util_pub.create_details_hotlink_target (

315: ** Create the target for the hotlink from the summary view. Also
316: ** create the first row in the table which is always the display
317: ** name for the object.
318: */
319: wf_item_definition_util_pub.create_details_hotlink_target (
320: 'ATTRIBUTE',
321: p_wf_item_attributes_vl_tbl(l_record_num).name,
322: p_wf_item_attributes_vl_tbl(l_record_num).display_name,
323: wf_core.translate('WFITD_ATTRIBUTE_NAME'),

Line 329: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

325:
326: /*
327: ** Create the internal name row in the table.
328: */
329: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
330: wf_core.translate('WFITD_INTERNAL_NAME'),
331: p_wf_item_attributes_vl_tbl(l_record_num).name);
332:
333: /*

Line 336: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

332:
333: /*
334: ** Create the description row in the table
335: */
336: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
337: wf_core.translate('DESCRIPTION'),
338: p_wf_item_attributes_vl_tbl(l_record_num).description);
339:
340: /*

Line 346: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

342: ** translated resource so that all I have to do is add
343: ** WFITD_ATTR_TYPE_ to the type of resource and I get the
344: ** translated string.
345: */
346: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
347: wf_core.translate('WFITD_ATTRIBUTE_TYPE'),
348: wf_core.translate('WFITD_ATTR_TYPE_'||
349: p_wf_item_attributes_vl_tbl(l_record_num).type));
350:

Line 360: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

356: ** If it is any other type then don't show the row at all
357: */
358: IF (p_wf_item_attributes_vl_tbl(l_record_num).type = 'VARCHAR2') THEN
359:
360: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
361: wf_core.translate('LENGTH'),
362: p_wf_item_attributes_vl_tbl(l_record_num).format);
363:
364: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).type IN ('NUMBER', 'DATE')) THEN

Line 366: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

362: p_wf_item_attributes_vl_tbl(l_record_num).format);
363:
364: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).type IN ('NUMBER', 'DATE')) THEN
365:
366: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
367: wf_core.translate('FORMAT'),
368: p_wf_item_attributes_vl_tbl(l_record_num).format);
369:
370: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).type IN ('URL','DOCUMENT')) THEN

Line 375: wf_item_definition_util_pub.draw_detail_prompt_value_pair

371: /*
372: ** If it is URL or DOCUMENT, indicate where the resulting page should be displayed
373: */
374: IF (NVL(p_wf_item_attributes_vl_tbl(l_record_num).format, '_top') = '_top') THEN
375: wf_item_definition_util_pub.draw_detail_prompt_value_pair
376: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_TOP'));
377: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).format = '_blank') THEN
378: wf_item_definition_util_pub.draw_detail_prompt_value_pair
379: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_BLANK'));

Line 378: wf_item_definition_util_pub.draw_detail_prompt_value_pair

374: IF (NVL(p_wf_item_attributes_vl_tbl(l_record_num).format, '_top') = '_top') THEN
375: wf_item_definition_util_pub.draw_detail_prompt_value_pair
376: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_TOP'));
377: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).format = '_blank') THEN
378: wf_item_definition_util_pub.draw_detail_prompt_value_pair
379: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_BLANK'));
380: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).format = '_self') THEN
381: wf_item_definition_util_pub.draw_detail_prompt_value_pair
382: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_SELF'));

Line 381: wf_item_definition_util_pub.draw_detail_prompt_value_pair

377: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).format = '_blank') THEN
378: wf_item_definition_util_pub.draw_detail_prompt_value_pair
379: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_BLANK'));
380: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).format = '_self') THEN
381: wf_item_definition_util_pub.draw_detail_prompt_value_pair
382: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_SELF'));
383: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).format = '_parent') THEN
384: wf_item_definition_util_pub.draw_detail_prompt_value_pair
385: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_PARENT'));

Line 384: wf_item_definition_util_pub.draw_detail_prompt_value_pair

380: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).format = '_self') THEN
381: wf_item_definition_util_pub.draw_detail_prompt_value_pair
382: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_SELF'));
383: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).format = '_parent') THEN
384: wf_item_definition_util_pub.draw_detail_prompt_value_pair
385: (wf_core.translate('WFITD_FRAME_TARGET'), wf_core.translate('WFITD_PARENT'));
386: END IF;
387:
388: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).type = 'LOOKUP') THEN

Line 390: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

386: END IF;
387:
388: ELSIF (p_wf_item_attributes_vl_tbl(l_record_num).type = 'LOOKUP') THEN
389:
390: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
391: wf_core.translate('LOOKUP'),
392: p_wf_item_attributes_vl_tbl(l_record_num).lookup_type_display_name);
393:
394: END IF;

Line 405: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

401: ** default. If there is no number default then try the date.
402: */
403: IF (p_wf_item_attributes_vl_tbl(l_record_num).type = 'LOOKUP') THEN
404:
405: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
406: wf_core.translate('WFITD_DEFAULT_VALUE'),
407: p_wf_item_attributes_vl_tbl(l_record_num).lookup_code_display_name);
408:
409: ELSE

Line 411: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

407: p_wf_item_attributes_vl_tbl(l_record_num).lookup_code_display_name);
408:
409: ELSE
410:
411: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
412: wf_core.translate('WFITD_DEFAULT_VALUE'),
413: NVL(p_wf_item_attributes_vl_tbl(l_record_num).text_default,
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))));

Line 423: wf_item_definition_util_pub.draw_custom_protect_details(

419:
420: /*
421: ** Call function to print the customization/protection levels
422: */
423: wf_item_definition_util_pub.draw_custom_protect_details(
424: p_wf_item_attributes_vl_tbl(l_record_num).custom_level,
425: p_wf_item_attributes_vl_tbl(l_record_num).protect_level);
426:
427: /*

Line 447: wf_item_definition.Error;

443:
444: EXCEPTION
445: WHEN OTHERS THEN
446: Wf_Core.Context('wf_item_attributes_vl_pub', 'draw_item_attribute_details');
447: wf_item_definition.Error;
448:
449: END draw_item_attribute_details;
450:
451: