DBA Data[Home] [Help]

APPS.WF_ITEM_DEFINITION_UTIL_PUB dependencies on WF_CORE

Line 35: wf_core.translate('WFITD_CUSTOMIZATION_LEVEL'),

31: /*
32: ** Create the customization row in the table
33: */
34: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
35: wf_core.translate('WFITD_CUSTOMIZATION_LEVEL'),
36: p_customization_level);
37:
38: /*
39: ** Create the protection level row in the table

Line 42: wf_core.translate('WFITD_PROTECTION_LEVEL'),

38: /*
39: ** Create the protection level row in the table
40: */
41: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
42: wf_core.translate('WFITD_PROTECTION_LEVEL'),
43: p_protection_level);
44:
45: EXCEPTION
46: WHEN OTHERS THEN

Line 47: Wf_Core.Context('wf_item_definition_util_pub',

43: p_protection_level);
44:
45: EXCEPTION
46: WHEN OTHERS THEN
47: Wf_Core.Context('wf_item_definition_util_pub',
48: 'draw_custom_protect_details',
49: p_customization_level,
50: p_protection_level);
51:

Line 75: wf_core.translate('WFITD_READ_ROLE'),

71: /*
72: ** Create the read role row in the table
73: */
74: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
75: wf_core.translate('WFITD_READ_ROLE'),
76: p_read_role);
77:
78: /*
79: ** Create the write role row in the table

Line 82: wf_core.translate('WFITD_WRITE_ROLE'),

78: /*
79: ** Create the write role row in the table
80: */
81: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
82: wf_core.translate('WFITD_WRITE_ROLE'),
83: p_write_role);
84:
85: IF (p_draw_execute_role = TRUE) THEN
86:

Line 91: wf_core.translate('WFITD_EXECUTE_ROLE'),

87: /*
88: ** Create the execute role row in the table
89: */
90: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
91: wf_core.translate('WFITD_EXECUTE_ROLE'),
92: p_execute_role);
93:
94: END IF;
95:

