DBA Data[Home] [Help]

APPS.WF_ITEM_DEFINITION dependencies on WF_ITEM_DEFINITION

Line 1: PACKAGE BODY wf_item_definition AS

1: PACKAGE BODY wf_item_definition AS
2: /* $Header: wfdefb.pls 120.1 2005/07/02 03:43:48 appldev ship $ */
3:
4: /*===========================================================================
5: PACKAGE NAME: wf_item_definition

Line 5: PACKAGE NAME: wf_item_definition

1: PACKAGE BODY wf_item_definition AS
2: /* $Header: wfdefb.pls 120.1 2005/07/02 03:43:48 appldev ship $ */
3:
4: /*===========================================================================
5: PACKAGE NAME: wf_item_definition
6:
7: DESCRIPTION:
8:
9: OWNER: GKELLNER

Line 107: wf_item_definition.draw_header(

103:
104: /*
105: ** Create a standard title page with the item_type display name as the title
106: */
107: wf_item_definition.draw_header(
108: NULL,
109: NULL,
110: 'FIND');
111:

Line 116: ** http://...wf_item_definition.draw_item_type?x_process=&x_ident= ...

112: /*
113: ** We use the simple GET method, when the form is submitted it
114: ** generates a URL of the form
115: **
116: ** http://...wf_item_definition.draw_item_type?x_process=&x_ident= ...
117: **
118: ** which is what our instance_list procedure (defined later) is
119: ** expecting to get passed.
120: */