Line 98: Wf_Core.Context('wf_item_definition_util_pub',

94: END IF;
95:
96: EXCEPTION
97: WHEN OTHERS THEN
98: Wf_Core.Context('wf_item_definition_util_pub',
99: 'draw_read_write_exe_details',
100: p_read_role,
101: p_write_role,
102: p_execute_role);

Line 202: Wf_Core.Context('wf_item_definition_util_pub',

198: htp.tableRowClose;
199:
200: EXCEPTION
201: WHEN OTHERS THEN
202: Wf_Core.Context('wf_item_definition_util_pub',
203: 'create_hotlink_to_details',
204: p_item_type,
205: TO_CHAR(p_effective_date),
206: p_object_type_prefix,

Line 273: Wf_Core.Context('wf_item_definition_util_pub',

269: htp.tableRowClose;
270:
271: EXCEPTION
272: WHEN OTHERS THEN
273: Wf_Core.Context('wf_item_definition_util_pub',
274: 'create_details_hotlink_target',
275: p_object_type_prefix,
276: p_internal_name,
277: p_display_name,

Line 327: Wf_Core.Context('wf_item_definition_util_pub',

323: htp.tableRowClose;
324:
325: EXCEPTION
326: WHEN OTHERS THEN
327: Wf_Core.Context('wf_item_definition_util_pub',
328: 'draw_summary_section_title',
329: p_section_title,
330: p_indent_level);
331:

Line 362: Wf_Core.Context('wf_item_definition_util_pub',

358: htp.p('


');
359:
360: EXCEPTION
361: WHEN OTHERS THEN
362: Wf_Core.Context('wf_item_definition_util_pub',
363: 'draw_detail_section_title',
364: p_section_title);
365:
366:

Line 397: Wf_Core.Context('wf_item_definition_util_pub',

393: htp.tableRowClose;
394:
395: EXCEPTION
396: WHEN OTHERS THEN
397: Wf_Core.Context('wf_item_definition_util_pub',
398: 'draw_detail_prompt_value_pair',
399: p_prompt,
400: p_value);
401:

Line 422: Wf_Core.Context('wf_item_definition_util_pub',

418: htp.tableData(p_prompt||' ', 'Right');
419:
420: EXCEPTION
421: WHEN OTHERS THEN
422: Wf_Core.Context('wf_item_definition_util_pub',
423: 'draw_detail_prompt',
424: p_prompt);
425: wf_item_definition.Error;
426:

Line 445: Wf_Core.Context('wf_item_definition_util_pub',

441: htp.tableData(''||p_value||'', 'Left');
442:
443: EXCEPTION
444: WHEN OTHERS THEN
445: Wf_Core.Context('wf_item_definition_util_pub',
446: 'draw_detail_value',
447: p_value);
448: wf_item_definition.Error;
449:

Line 490: l_summary_section_title := wf_core.translate('PROCESSES');

486:
487: /*
488: ** Set the the processes title.
489: */
490: l_summary_section_title := wf_core.translate('PROCESSES');
491:
492: wf_item_definition_util_pub.draw_summary_section_title(
493: l_summary_section_title,
494: p_indent_level);

Line 502: l_summary_section_title := wf_core.translate('WFITD_NOTIFICATIONS');

498:
499: /*
500: ** Set the the notifications title.
501: */
502: l_summary_section_title := wf_core.translate('WFITD_NOTIFICATIONS');
503:
504: wf_item_definition_util_pub.draw_summary_section_title(
505: l_summary_section_title,
506: p_indent_level);

Line 514: l_summary_section_title := wf_core.translate('WFITD_FUNCTIONS');

510:
511: /*
512: ** Set the functions title.
513: */
514: l_summary_section_title := wf_core.translate('WFITD_FUNCTIONS');
515:
516: wf_item_definition_util_pub.draw_summary_section_title(
517: l_summary_section_title,
518: p_indent_level);

Line 526: Wf_Core.Context('wf_item_definition_util_pub',

522: END LOOP;
523:
524: EXCEPTION
525: WHEN OTHERS THEN
526: Wf_Core.Context('wf_item_definition_util_pub',
527: 'activity_titles_list');
528:
529: wf_item_definition.Error;
530:

Line 570: l_detail_section_title := wf_core.translate('WFITD_PROCESS_DETAILS');

566:
567: /*
568: ** Set the the processes title.
569: */
570: l_detail_section_title := wf_core.translate('WFITD_PROCESS_DETAILS');
571:
572: wf_item_definition_util_pub.draw_detail_section_title(
573: l_detail_section_title,
574: 0);

Line 587: l_detail_section_title := wf_core.translate('WFITD_NOTIFICATION_DETAILS');

583:
584: /*
585: ** Set the the notifications title.
586: */
587: l_detail_section_title := wf_core.translate('WFITD_NOTIFICATION_DETAILS');
588:
589: wf_item_definition_util_pub.draw_detail_section_title(
590: l_detail_section_title,
591: 0);

Line 604: l_detail_section_title := wf_core.translate('WFITD_FUNCTION_DETAILS');

600:
601: /*
602: ** Set the functions title.
603: */
604: l_detail_section_title := wf_core.translate('WFITD_FUNCTION_DETAILS');
605:
606: wf_item_definition_util_pub.draw_detail_section_title(
607: l_detail_section_title,
608: 0);

Line 616: Wf_Core.Context('wf_item_definition_util_pub',

612: END LOOP;
613:
614: EXCEPTION
615: WHEN OTHERS THEN
616: Wf_Core.Context('wf_item_definition_util_pub',
617: 'activity_titles_details');
618:
619: wf_item_definition.Error;
620:

Line 706: Wf_Core.Context('wf_item_definition_util_pub',

702: p_expected_format := l_nls_date_format;
703:
704: EXCEPTION
705: WHEN OTHERS THEN
706: Wf_Core.Context('wf_item_definition_util_pub',
707: 'validate_date');
708:
709: wf_item_definition.Error;
710:

Line 788: Wf_Core.Context('wf_item_definition_util_pub',

784: END IF;
785:
786: EXCEPTION
787: WHEN OTHERS THEN
788: Wf_Core.Context('wf_item_definition_util_pub',
789: 'create_checkbox',
790: p_name,
791: p_value,
792: p_checked,