Line 121: htp.formOpen(curl=>'wf_item_definition.draw_item_type',

117: **
118: ** which is what our instance_list procedure (defined later) is
119: ** expecting to get passed.
120: */
121: htp.formOpen(curl=>'wf_item_definition.draw_item_type',
122: cmethod=>'GET', cattributes=>'NAME="WF_FIND"');
123:
124: /*
125: ** Create a table for the find attributes.

Line 199: wf_item_definition_util_pub.validate_date (

195: /*
196: ** Get the expected format for the date. You don't care about the
197: ** validation stuff
198: */
199: wf_item_definition_util_pub.validate_date (
200: TO_CHAR(sysdate),
201: l_date_date,
202: l_valid_date,
203: l_expected_format);

Line 244: Wf_Core.Context('wf_item_definition', 'find_item_type');

240: htp.htmlClose;
241:
242: EXCEPTION
243: WHEN OTHERS THEN
244: Wf_Core.Context('wf_item_definition', 'find_item_type');
245: wf_item_definition.Error;
246:
247: END find_item_type;
248:

Line 245: wf_item_definition.Error;

241:
242: EXCEPTION
243: WHEN OTHERS THEN
244: Wf_Core.Context('wf_item_definition', 'find_item_type');
245: wf_item_definition.Error;
246:
247: END find_item_type;
248:
249: /*===========================================================================

Line 351: 'wf_item_definition.draw_header?p_item_type='||

347: */
348: htp.p (' 349: 'SRC='||
350: owa_util.get_owa_service_path||
351: 'wf_item_definition.draw_header?p_item_type='||
352: wfa_html.conv_special_url_chars(l_item_type)||
353: '&p_effective_date='||
354: wfa_html.conv_special_url_chars(l_effective_date)||
355: '&p_caller=DISPLAY'||

Line 371: wf_item_definition_util_pub.validate_date (

367: ** Check the effective date that was passed in. If it is invalid
368: ** Then just show a frame with an error. Otherwise show the
369: ** frameset for the summary and details.
370: */
371: wf_item_definition_util_pub.validate_date (
372: l_effective_date,
373: l_date_date,
374: l_valid_date,
375: l_expected_format);

Line 397: 'wf_item_definition.draw_item_summary?p_item_type='||

393: */
394: htp.p (' 395: 'SRC='||
396: owa_util.get_owa_service_path||
397: 'wf_item_definition.draw_item_summary?p_item_type='||
398: wfa_html.conv_special_url_chars(l_item_type)||
399: '&p_effective_date='||
400: wfa_html.conv_special_url_chars(l_effective_date)||
401: ' MARGINHEIGHT=10 MARGINWIDTH=10 FRAMEBORDER=0 WRAP=OFF' ||

Line 413: 'wf_item_definition.draw_item_details?p_item_type='||

409: */
410: htp.p (' 411: 'SRC='||
412: owa_util.get_owa_service_path||
413: 'wf_item_definition.draw_item_details?p_item_type='||
414: wfa_html.conv_special_url_chars(l_item_type)||
415: '&p_effective_date='||
416: wfa_html.conv_special_url_chars(l_effective_date)||
417: ' MARGINHEIGHT=10 MARGINWIDTH=10 FRAMEBORDER=YES' ||

Line 436: 'wf_item_definition.draw_error?p_effective_date='||

432: */
433: htp.p (' 434: 'SRC='||
435: owa_util.get_owa_service_path||
436: 'wf_item_definition.draw_error?p_effective_date='||
437: wfa_html.conv_special_url_chars(l_effective_date)||
438: '&p_expected_format='||l_expected_format||
439: ' MARGINHEIGHT=10 MARGINWIDTH=10 FRAMEBORDER=YES'||
440: '" TITLE="' ||

Line 456: Wf_Core.Context('wf_item_definition',

452: htp.htmlClose;
453:
454: EXCEPTION
455: WHEN OTHERS THEN
456: Wf_Core.Context('wf_item_definition',
457: 'draw_item_type',
458: p_item_type,
459: p_effective_date);
460:

Line 461: wf_item_definition.Error;

457: 'draw_item_type',
458: p_item_type,
459: p_effective_date);
460:
461: wf_item_definition.Error;
462:
463: END draw_item_type;
464:
465: /*===========================================================================

Line 556: wfa_sec.header(FALSE, 'wf_item_definition.find_item_type', l_title,FALSE);

552: wfa_sec.header(FALSE, '', l_title, FALSE);
553:
554: else
555:
556: wfa_sec.header(FALSE, 'wf_item_definition.find_item_type', l_title,FALSE);
557:
558: end if;
559:
560: htp.p('');

Line 564: Wf_Core.Context('wf_item_definition',

560: htp.p('');
561:
562: EXCEPTION
563: WHEN OTHERS THEN
564: Wf_Core.Context('wf_item_definition',
565: 'draw_header',
566: p_item_type,
567: p_effective_date,
568: p_caller);

Line 570: wf_item_definition.Error;

566: p_item_type,
567: p_effective_date,
568: p_caller);
569:
570: wf_item_definition.Error;
571:
572: END draw_header;
573:
574: /*===========================================================================

Line 617: wf_item_definition_util_pub.validate_date (

613: ** Check the effective date that was passed in. If it is invalid
614: ** Then just show a frame with an error. Otherwise show the
615: ** frameset for the summary and details.
616: */
617: wf_item_definition_util_pub.validate_date (
618: p_effective_date,
619: l_effective_date,
620: l_valid_date,
621: l_expected_format);

Line 737: Wf_Core.Context('wf_item_definition',

733: htp.tableClose;
734:
735: EXCEPTION
736: WHEN OTHERS THEN
737: Wf_Core.Context('wf_item_definition',
738: 'draw_item_summary',
739: p_item_type,
740: p_effective_date);
741:

Line 742: wf_item_definition.Error;

738: 'draw_item_summary',
739: p_item_type,
740: p_effective_date);
741:
742: wf_item_definition.Error;
743:
744: END draw_item_summary;
745:
746: /*===========================================================================

Line 788: wf_item_definition_util_pub.validate_date (

784: ** Check the effective date that was passed in. If it is invalid
785: ** Then just show a frame with an error. Otherwise show the
786: ** frameset for the summary and details.
787: */
788: wf_item_definition_util_pub.validate_date (
789: p_effective_date,
790: l_effective_date,
791: l_valid_date,
792: l_expected_format);

Line 909: Wf_Core.Context('wf_item_definition',

905: 1);
906:
907: EXCEPTION
908: WHEN OTHERS THEN
909: Wf_Core.Context('wf_item_definition',
910: 'draw_item_details',
911: p_item_type,
912: p_effective_date);
913:

Line 914: wf_item_definition.Error;

910: 'draw_item_details',
911: p_item_type,
912: p_effective_date);
913:
914: wf_item_definition.Error;
915:
916: END draw_item_details;
917:
918: /*===========================================================================

Line 978: Wf_Core.Context('wf_item_definition', 'draw_error');

974: wfa_sec.footer;
975:
976: EXCEPTION
977: WHEN OTHERS THEN
978: Wf_Core.Context('wf_item_definition', 'draw_error');
979: wf_item_definition.Error;
980:
981: END draw_error;
982:

Line 979: wf_item_definition.Error;

975:
976: EXCEPTION
977: WHEN OTHERS THEN
978: Wf_Core.Context('wf_item_definition', 'draw_error');
979: wf_item_definition.Error;
980:
981: END draw_error;
982:
983: /*===========================================================================

Line 995: 'wf_item_definition.find_item_type';

991:
992: BEGIN
993:
994: p_item_definition_url := owa_util.get_owa_service_path||
995: 'wf_item_definition.find_item_type';
996:
997: EXCEPTION
998: WHEN OTHERS THEN
999: Wf_Core.Context('wf_item_definition', 'fetch_item_definition_url');

Line 999: Wf_Core.Context('wf_item_definition', 'fetch_item_definition_url');

995: 'wf_item_definition.find_item_type';
996:
997: EXCEPTION
998: WHEN OTHERS THEN
999: Wf_Core.Context('wf_item_definition', 'fetch_item_definition_url');
1000: wf_item_definition.Error;
1001:
1002: END fetch_item_definition_url;
1003:

Line 1000: wf_item_definition.Error;

996:
997: EXCEPTION
998: WHEN OTHERS THEN
999: Wf_Core.Context('wf_item_definition', 'fetch_item_definition_url');
1000: wf_item_definition.Error;
1001:
1002: END fetch_item_definition_url;
1003:
1004: END wf_item_definition;

Line 1004: END wf_item_definition;

1000: wf_item_definition.Error;
1001:
1002: END fetch_item_definition_url;
1003:
1004: END wf_item_definition;