DBA Data[Home] [Help]

APPS.WFA_HTML dependencies on WF_CORE

Line 10: g_newline varchar2(1) := wf_core.newLine;

6: pragma EXCEPTION_INIT(invalid_number, -6502);
7:
8:
9: g_priority varchar2(2000);
10: g_newline varchar2(1) := wf_core.newLine;
11: g_wfInstall varchar2(15) := wf_core.translate('WF_INSTALL');
12: g_webAgent varchar2(2000) := wf_core.translate('WF_WEB_AGENT');
13:
14: --

Line 11: g_wfInstall varchar2(15) := wf_core.translate('WF_INSTALL');

7:
8:
9: g_priority varchar2(2000);
10: g_newline varchar2(1) := wf_core.newLine;
11: g_wfInstall varchar2(15) := wf_core.translate('WF_INSTALL');
12: g_webAgent varchar2(2000) := wf_core.translate('WF_WEB_AGENT');
13:
14: --
15: -- Error (PRIVATE)

Line 12: g_webAgent varchar2(2000) := wf_core.translate('WF_WEB_AGENT');

8:
9: g_priority varchar2(2000);
10: g_newline varchar2(1) := wf_core.newLine;
11: g_wfInstall varchar2(15) := wf_core.translate('WF_INSTALL');
12: g_webAgent varchar2(2000) := wf_core.translate('WF_WEB_AGENT');
13:
14: --
15: -- Error (PRIVATE)
16: -- Print a page with an error message.

Line 18: -- 1. wf_core errors

14: --
15: -- Error (PRIVATE)
16: -- Print a page with an error message.
17: -- Errors are retrieved from these sources in order:
18: -- 1. wf_core errors
19: -- 2. Oracle errors
20: -- 3. Unspecified INTERNAL error
21: --
22: procedure Error

Line 61: htp.title(wf_core.translate('WFA_LOGIN_REQUEST'));

57: -- Set the language to the default language for the system
58:
59: htp.htmlOpen;
60: htp.headOpen;
61: htp.title(wf_core.translate('WFA_LOGIN_REQUEST'));
62: wfa_html.create_help_function('wf/links/log.htm?LOGIN');
63: htp.headClose;
64: wfa_sec.Header(background_only=>FALSE, inc_lov_applet=>FALSE);
65:

Line 75: htp.header(4, wf_core.translate(message));

71: end if;
72:
73:
74: if (message is not null) then
75: htp.header(4, wf_core.translate(message));
76: htp.br;
77: end if;
78:
79: htp.br;

Line 83: wf_core.translate('USER_ID') ||

79: htp.br;
80: htp.tableOpen(calign=>'CENTER', cattributes=>'summary=""');
81: htp.tableRowOpen;
82: htp.tableData('', 'Right',
85: cattributes=>'id=""');
86: htp.tableData(htf.formText('User_ID', 25, cattributes=>'id="i_user_id"'),
87: 'Left', cattributes=>'id=""');

Line 92: wf_core.translate('PASSWORD') ||

88: htp.tableRowClose;
89:
90: htp.tableRowOpen;
91: htp.tableData('', 'Right',
94: cattributes=>'id=""');
95: htp.tableData(htf.formPassword('Password', 25,
96: cattributes=>'id="i_password"'), 'Left',

Line 112: wf_core.translate ('LOGIN'),

108:
109: htp.p('');
110:
111: wfa_html.create_reg_button ('javascript:document.WFA_LOGIN.submit()',
112: wf_core.translate ('LOGIN'),
113: wfa_html.image_loc,
114: 'FNDJLFOK.gif',
115: wf_core.translate ('LOGIN'));
116:

Line 115: wf_core.translate ('LOGIN'));

111: wfa_html.create_reg_button ('javascript:document.WFA_LOGIN.submit()',
112: wf_core.translate ('LOGIN'),
113: wfa_html.image_loc,
114: 'FNDJLFOK.gif',
115: wf_core.translate ('LOGIN'));
116:
117: htp.p('');
118:
119: htp.tableRowClose;

Line 127: wf_core.context('Wfa_Html', 'Login');

123: htp.htmlClose;
124: exception
125: when others then
126: rollback;
127: wf_core.context('Wfa_Html', 'Login');
128: wfa_html.Error;
129: end Login;
130:
131: --

Line 165: if (wf_core.error_name='WFSEC_USER_PASSWORD') then

161: begin
162: wfa_sec.CreateSession(username, password);
163: exception
164: when others then
165: if (wf_core.error_name='WFSEC_USER_PASSWORD') then
166: -- Bad username or password
167: wf_core.clear;
168: wfa_html.Login('WFA_ILLEGAL_IDP');
169: return;

Line 167: wf_core.clear;

163: exception
164: when others then
165: if (wf_core.error_name='WFSEC_USER_PASSWORD') then
166: -- Bad username or password
167: wf_core.clear;
168: wfa_html.Login('WFA_ILLEGAL_IDP');
169: return;
170: end if;
171: -- Raise any other error message

Line 203: wf_core.context('Wfa_Html', 'Viewer', user_id, password);

199:
200: exception
201: when others then
202: rollback;
203: wf_core.context('Wfa_Html', 'Viewer', user_id, password);
204: wfa_html.Error;
205: end Viewer;
206:
207:

Line 285: WFA_HTML.g_priority := WF_CORE.Translate('WFJSP_HIGH_PRIORITY');

281: return varchar2
282: as
283: begin
284: if (priority < 34) /* HIGH */ then
285: WFA_HTML.g_priority := WF_CORE.Translate('WFJSP_HIGH_PRIORITY');
286: return(wfa_html.image_loc||'high.gif');
287: elsif (priority > 66) /* LOW */ then
288: WFA_HTML.g_priority := WF_CORE.Translate('WFJSP_LOW_PRIORITY');
289: return(wfa_html.image_loc||'low.gif');

Line 288: WFA_HTML.g_priority := WF_CORE.Translate('WFJSP_LOW_PRIORITY');

284: if (priority < 34) /* HIGH */ then
285: WFA_HTML.g_priority := WF_CORE.Translate('WFJSP_HIGH_PRIORITY');
286: return(wfa_html.image_loc||'high.gif');
287: elsif (priority > 66) /* LOW */ then
288: WFA_HTML.g_priority := WF_CORE.Translate('WFJSP_LOW_PRIORITY');
289: return(wfa_html.image_loc||'low.gif');
290: else /* NORMAL */
291: return null;
292: end if;

Line 385: Wf_Core.Token('NID', nid);

381: from WF_NOTIFICATIONS WN
382: where WN.NOTIFICATION_ID = nid;
383: exception
384: when no_data_found then
385: Wf_Core.Token('NID', nid);
386: Wf_Core.Raise('WFNTF_NID');
387: end;
388:
389: -- Verify this notification was sent to this user

Line 386: Wf_Core.Raise('WFNTF_NID');

382: where WN.NOTIFICATION_ID = nid;
383: exception
384: when no_data_found then
385: Wf_Core.Token('NID', nid);
386: Wf_Core.Raise('WFNTF_NID');
387: end;
388:
389: -- Verify this notification was sent to this user
390: -- Note that username could be the in the recipient role

Line 471: admin_role := wf_core.translate('WF_ADMIN_ROLE');

467: exception
468: when no_data_found then
469: -- Check if current user has WF_ADMIN_ROLE privileges.
470: -- If so, allow access anyway.
471: admin_role := wf_core.translate('WF_ADMIN_ROLE');
472: if (admin_role <> '*' and
473: not Wf_Directory.IsPerformer(username, admin_role)) then
474: Wf_Core.Token('USER', username);
475: Wf_Core.Token('NID', to_char(nid));

Line 474: Wf_Core.Token('USER', username);

470: -- If so, allow access anyway.
471: admin_role := wf_core.translate('WF_ADMIN_ROLE');
472: if (admin_role <> '*' and
473: not Wf_Directory.IsPerformer(username, admin_role)) then
474: Wf_Core.Token('USER', username);
475: Wf_Core.Token('NID', to_char(nid));
476: Wf_Core.Raise('WFNTF_ACCESS_USER');
477: end if;
478: end;

Line 475: Wf_Core.Token('NID', to_char(nid));

471: admin_role := wf_core.translate('WF_ADMIN_ROLE');
472: if (admin_role <> '*' and
473: not Wf_Directory.IsPerformer(username, admin_role)) then
474: Wf_Core.Token('USER', username);
475: Wf_Core.Token('NID', to_char(nid));
476: Wf_Core.Raise('WFNTF_ACCESS_USER');
477: end if;
478: end;
479: else

Line 476: Wf_Core.Raise('WFNTF_ACCESS_USER');

472: if (admin_role <> '*' and
473: not Wf_Directory.IsPerformer(username, admin_role)) then
474: Wf_Core.Token('USER', username);
475: Wf_Core.Token('NID', to_char(nid));
476: Wf_Core.Raise('WFNTF_ACCESS_USER');
477: end if;
478: end;
479: else
480: -- Nkey passed, means this must be disconnected (mailed html).

Line 499: wf_core.raise('WFNTF_ACCESS_KEY');

495: end if;
496:
497: username := Wf_Notification.AccessCheck(wfsession);
498: if (username is null) then
499: wf_core.raise('WFNTF_ACCESS_KEY');
500: end if;
501: end if;
502:
503: return(username);

Line 507: wf_core.context('Wfa_Html', 'Authenticate', to_char(nid), nkey);

503: return(username);
504:
505: exception
506: when others then
507: wf_core.context('Wfa_Html', 'Authenticate', to_char(nid), nkey);
508: raise;
509: end Authenticate;
510:
511: --

Line 658: wf_core.clear;

654: end if;
655: exception
656: when OTHERS then
657: -- this is the first attempt to see a detached notfication
658: wf_core.clear;
659: owa_util.mime_header('text/html', FALSE);
660: owa_cookie.send('WF_SESSION', wfsession, '', '/');
661: wfa_sec.PseudoSession(FALSE, username);
662: owa_util.http_header_close;

Line 674: wf_core.token('NID', nid);

670: open notcurs;
671: fetch notcurs into notrec;
672: if (notcurs%notfound) then
673: close notcurs;
674: wf_core.token('NID', nid);
675: wf_core.raise('WFNTF_NID');
676: end if;
677: close notcurs;
678:

Line 675: wf_core.raise('WFNTF_NID');

671: fetch notcurs into notrec;
672: if (notcurs%notfound) then
673: close notcurs;
674: wf_core.token('NID', nid);
675: wf_core.raise('WFNTF_NID');
676: end if;
677: close notcurs;
678:
679: if (notrec.language = userenv('LANG')) then

Line 681: l_subject := wf_core.substitutespecialchars(notrec.subject);

677: close notcurs;
678:
679: if (notrec.language = userenv('LANG')) then
680: disprole := notrec.to_user;
681: l_subject := wf_core.substitutespecialchars(notrec.subject);
682: else
683: Wf_Directory.GetRoleInfo(notrec.recipient_role, disprole, s0, s0, s0, s0);
684: l_subject := Wf_Notification.GetSubject(to_number(nid));
685: end if;

Line 697: htp.title(wf_core.translate('WFA_DTITLE')||' '||titlerole);

693:
694: fnd_document_management.get_open_dm_display_window;
695:
696: if (notrec.status = 'OPEN') then
697: htp.title(wf_core.translate('WFA_DTITLE')||' '||titlerole);
698: else
699: htp.title(wf_core.translate('WFA_CDTITLE')||' '||titlerole);
700: end if;
701: wfa_html.create_help_function('wf/links/det.htm?DETNOT');

Line 699: htp.title(wf_core.translate('WFA_CDTITLE')||' '||titlerole);

695:
696: if (notrec.status = 'OPEN') then
697: htp.title(wf_core.translate('WFA_DTITLE')||' '||titlerole);
698: else
699: htp.title(wf_core.translate('WFA_CDTITLE')||' '||titlerole);
700: end if;
701: wfa_html.create_help_function('wf/links/det.htm?DETNOT');
702:
703: -- Make sure the resulting link puts on the top window.

Line 715: wf_core.translate('WFA_DTITLE_TBAR'), FALSE, pseudo_login);

711: htp.p('');
712:
713: if (nkey is null) then
714: wfa_sec.Header(FALSE, owa_util.get_owa_service_path ||'wfa_html.Find',
715: wf_core.translate('WFA_DTITLE_TBAR'), FALSE, pseudo_login);
716: else
717: -- disabled Find for detached notification
718: wfa_sec.Header(FALSE, null,
719: wf_core.translate('WFA_DTITLE_TBAR'), FALSE, pseudo_login);

Line 719: wf_core.translate('WFA_DTITLE_TBAR'), FALSE, pseudo_login);

715: wf_core.translate('WFA_DTITLE_TBAR'), FALSE, pseudo_login);
716: else
717: -- disabled Find for detached notification
718: wfa_sec.Header(FALSE, null,
719: wf_core.translate('WFA_DTITLE_TBAR'), FALSE, pseudo_login);
720: end if;
721:
722: htp.tableOpen(cattributes=>'WIDTH=100% summary=""', calign=>'CENTER');
723:

Line 729: htp.tableData(cvalue=>wf_core.translate('FROM'),

725: -- LINE 0: from user if it is not null
726: --
727: if (notrec.from_user is not null) then
728: htp.tableRowOpen(cvalign=>'Baseline');
729: htp.tableData(cvalue=>wf_core.translate('FROM'),
730: calign=>'right', cattributes=>'id=""');
731: htp.tableHeader(cvalue=>notrec.from_user,
732: cnowrap=>1,
733: calign=>'left', cattributes=>'BGCOLOR=WHITE WIDTH="*" id=""');

Line 743: htp.tableData(cvalue=>wf_core.translate('TO'),

739: --
740: htp.tableRowOpen(cvalign=>'Baseline');
741:
742: -- Always print Sent To and begin_date
743: htp.tableData(cvalue=>wf_core.translate('TO'),
744: calign=>'right', cattributes=>'id=""');
745: htp.tableHeader(cvalue=>disprole,
746: cnowrap=>1,
747: calign=>'left', cattributes=>'BGCOLOR=WHITE WIDTH="*" id=""');

Line 748: htp.tableData(cvalue=>wf_core.translate('BEGIN_DATE'),

744: calign=>'right', cattributes=>'id=""');
745: htp.tableHeader(cvalue=>disprole,
746: cnowrap=>1,
747: calign=>'left', cattributes=>'BGCOLOR=WHITE WIDTH="*" id=""');
748: htp.tableData(cvalue=>wf_core.translate('BEGIN_DATE'),
749: calign=>'right', cattributes=>'id=""');
750: htp.tableHeader(cvalue=>to_char(notrec.begin_date)||
751: to_char(notrec.begin_date, ' HH24:MI:SS'),
752: cnowrap=>1,

Line 760: htp.tableData(cvalue=>wf_core.translate('DUE_DATE'),

756:
757: -- Due:
758: -- Do not print Due Date if it is null
759: if (to_char(notrec.due_date) is not null) then
760: htp.tableData(cvalue=>wf_core.translate('DUE_DATE'),
761: calign=>'right', cattributes=>'id=""');
762: htp.tableHeader(cvalue=>to_char(notrec.due_date)||
763: to_char(notrec.due_date, ' HH24:MI:SS'),
764: cnowrap=>1,

Line 772: htp.tableData(cvalue=>wf_core.translate('CANCELED'),

768:
769: -- Closed: (only if not open)
770: if (notrec.status <> 'OPEN') then
771: if (notrec.status = 'CANCELED') then
772: htp.tableData(cvalue=>wf_core.translate('CANCELED'),
773: calign=>'right', cattributes=>'id=""');
774: else
775: htp.tableData(cvalue=>wf_core.translate('END_DATE'),
776: calign=>'right', cattributes=>'id=""');

Line 775: htp.tableData(cvalue=>wf_core.translate('END_DATE'),

771: if (notrec.status = 'CANCELED') then
772: htp.tableData(cvalue=>wf_core.translate('CANCELED'),
773: calign=>'right', cattributes=>'id=""');
774: else
775: htp.tableData(cvalue=>wf_core.translate('END_DATE'),
776: calign=>'right', cattributes=>'id=""');
777: end if;
778: htp.tableHeader(cvalue=>to_char(notrec.end_date)||
779: to_char(notrec.end_date, ' HH24:MI:SS'),

Line 791: htp.tableData(cvalue=>wf_core.translate('SUBJECT'),

787: --
788: -- Subject:
789: --
790: htp.tableRowOpen(cvalign=>'Baseline');
791: htp.tableData(cvalue=>wf_core.translate('SUBJECT'),
792: calign=>'right', cattributes=>'id=""');
793:
794: --make colspan 1 less than col because 1 col is taken up by "subject"
795: htp.tableHeader(cvalue=>l_subject,

Line 806: htp.p(wf_core.translate('COMMENTS')||':');

802: --
803: -- COMMENTS
804: --
805: if (notrec.user_comment is not null) then
806: htp.p(wf_core.translate('COMMENTS')||':');
807: htp.tableOpen(cattributes=>'WIDTH=100% BGCOLOR=WHITE summary=""');
808: htp.tableRowOpen;
809: htp.p('');

Line 809: htp.p(' 808: htp.tableRowOpen;
809: htp.p('');
811: htp.bold(replace(wf_core.substitutespecialchars(notrec.user_comment),
812: wf_core.newline, htf.br||wf_core.newline));
813: htp.p('');

Line 811: htp.bold(replace(wf_core.substitutespecialchars(notrec.user_comment),

807: htp.tableOpen(cattributes=>'WIDTH=100% BGCOLOR=WHITE summary=""');
808: htp.tableRowOpen;
809: htp.p('');
811: htp.bold(replace(wf_core.substitutespecialchars(notrec.user_comment),
812: wf_core.newline, htf.br||wf_core.newline));
813: htp.p('');
814: htp.tableRowClose;
815: htp.tableClose;

Line 812: wf_core.newline, htf.br||wf_core.newline));

808: htp.tableRowOpen;
809: htp.p('');
811: htp.bold(replace(wf_core.substitutespecialchars(notrec.user_comment),
812: wf_core.newline, htf.br||wf_core.newline));
813: htp.p('');
814: htp.tableRowClose;
815: htp.tableClose;
816: end if;

Line 868: WF_CORE.Translate('WFITD_ATTR_TYPE_DOCUMENT') || '" BORDER=no>';

864:
865: link_text := ''||
867: '' ||<br>
<b>868:                  WF_CORE.Translate('WFITD_ATTR_TYPE_DOCUMENT') || '
';
869:
870: elsif (UPPER(SUBSTR(not_attr_row.text_value, 1, 5)) = 'PLSQL') then
871:
872: if (nkey is null) then

Line 878: WF_CORE.Translate('WFITD_ATTR_TYPE_DOCUMENT') || '" BORDER=no>';

874: wfa_html.base_url||'/wfa_html.show_plsql_doc'||
875: '?nid='||nid||'&aname='||not_attr_row.name||
876: '" TARGET="'||not_attr_row.format||'">'||
877: '' ||<br>
<b>878:                  WF_CORE.Translate('WFITD_ATTR_TYPE_DOCUMENT') || '';
879: else
880: link_text := '';

881: wfa_html.base_url||'/wfa_html.show_plsql_doc'||
882: '?nid='||nid||'&aname='||not_attr_row.name||'&nkey='||nkey||
883: '" TARGET="'||not_attr_row.format||'">'||
884: '' ||<br>
<b>885:                  WF_CORE.Translate('WFITD_ATTR_TYPE_DOCUMENT') || '';
886: end if;
887:
888: end if;
889:

Line 898: if (not wf_core.CheckIllegalChars(link_text,true)) then

894:
895: -- Bug 4634849
896: -- Do not display potentially harmful url
897: begin
898: if (not wf_core.CheckIllegalChars(link_text,true)) then
899: link_text := ''||
901: '' ||<br>
902:                  WF_CORE.Translate('WFITD_ATTR_TYPE_DOCUMENT') || '
';

Line 902: WF_CORE.Translate('WFITD_ATTR_TYPE_DOCUMENT') || '" BORDER=no>';

898: if (not wf_core.CheckIllegalChars(link_text,true)) then
899: link_text := ''||
901: '' ||<br>
<b>902:                  WF_CORE.Translate('WFITD_ATTR_TYPE_DOCUMENT') || '
';
903: end if;
904: exception
905: when OTHERS then
906: wf_core.get_error(error_name, link_text, error_stack);

Line 906: wf_core.get_error(error_name, link_text, error_stack);

902: WF_CORE.Translate('WFITD_ATTR_TYPE_DOCUMENT') || '" BORDER=no>';
903: end if;
904: exception
905: when OTHERS then
906: wf_core.get_error(error_name, link_text, error_stack);
907:
908: link_text :=wf_core.substitutespecialchars(link_text);
909: error_stack:= '';
910: end;

Line 908: link_text :=wf_core.substitutespecialchars(link_text);

904: exception
905: when OTHERS then
906: wf_core.get_error(error_name, link_text, error_stack);
907:
908: link_text :=wf_core.substitutespecialchars(link_text);
909: error_stack:= '';
910: end;
911:
912: end if;

Line 1006: if (not wf_core.CheckIllegalChars(link_text,true)) then

1002:
1003: -- Bug 4634849
1004: -- Do not display potentially harmful url
1005: begin
1006: if (not wf_core.CheckIllegalChars(link_text,true)) then
1007: link_text := ''||
1009: not_attr_row.display_name||'
';
1010:

Line 1014: wf_core.get_error(error_name, link_text, error_stack);

1010:
1011: end if;
1012: exception
1013: when OTHERS then
1014: wf_core.get_error(error_name, link_text, error_stack);
1015:
1016: link_text :=wf_core.substitutespecialchars(link_text);
1017: error_stack:= '';
1018: end;

Line 1016: link_text :=wf_core.substitutespecialchars(link_text);

1012: exception
1013: when OTHERS then
1014: wf_core.get_error(error_name, link_text, error_stack);
1015:
1016: link_text :=wf_core.substitutespecialchars(link_text);
1017: error_stack:= '';
1018: end;
1019: end if;
1020:

Line 1048: htp.p('

'||wf_core.translate('WF_EXECUTE_FORM_FAILED'));

1044: --
1045: -- Print warning message
1046: --
1047: if (cnt > 0) then
1048: htp.p('

'||wf_core.translate('WF_EXECUTE_FORM_FAILED'));
1049: htp.br;
1050: end if;
1051:
1052: --

Line 1061: wf_core.context('Wfa_Html', 'DetailFrame', nid, nkey);

1057:
1058: exception
1059: when others then
1060: rollback;
1061: wf_core.context('Wfa_Html', 'DetailFrame', nid, nkey);
1062: wfa_html.Error;
1063: end DetailFrame;
1064:
1065: --

Line 1182: wf_core.clear;

1178: end if;
1179: exception
1180: when OTHERS then
1181: -- this is the first attempt to see a detached notfication
1182: wf_core.clear;
1183: owa_util.mime_header('text/html', FALSE);
1184: wfa_sec.PseudoSession(FALSE, username);
1185: end;
1186: wfa_sec.validate_only := FALSE;

Line 1206: htp.title(wf_core.translate('WFA_DTITLE')||' '||realname);

1202: --
1203: htp.htmlOpen;
1204: htp.headOpen;
1205: if (status = 'OPEN') then
1206: htp.title(wf_core.translate('WFA_DTITLE')||' '||realname);
1207: else
1208: htp.title(wf_core.translate('WFA_CDTITLE')||' '||realname);
1209: end if;
1210:

Line 1208: htp.title(wf_core.translate('WFA_CDTITLE')||' '||realname);

1204: htp.headOpen;
1205: if (status = 'OPEN') then
1206: htp.title(wf_core.translate('WFA_DTITLE')||' '||realname);
1207: else
1208: htp.title(wf_core.translate('WFA_CDTITLE')||' '||realname);
1209: end if;
1210:
1211: -- Add the java script to the header to open the dm window for
1212: -- any DM function that is executed.

Line 1238: ctext => wf_core.translate('WFA_WORKLIST_RETURN'),

1234: -- email attachment
1235: if (nkey is null) then
1236: htp.center(htf.anchor(
1237: curl => owa_util.get_owa_service_path||'wfa_html.WorkList',
1238: ctext => wf_core.translate('WFA_WORKLIST_RETURN'),
1239: cattributes=>'TARGET="_top"'));
1240: else
1241: pseudo_login := TRUE;
1242: end if;

Line 1292: htp.p('

'||wf_core.translate('WF_EXECUTE_FORM_FAILED'));

1288: --
1289: -- Print warning message
1290: --
1291: if (cnt > 0) then
1292: htp.p('

'||wf_core.translate('WF_EXECUTE_FORM_FAILED'));
1293: htp.br;
1294: end if;
1295:
1296: if (respcnt >= 1) then

Line 1349: htp.center(htf.bold(wf_core.translate('WFA_NOTIF_CANCELED')));

1345: htp.formHidden('h_fdocnames', 'Dummy_Value');
1346: else
1347: -- Add submitted title if ntf not open
1348: if (status = 'CANCELED') then
1349: htp.center(htf.bold(wf_core.translate('WFA_NOTIF_CANCELED')));
1350: else
1351: if (pseudo_login) then
1352: htp.center(htf.bold(wf_core.translate('WFA_RESPONSE_COMPLETE')));
1353: else

Line 1352: htp.center(htf.bold(wf_core.translate('WFA_RESPONSE_COMPLETE')));

1348: if (status = 'CANCELED') then
1349: htp.center(htf.bold(wf_core.translate('WFA_NOTIF_CANCELED')));
1350: else
1351: if (pseudo_login) then
1352: htp.center(htf.bold(wf_core.translate('WFA_RESPONSE_COMPLETE')));
1353: else
1354: htp.center(htf.bold(wf_core.translate('WFA_SUBMIT_RESPONSE')));
1355: end if;
1356: end if;

Line 1354: htp.center(htf.bold(wf_core.translate('WFA_SUBMIT_RESPONSE')));

1350: else
1351: if (pseudo_login) then
1352: htp.center(htf.bold(wf_core.translate('WFA_RESPONSE_COMPLETE')));
1353: else
1354: htp.center(htf.bold(wf_core.translate('WFA_SUBMIT_RESPONSE')));
1355: end if;
1356: end if;
1357: end if;
1358:

Line 1467: wf_core.translate ('SUBMIT'),

1463: -- Add a 'Submit' button to submit the form.
1464: htp.tableRowOpen;
1465: htp.p('');
1466: wfa_html.create_reg_button ('javascript:document.WFNOTRESP.submit()',
1467: wf_core.translate ('SUBMIT'),
1468: wfa_html.image_loc,
1469: null,
1470: wf_core.translate ('SUBMIT'));
1471:

Line 1470: wf_core.translate ('SUBMIT'));

1466: wfa_html.create_reg_button ('javascript:document.WFNOTRESP.submit()',
1467: wf_core.translate ('SUBMIT'),
1468: wfa_html.image_loc,
1469: null,
1470: wf_core.translate ('SUBMIT'));
1471:
1472: htp.p('');
1473:
1474: else

Line 1479: htp.tableData(wf_core.translate('WFA_NO_RESPONSE'), cattributes=>'id=""');

1475:
1476: -- No responses at all.
1477: -- Add a message to that effect.
1478: htp.tableRowOpen;
1479: htp.tableData(wf_core.translate('WFA_NO_RESPONSE'), cattributes=>'id=""');
1480: htp.tableRowClose;
1481:
1482: -- Followed by a 'Close' button
1483: htp.tableRowOpen;

Line 1489: wf_core.translate ('CLOSE'),

1485: htp.tableopen(cattributes=>'summary=""');
1486: htp.tablerowopen;
1487: htp.p('');
1488: wfa_html.create_reg_button ('javascript:document.WFNOTRESP.submit()',
1489: wf_core.translate ('CLOSE'),
1490: wfa_html.image_loc,
1491: null,
1492: wf_core.translate ('CLOSE'));
1493:

Line 1492: wf_core.translate ('CLOSE'));

1488: wfa_html.create_reg_button ('javascript:document.WFNOTRESP.submit()',
1489: wf_core.translate ('CLOSE'),
1490: wfa_html.image_loc,
1491: null,
1492: wf_core.translate ('CLOSE'));
1493:
1494: htp.p('');
1495:
1496: end if;

Line 1541: Wf_Core.Clear;

1537: hide_button := Wf_Notification.GetAttrText(nid, '#HIDE_REASSIGN');
1538: exception
1539: when OTHERS then
1540: -- Do not want anything on the error stack
1541: Wf_Core.Clear;
1542: end;
1543: if (hide_button <> 'Y') then
1544: htp.p('');
1545: wfa_html.create_reg_button ('javascript:document.WFNOTRESP.forward.value=1;

Line 1547: wf_core.translate ('ASSIGN'),

1543: if (hide_button <> 'Y') then
1544: htp.p('');
1545: wfa_html.create_reg_button ('javascript:document.WFNOTRESP.forward.value=1;
1546: document.WFNOTRESP.submit()',
1547: wf_core.translate ('ASSIGN'),
1548: wfa_html.image_loc,
1549: null,
1550: wf_core.translate ('ASSIGN'));
1551:

Line 1550: wf_core.translate ('ASSIGN'));

1546: document.WFNOTRESP.submit()',
1547: wf_core.translate ('ASSIGN'),
1548: wfa_html.image_loc,
1549: null,
1550: wf_core.translate ('ASSIGN'));
1551:
1552: htp.p('');
1553: end if;
1554: end if;

Line 1584: wf_core.context('Wfa_Html', 'ResponseFrame', nid, nkey);

1580: if (attrs%isopen) then
1581: close attrs; -- Close cursor just in case
1582: end if;
1583: rollback;
1584: wf_core.context('Wfa_Html', 'ResponseFrame', nid, nkey);
1585: wfa_html.Error;
1586: end ResponseFrame;
1587:
1588: --

Line 1606: l_message varchar2(240) := wfa_html.replace_onMouseOver_quotes(wf_core.translate ('WFPREF_LOV'));

1602: status varchar2(8);
1603: s0 varchar2(2000);
1604: lang_codeset varchar2(50); -- Language Codeset from environment
1605: -- (e.g. WE8ISO8859P1)
1606: l_message varchar2(240) := wfa_html.replace_onMouseOver_quotes(wf_core.translate ('WFPREF_LOV'));
1607:
1608: l_url varchar2(1000);
1609: l_media varchar2(240) := wfa_html.image_loc;
1610: l_icon varchar2(30) := 'FNDILOV.gif';

Line 1626: htp.title(wf_core.translate('WFA_DTITLE')||' '||realname);

1622: -- Header and Page Title
1623: htp.htmlOpen;
1624: htp.headOpen;
1625: if (status = 'OPEN') then
1626: htp.title(wf_core.translate('WFA_DTITLE')||' '||realname);
1627: else
1628: htp.title(wf_core.translate('WFA_CDTITLE')||' '||realname);
1629: end if;
1630:

Line 1628: htp.title(wf_core.translate('WFA_CDTITLE')||' '||realname);

1624: htp.headOpen;
1625: if (status = 'OPEN') then
1626: htp.title(wf_core.translate('WFA_DTITLE')||' '||realname);
1627: else
1628: htp.title(wf_core.translate('WFA_CDTITLE')||' '||realname);
1629: end if;
1630:
1631: fnd_document_management.get_open_dm_display_window;
1632:

Line 1636: htp.p('' || wf_core.newline);

Line 1642: 'alert( " ' || WF_CORE.Translate( 'WFA_MAX_COMMENTS' ) || ' "); }' );

1638:
1639: htp.p(wf_core.newline || 'function SubmitForward() {' || wf_core.newline );
1640: htp.p('var lcomment = document.WF_HTML.comments.value;' || wf_core.newline );
1641: htp.p(wf_core.newline || 'if (lcomment.length > 240) {' || wf_core.newline ||
1642: 'alert( " ' || WF_CORE.Translate( 'WFA_MAX_COMMENTS' ) || ' "); }' );
1643: htp.p('else { document.WF_HTML.submit(); }' || wf_core.newline ||
1644: '}' || wf_core.newline);
1645: htp.p('' || wf_core.newline);
1646:

Line 1643: htp.p('else { document.WF_HTML.submit(); }' || wf_core.newline ||

1639: htp.p(wf_core.newline || 'function SubmitForward() {' || wf_core.newline );
1640: htp.p('var lcomment = document.WF_HTML.comments.value;' || wf_core.newline );
1641: htp.p(wf_core.newline || 'if (lcomment.length > 240) {' || wf_core.newline ||
1642: 'alert( " ' || WF_CORE.Translate( 'WFA_MAX_COMMENTS' ) || ' "); }' );
1643: htp.p('else { document.WF_HTML.submit(); }' || wf_core.newline ||
1644: '}' || wf_core.newline);
1645: htp.p('' || wf_core.newline);
1646:
1647: htp.p('

Line 1644: '}' || wf_core.newline);

1640: htp.p('var lcomment = document.WF_HTML.comments.value;' || wf_core.newline );
1641: htp.p(wf_core.newline || 'if (lcomment.length > 240) {' || wf_core.newline ||
1642: 'alert( " ' || WF_CORE.Translate( 'WFA_MAX_COMMENTS' ) || ' "); }' );
1643: htp.p('else { document.WF_HTML.submit(); }' || wf_core.newline ||
1644: '}' || wf_core.newline);
1645: htp.p('' || wf_core.newline);
1646:
1647: htp.p('

Line 1645: htp.p('' || wf_core.newline);

1641: htp.p(wf_core.newline || 'if (lcomment.length > 240) {' || wf_core.newline ||
1642: 'alert( " ' || WF_CORE.Translate( 'WFA_MAX_COMMENTS' ) || ' "); }' );
1643: htp.p('else { document.WF_HTML.submit(); }' || wf_core.newline ||
1644: '}' || wf_core.newline);
1645: htp.p('' || wf_core.newline);
1646:
1647: htp.p('');

Line 1648: htp.p(WF_CORE.Translate('WFA_NOSCRIPT'));

1644: '}' || wf_core.newline);
1645: htp.p('' || wf_core.newline);
1646:
1647: htp.p('');
1650:
1651: htp.headClose;
1652:

Line 1666: wf_core.translate('WFA_ASSIGNTO') ||

1662: -- Forwardee field
1663: htp.tableOpen(calign=>'CENTER', cattributes=>'summary=""');
1664: htp.tableRowOpen;
1665: htp.tableData(cvalue=>'',
1668: calign=>'right', cattributes=>'id=""');
1669:
1670: htp.formHidden('forwardee', null);

Line 1700: wf_core.translate('WFA_REASSIGN_DELEGATE') || '',

1696: htp.tableRowOpen;
1697: htp.tableData(cvalue=>'',
1701: calign=>'left', ccolspan=>2, cattributes=>'id=""');
1702: htp.tableRowClose;
1703: htp.tableRowOpen;
1704: htp.tableData(cvalue=>'

Line 1706: wf_core.translate('WFA_REASSIGN_TRANSFER') ||

1702: htp.tableRowClose;
1703: htp.tableRowOpen;
1704: htp.tableData(cvalue=>'',
1708: calign=>'left', ccolspan=>2, cattributes=>'id=""');
1709: htp.tableRowClose;
1710:

Line 1718: wf_core.translate('COMMENTS') ||

1714:
1715: -- Comments field
1716: htp.tableRowOpen;
1717: htp.tableData(cvalue=>'',
1720: calign=>'right', cattributes=>'id=""');
1721: htp.tableData(cvalue=>htf.formTextarea2(cname=>'comments', nrows=>2,
1722: ncolumns=>65, cwrap=>'SOFT',

Line 1737: wf_core.translate ('WFMON_OK'),

1733: htp.p('');
1734:
1735: --1578431: Changed button to call SubmitForward() javascript function.
1736: wfa_html.create_reg_button ('javascript:SubmitForward()',
1737: wf_core.translate ('WFMON_OK'),
1738: wfa_html.image_loc,
1739: 'FNDJLFOK.gif',
1740: wf_core.translate ('WFMON_OK'));
1741:

Line 1740: wf_core.translate ('WFMON_OK'));

1736: wfa_html.create_reg_button ('javascript:SubmitForward()',
1737: wf_core.translate ('WFMON_OK'),
1738: wfa_html.image_loc,
1739: 'FNDJLFOK.gif',
1740: wf_core.translate ('WFMON_OK'));
1741:
1742: htp.p('');
1743:
1744: htp.p('');

Line 1748: wf_core.translate ('CANCEL'),

1744: htp.p('');
1745:
1746: wfa_html.create_reg_button ('Wfa_Html.ResponseFrame?nid='||nid||
1747: '&nkey='||nkey,
1748: wf_core.translate ('CANCEL'),
1749: wfa_html.image_loc,
1750: 'FNDJLFCN.gif',
1751: wf_core.translate ('CANCEL'));
1752:

Line 1751: wf_core.translate ('CANCEL'));

1747: '&nkey='||nkey,
1748: wf_core.translate ('CANCEL'),
1749: wfa_html.image_loc,
1750: 'FNDJLFCN.gif',
1751: wf_core.translate ('CANCEL'));
1752:
1753: htp.p('');
1754:
1755: htp.tableRowClose;

Line 1763: wf_core.context('Wfa_Html', 'ForwardFrame', nid, nkey);

1759: htp.htmlClose;
1760: exception
1761: when others then
1762: rollback;
1763: wf_core.context('Wfa_Html', 'ForwardFrame', nid, nkey);
1764: wfa_html.Error;
1765: end ForwardFrame;
1766:
1767: --

Line 1805: wf_core.token('NID', nid);

1801: and MA.NAME = NA.NAME
1802: and MA.NAME = AttributeInfo.name;
1803: exception
1804: when no_data_found then
1805: wf_core.token('NID', nid);
1806: wf_core.token('ATTRIBUTE', name);
1807: wf_core.raise('WFNTF_ATTR');
1808: end;
1809:

Line 1806: wf_core.token('ATTRIBUTE', name);

1802: and MA.NAME = AttributeInfo.name;
1803: exception
1804: when no_data_found then
1805: wf_core.token('NID', nid);
1806: wf_core.token('ATTRIBUTE', name);
1807: wf_core.raise('WFNTF_ATTR');
1808: end;
1809:
1810: -- Header and Page Title

Line 1807: wf_core.raise('WFNTF_ATTR');

1803: exception
1804: when no_data_found then
1805: wf_core.token('NID', nid);
1806: wf_core.token('ATTRIBUTE', name);
1807: wf_core.raise('WFNTF_ATTR');
1808: end;
1809:
1810: -- Header and Page Title
1811: htp.htmlOpen;

Line 1813: htp.title(wf_core.translate('WFA_ATTRINFO')||': '||dispname);

1809:
1810: -- Header and Page Title
1811: htp.htmlOpen;
1812: htp.headOpen;
1813: htp.title(wf_core.translate('WFA_ATTRINFO')||': '||dispname);
1814: htp.headClose;
1815:
1816: -- Body contents
1817: wfa_sec.header(background_only=>TRUE);

Line 1819: htp.center(htf.bold(wf_core.translate('WFA_ATTRINFO')||' '||dispname));

1815:
1816: -- Body contents
1817: wfa_sec.header(background_only=>TRUE);
1818: -- Title
1819: htp.center(htf.bold(wf_core.translate('WFA_ATTRINFO')||' '||dispname));
1820: htp.tableOpen(cattributes=>'summary=""');
1821:
1822: -- Description
1823: htp.tableRowOpen;

Line 1824: htp.tableData(cvalue=>wf_core.translate('DESCRIPTION'), calign=>'right', cattributes=>'id=""');

1820: htp.tableOpen(cattributes=>'summary=""');
1821:
1822: -- Description
1823: htp.tableRowOpen;
1824: htp.tableData(cvalue=>wf_core.translate('DESCRIPTION'), calign=>'right', cattributes=>'id=""');
1825: htp.tableData(cvalue=>htf.bold(description), calign=>'left',
1826: cattributes=>'bgcolor=white ehaders=""');
1827: htp.tableRowClose;
1828:

Line 1831: htp.tableData(cvalue=>wf_core.translate('TYPE'), calign=>'right', cattributes=>'id=""');

1827: htp.tableRowClose;
1828:
1829: -- Type
1830: htp.tableRowOpen;
1831: htp.tableData(cvalue=>wf_core.translate('TYPE'), calign=>'right', cattributes=>'id=""');
1832: htp.tableData(cvalue=>htf.bold(wfa_html_util.GetLookupMeaning('WFSTD_ATTRTYPE',
1833: attrtype)),
1834: calign=>'left',
1835: cattributes=>'bgcolor=white id=""');

Line 1841: htp.tableData(cvalue=>wf_core.translate('MAXLENGTH'), calign=>'right');

1837:
1838: -- Format
1839: htp.tableRowOpen;
1840: if (attrtype = 'VARCHAR2') then
1841: htp.tableData(cvalue=>wf_core.translate('MAXLENGTH'), calign=>'right');
1842: htp.tableData(cvalue=>htf.bold(nvl(format, '2000')), calign=>'left',
1843: cattributes=>'bgcolor=white');
1844: elsif (attrtype = 'LOOKUP') then
1845: htp.tableData(cvalue=>wf_core.translate('LOOKUP'), calign=>'right', cattributes=>'id=""');

Line 1845: htp.tableData(cvalue=>wf_core.translate('LOOKUP'), calign=>'right', cattributes=>'id=""');

1841: htp.tableData(cvalue=>wf_core.translate('MAXLENGTH'), calign=>'right');
1842: htp.tableData(cvalue=>htf.bold(nvl(format, '2000')), calign=>'left',
1843: cattributes=>'bgcolor=white');
1844: elsif (attrtype = 'LOOKUP') then
1845: htp.tableData(cvalue=>wf_core.translate('LOOKUP'), calign=>'right', cattributes=>'id=""');
1846:
1847: -- Get displayed name of lookup
1848: begin
1849: select WLT.DISPLAY_NAME

Line 1863: htp.tableData(cvalue=>wf_core.translate('FORMAT'), calign=>'right', cattributes=>'id=""');

1859:
1860: elsif format is not null then
1861: -- All others just print format only if it exists
1862: -- printing "default" is confusing UI.
1863: htp.tableData(cvalue=>wf_core.translate('FORMAT'), calign=>'right', cattributes=>'id=""');
1864: htp.tableData(cvalue=>htf.bold(nvl(format, '&'||'lt;'||
1865: wf_core.translate('DEFAULT')||'&'||'gt;')),
1866: calign=>'left',
1867: cattributes=>'bgcolor=white id=""');

Line 1865: wf_core.translate('DEFAULT')||'&'||'gt;')),

1861: -- All others just print format only if it exists
1862: -- printing "default" is confusing UI.
1863: htp.tableData(cvalue=>wf_core.translate('FORMAT'), calign=>'right', cattributes=>'id=""');
1864: htp.tableData(cvalue=>htf.bold(nvl(format, '&'||'lt;'||
1865: wf_core.translate('DEFAULT')||'&'||'gt;')),
1866: calign=>'left',
1867: cattributes=>'bgcolor=white id=""');
1868: end if;
1869: htp.tableRowClose;

Line 1877: wf_core.context('Wfa_Html', 'AttributeInfo', nid, name);

1873: htp.htmlClose;
1874: exception
1875: when others then
1876: rollback;
1877: wf_core.context('Wfa_Html', 'AttributeInfo', nid, name);
1878: wfa_html.Error;
1879: end AttributeInfo;
1880:
1881: --

Line 1965: wf_core.context('Wfa_Html', 'RespFrameSize', to_char(nid));

1961: return(respsize);
1962:
1963: exception
1964: when others then
1965: wf_core.context('Wfa_Html', 'RespFrameSize', to_char(nid));
1966: raise;
1967: end RespFrameSize;
1968:
1969: --

Line 1999: htp.title(wf_core.translate('WFA_DTITLE') || ' ' || realname);

1995:
1996: htp.htmlOpen;
1997: htp.headOpen;
1998: if (status = 'OPEN') then
1999: htp.title(wf_core.translate('WFA_DTITLE') || ' ' || realname);
2000: else
2001: htp.title(wf_core.translate('WFA_CDTITLE') || ' ' || realname);
2002: end if;
2003:

Line 2001: htp.title(wf_core.translate('WFA_CDTITLE') || ' ' || realname);

1997: htp.headOpen;
1998: if (status = 'OPEN') then
1999: htp.title(wf_core.translate('WFA_DTITLE') || ' ' || realname);
2000: else
2001: htp.title(wf_core.translate('WFA_CDTITLE') || ' ' || realname);
2002: end if;
2003:
2004: wfa_html.create_help_function('wf/links/det.htm?DETNOT');
2005:

Line 2019: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||

2015: -- Open frameset, and set focus to response window.
2016: -- NOTE: MSIE does not support focus method.
2017: if (instr(owa_util.get_cgi_env('HTTP_USER_AGENT'), 'MSIE') <> 0) then
2018: htp.p('');
2022: else
2023: htp.p('');
2022: else
2023: htp.p('');
2028: end if;
2029:

Line 2031: if (Wf_Core.translate('WF_INSTALL') = 'EMBEDDED') then

2027: 'wfa_html.LongDesc?p_token=WFA_DTITLE_TBAR">');
2028: end if;
2029:
2030: -- Descide to show Forms or not
2031: if (Wf_Core.translate('WF_INSTALL') = 'EMBEDDED') then
2032: showforms := 'T';
2033: else
2034: showforms := '';
2035: end if;

Line 2041: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||

2037: if (showforms is not null) then
2038: htp.p(' 2039: 'src="'||owa_util.get_owa_service_path||
2040: 'wfa_html.DetailFrame?nid='||nid||'&'||'showforms=T'||'" TITLE="' ||
2041: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||
2042: owa_util.get_owa_service_path ||
2043: 'wfa_html.LongDesc?p_token=WFA_DTITLE_TBAR">');
2044: else
2045: htp.p('

Line 2048: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||

2044: else
2045: htp.p(' 2046: 'src="'||owa_util.get_owa_service_path||
2047: 'wfa_html.DetailFrame?nid='||nid||'" TITLE="' ||
2048: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||
2049: owa_util.get_owa_service_path ||
2050: 'wfa_html.LongDesc?p_token=WFA_DTITLE_TBAR">');
2051: end if;
2052:

Line 2063: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||

2059:
2060: -- Note frame name BOTTOM is hardcoded into wfa_html.detail
2061: htp.p(' 2062: 'src="'||url_str||'" TITLE="' ||
2063: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||
2064: owa_util.get_owa_service_path ||
2065: 'wfa_html.LongDesc?p_token=WFA_DTITLE_TBAR">');
2066:
2067: htp.p('');

Line 2072: wf_core.context('Wfa_Html','Detail', nid);

2068: htp.htmlClose;
2069: exception
2070: when others then
2071: rollback;
2072: wf_core.context('Wfa_Html','Detail', nid);
2073: wfa_html.Error;
2074: end Detail;
2075:
2076: --

Line 2119: htf.title(wf_core.translate('WFA_DTITLE')||' '||realname)||

2115: result := htf.htmlOpen ||g_newLine;
2116: result := result || htf.headOpen||g_newLine;
2117: if (status = 'OPEN') then
2118: result := result ||
2119: htf.title(wf_core.translate('WFA_DTITLE')||' '||realname)||
2120: g_newLine;
2121: else
2122: result := result ||
2123: htf.title(wf_core.translate('WFA_CDTITLE')||' '||realname)||

Line 2123: htf.title(wf_core.translate('WFA_CDTITLE')||' '||realname)||

2119: htf.title(wf_core.translate('WFA_DTITLE')||' '||realname)||
2120: g_newLine;
2121: else
2122: result := result ||
2123: htf.title(wf_core.translate('WFA_CDTITLE')||' '||realname)||
2124: g_newLine;
2125: end if;
2126:
2127: --tr: dont execute the help function

Line 2141: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||

2137: -- NOTE: Do NOT set the focus here, because it is not supported on
2138: -- all platforms, and it is unknown at this point what browser will
2139: -- be used to display the html returned to the mailer.
2140: result := result||''||
2144: g_newLine;
2145: result := result ||

Line 2149: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||

2145: result := result ||
2146: ' 2147: 'src="'||agent||'/wfa_html.DetailFrame?nid='||to_char(nid)||
2148: '&'||'nkey='||key||'" TITLE="' ||
2149: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||
2150: agent ||
2151: 'wfa_html.LongDesc?p_token=WFA_DTITLE_TBAR">'||g_newLine;
2152: result := result ||
2153: '

Line 2156: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||

2152: result := result ||
2153: ' 2154: 'src="'||agent||'/wfa_html.ResponseFrame?nid='||to_char(nid)||
2155: '&'||'nkey='||key||'" TITLE="' ||
2156: WF_CORE.Translate('WFA_DTITLE_TBAR') || '" LONGDESC="' ||
2157: agent ||
2158: 'wfa_html.LongDesc?p_token=WFA_DTITLE_TBAR">'||g_newLine;
2159: result := result || ''||g_newLine;
2160: result := result || htf.htmlClose;

Line 2174: htf.title(wf_core.translate('WFA_LOGIN_REQUEST'))||

2170:
2171: result := htf.htmlOpen ||g_newLine;
2172: result := result || htf.headOpen||g_newLine;
2173: result := result ||
2174: htf.title(wf_core.translate('WFA_LOGIN_REQUEST'))||
2175: g_newLine;
2176: result := result || htf.headClose||g_newLine;
2177:
2178: result := result||''||g_newLine;

Line 2190: wf_core.context('Wfa_Html', 'Detail', to_char(nid), nkey, agent);

2186:
2187: return(result);
2188: exception
2189: when others then
2190: wf_core.context('Wfa_Html', 'Detail', to_char(nid), nkey, agent);
2191: raise;
2192: end Detail;
2193:
2194: --

Line 2234: htf.title(wf_core.translate('WFA_DTITLE')||' '||realname)||

2230: result := htf.htmlOpen ||g_newLine;
2231: result := result || htf.headOpen||g_newLine;
2232: if (status = 'OPEN') then
2233: result := result ||
2234: htf.title(wf_core.translate('WFA_DTITLE')||' '||realname)||
2235: g_newLine;
2236: else
2237: result := result ||
2238: htf.title(wf_core.translate('WFA_CDTITLE')||' '||realname)||

Line 2238: htf.title(wf_core.translate('WFA_CDTITLE')||' '||realname)||

2234: htf.title(wf_core.translate('WFA_DTITLE')||' '||realname)||
2235: g_newLine;
2236: else
2237: result := result ||
2238: htf.title(wf_core.translate('WFA_CDTITLE')||' '||realname)||
2239: g_newLine;
2240: end if;
2241:
2242: result := result || htf.headClose||g_newLine;

Line 2274: wf_core.context('Wfa_Html', 'Detail', to_char(nid), nkey, agent);

2270:
2271: return(result);
2272: exception
2273: when others then
2274: wf_core.context('Wfa_Html', 'Detail', to_char(nid), nkey, agent);
2275: raise;
2276: end Detail2;
2277:
2278:

Line 2300: wf_core.context('Wfa_Html', 'DetailLink', to_char(nid), nkey, agent);

2296: htp.p(m_html);
2297:
2298: exception
2299: when others then
2300: wf_core.context('Wfa_Html', 'DetailLink', to_char(nid), nkey, agent);
2301: raise;
2302: end DetailLink;
2303:
2304:

Line 2354: WF_CORE.Raise('WFA_MAX_COMMENTS');

2350: username := Wfa_Html.Authenticate(nid, nkey);
2351:
2352: -- Make sure the comments field is <= 240.
2353: if ( lengthb(comments) > 240 ) then
2354: WF_CORE.Raise('WFA_MAX_COMMENTS');
2355: end if;
2356:
2357: -- Submit the forward
2358: if (fmode = 'DELEGATE') then

Line 2384: htp.center(htf.bold(WF_CORE.Translate('WFA_ASSIGNED') || ': ' ||

2380: if (pseudo_login) then
2381: htp.htmlOpen;
2382: htp.headOpen;
2383:
2384: htp.center(htf.bold(WF_CORE.Translate('WFA_ASSIGNED') || ': ' ||
2385: WF_DIRECTORY.GetRoleDisplayName(upper(l_forwardee)) || '.'));
2386:
2387: htp.headClose;
2388: htp.htmlClose;

Line 2398: wf_core.context('Wfa_Html','SubmitForward', h_nid, nkey, forwardee,

2394:
2395: exception
2396: when others then
2397: rollback;
2398: wf_core.context('Wfa_Html','SubmitForward', h_nid, nkey, forwardee,
2399: comments);
2400: wfa_html.Error;
2401: end SubmitForward;
2402:

Line 2481: wf_core.context('Wfa_Html','SubmitResponse',

2477:
2478: exception
2479: when others then
2480: rollback;
2481: wf_core.context('Wfa_Html','SubmitResponse',
2482: h_nid, nkey, submit, forward);
2483: wfa_html.Error;
2484: end SubmitResponse;
2485:

Line 2529: htp.p(WF_CORE.Translate('WFA_NOSCRIPT'));

2525:
2526: htp.p(' ');
2527:
2528: htp.p('');
2531:
2532: htp.headClose;
2533:

Line 2596: wf_core.raise('WFNTF_NO_SELECT');

2592: begin
2593: -- There is always a dummy nid passed in. We will handle it here.
2594: -- Make sure subsequent index start at 2 not 1.
2595: if (to_number(h_nids.count) = 1) then
2596: wf_core.raise('WFNTF_NO_SELECT');
2597: end if;
2598:
2599: -- Fully resolve forwardee name
2600: l_forwardee := forwardee;

Line 2693: install_type := wf_core.translate('WF_INSTALL');

2689: ** then use the file prefix method of getting to the help
2690: ** content. Otherwise use the fnd function method to get and
2691: ** display the help content.
2692: */
2693: install_type := wf_core.translate('WF_INSTALL');
2694:
2695: if (install_type = 'STANDALONE') THEN
2696:
2697: help_prefix := '/OA_DOC/';

Line 2716: htp.p(WF_CORE.Translate('WFA_NOSCRIPT'));

2712:
2713: htp.p('');
2714:
2715: htp.p('');
2718:
2719: else
2720:

Line 2741: Wf_Core.Context('wfa_html', 'create_help_function',

2737: end if;
2738:
2739: exception
2740: when others then
2741: Wf_Core.Context('wfa_html', 'create_help_function',
2742: p_help_file);
2743: wfa_html.Error;
2744:
2745: END create_help_function;

Line 2870: wf_core.raise('WFENG_PRECESSION_EXCEED');

2866: || '%' || substr(l_str,3,2)
2867: || '%' || substr(l_str,5,2)
2868: || '%' || substr(l_str,7,2);
2869: else -- maximum precision
2870: wf_core.raise('WFENG_PRECESSION_EXCEED');
2871: end if;
2872: end if;
2873: end loop;
2874: return l_tmp;

Line 2877: Wf_Core.Context('wfa_html', 'conv_special_url_chars',

2873: end loop;
2874: return l_tmp;
2875: exception
2876: when others then
2877: Wf_Core.Context('wfa_html', 'conv_special_url_chars',
2878: p_url_token);
2879: wfa_html.Error;
2880: END conv_special_url_chars;
2881:

Line 3016: wf_core.raise('WFENG_PRECESSION_EXCEED');

3012: || '%' || substr(l_str,3,2)
3013: || '%' || substr(l_str,5,2)
3014: || '%' || substr(l_str,7,2);
3015: else -- maximum precision
3016: wf_core.raise('WFENG_PRECESSION_EXCEED');
3017: end if;
3018: end if;
3019: end loop;
3020: return l_tmp;

Line 3023: Wf_Core.Context('wfa_html', 'encode_url',

3019: end loop;
3020: return l_tmp;
3021: exception
3022: when others then
3023: Wf_Core.Context('wfa_html', 'encode_url',
3024: p_url_token);
3025: wfa_html.Error;
3026: END encode_url;
3027:

Line 3070: htp.p(wf_core.translate('WFA_FIND_USER'));

3066: AND status <> 'INACTIVE';
3067:
3068: END IF;
3069:
3070: htp.p(wf_core.translate('WFA_FIND_USER'));
3071: htp.p('2');
3072: htp.p(TO_CHAR(l_row_count));
3073: htp.p(wf_core.translate('NAME'));
3074: htp.p('40');

Line 3073: htp.p(wf_core.translate('NAME'));

3069:
3070: htp.p(wf_core.translate('WFA_FIND_USER'));
3071: htp.p('2');
3072: htp.p(TO_CHAR(l_row_count));
3073: htp.p(wf_core.translate('NAME'));
3074: htp.p('40');
3075: htp.p(wf_core.translate('DISPLAY_NAME'));
3076: htp.p('60');
3077:

Line 3075: htp.p(wf_core.translate('DISPLAY_NAME'));

3071: htp.p('2');
3072: htp.p(TO_CHAR(l_row_count));
3073: htp.p(wf_core.translate('NAME'));
3074: htp.p('40');
3075: htp.p(wf_core.translate('DISPLAY_NAME'));
3076: htp.p('60');
3077:
3078: IF (p_titles_only = 'N') THEN
3079:

Line 3106: wf_core.context('Wfa_Html', 'user_lov',p_titles_only, p_find_criteria);

3102: rollback;
3103: if (c_user_lov%isopen) then
3104: close c_user_lov;
3105: end if;
3106: wf_core.context('Wfa_Html', 'user_lov',p_titles_only, p_find_criteria);
3107: wfa_html.Error;
3108: end User_Lov;
3109:
3110: procedure logout is

Line 3119: htp.title(wf_core.translate('WFA_HOMETITLE'));

3115: owa_cookie.send('WDB_GATEWAY_LOGOUT','YES', '', '/');
3116: owa_util.http_header_close;
3117: htp.htmlOpen;
3118: htp.headOpen;
3119: htp.title(wf_core.translate('WFA_HOMETITLE'));
3120: wfa_html.create_help_function('wf/links/web.htm?WEBHOME');
3121: htp.headClose;
3122:
3123: -- Page header

Line 3124: wfa_sec.Header(FALSE, '', wf_core.translate('WF_WORKFLOW_TITLE')||

3120: wfa_html.create_help_function('wf/links/web.htm?WEBHOME');
3121: htp.headClose;
3122:
3123: -- Page header
3124: wfa_sec.Header(FALSE, '', wf_core.translate('WF_WORKFLOW_TITLE')||
3125: ' - '|| wf_core.translate('WF_VERSION'), FALSE);
3126:
3127: htp.center(wf_core.translate('LOGOUT_MESSAGE')
3128: ||' '||htf.anchor(curl=>wfa_html.base_url||'/wfa_html.home',

Line 3125: ' - '|| wf_core.translate('WF_VERSION'), FALSE);

3121: htp.headClose;
3122:
3123: -- Page header
3124: wfa_sec.Header(FALSE, '', wf_core.translate('WF_WORKFLOW_TITLE')||
3125: ' - '|| wf_core.translate('WF_VERSION'), FALSE);
3126:
3127: htp.center(wf_core.translate('LOGOUT_MESSAGE')
3128: ||' '||htf.anchor(curl=>wfa_html.base_url||'/wfa_html.home',
3129: ctext=>wf_core.translate('CLICK_HOME')));

Line 3127: htp.center(wf_core.translate('LOGOUT_MESSAGE')

3123: -- Page header
3124: wfa_sec.Header(FALSE, '', wf_core.translate('WF_WORKFLOW_TITLE')||
3125: ' - '|| wf_core.translate('WF_VERSION'), FALSE);
3126:
3127: htp.center(wf_core.translate('LOGOUT_MESSAGE')
3128: ||' '||htf.anchor(curl=>wfa_html.base_url||'/wfa_html.home',
3129: ctext=>wf_core.translate('CLICK_HOME')));
3130:
3131: wfa_sec.Footer;

Line 3129: ctext=>wf_core.translate('CLICK_HOME')));

3125: ' - '|| wf_core.translate('WF_VERSION'), FALSE);
3126:
3127: htp.center(wf_core.translate('LOGOUT_MESSAGE')
3128: ||' '||htf.anchor(curl=>wfa_html.base_url||'/wfa_html.home',
3129: ctext=>wf_core.translate('CLICK_HOME')));
3130:
3131: wfa_sec.Footer;
3132: htp.htmlClose;
3133: exception

Line 3135: wf_core.context('Wfa_Html','logout');

3131: wfa_sec.Footer;
3132: htp.htmlClose;
3133: exception
3134: when others then
3135: wf_core.context('Wfa_Html','logout');
3136: wfa_html.Error;
3137: end logout;
3138:
3139:

Line 3174: admin_role := wf_core.translate('WF_ADMIN_ROLE');

3170:
3171: wf_directory.GetRoleInfo(username, realname, s0, s0, s0, s0);
3172:
3173: admin_mode := 'N';
3174: admin_role := wf_core.translate('WF_ADMIN_ROLE');
3175: if (admin_role = '*' or
3176: Wf_Directory.IsPerformer(username, admin_role)) then
3177: admin_mode := 'Y';
3178: end if;

Line 3182: htp.title(wf_core.translate('WFA_HOMETITLE')||' - '||realname);

3178: end if;
3179:
3180: htp.htmlOpen;
3181: htp.headOpen;
3182: htp.title(wf_core.translate('WFA_HOMETITLE')||' - '||realname);
3183: htp.headClose;
3184:
3185: wfa_html.homemenu;
3186:

Line 3191: wf_core.context('Wfa_Html','home');

3187: htp.htmlClose;
3188: exception
3189: when others then
3190: rollback;
3191: wf_core.context('Wfa_Html','home');
3192: wfa_html.Error;
3193: end home;
3194:
3195:

Line 3208: htp.title(wf_core.translate('WFA_HOMETITLE'));

3204:
3205: -- Set page title
3206: htp.htmlOpen;
3207: htp.headOpen;
3208: htp.title(wf_core.translate('WFA_HOMETITLE'));
3209: wfa_html.create_help_function('wf/links/web.htm?WEBHOME');
3210: htp.headClose;
3211: -- Page header
3212: wfa_sec.Header(FALSE, '', wf_core.translate('WF_WORKFLOW_TITLE')||

Line 3212: wfa_sec.Header(FALSE, '', wf_core.translate('WF_WORKFLOW_TITLE')||

3208: htp.title(wf_core.translate('WFA_HOMETITLE'));
3209: wfa_html.create_help_function('wf/links/web.htm?WEBHOME');
3210: htp.headClose;
3211: -- Page header
3212: wfa_sec.Header(FALSE, '', wf_core.translate('WF_WORKFLOW_TITLE')||
3213: ' - '|| wf_core.translate('WF_VERSION'), TRUE);
3214: wfa_sec.Footer;
3215: htp.htmlClose;
3216: end;

Line 3213: ' - '|| wf_core.translate('WF_VERSION'), TRUE);

3209: wfa_html.create_help_function('wf/links/web.htm?WEBHOME');
3210: htp.headClose;
3211: -- Page header
3212: wfa_sec.Header(FALSE, '', wf_core.translate('WF_WORKFLOW_TITLE')||
3213: ' - '|| wf_core.translate('WF_VERSION'), TRUE);
3214: wfa_sec.Footer;
3215: htp.htmlClose;
3216: end;
3217:

Line 3234: admin_role := wf_core.translate('WF_ADMIN_ROLE');

3230: username := upper(username);
3231: wf_directory.GetRoleInfo(username, realname, s0, s0, s0, s0);
3232:
3233: admin_mode := 'N';
3234: admin_role := wf_core.translate('WF_ADMIN_ROLE');
3235: if (admin_role = '*' or
3236: Wf_Directory.IsPerformer(username, admin_role)) then
3237: admin_mode := 'Y';
3238: end if;

Line 3253: htp.p(WF_CORE.Translate('WFA_NOSCRIPT'));

3249: }');
3250: htp.p('');
3251:
3252: htp.p('');
3255:
3256:
3257: htp.headClose;

Line 3266: htp.p(WF_CORE.Translate('WFA_NOSCRIPT'));

3262: htp.p('launch_nav();');
3263: htp.p('');
3264:
3265: htp.p('');
3268:
3269: wfa_sec.Footer;
3270: htp.htmlClose;

Line 3304: admin_role := wf_core.translate('WF_ADMIN_ROLE');

3300: username := upper(username);
3301: wf_directory.GetRoleInfo(username, realname, s0, s0, s0, s0);
3302:
3303: admin_mode := 'N';
3304: admin_role := wf_core.translate('WF_ADMIN_ROLE');
3305: if (admin_role = '*' or
3306: Wf_Directory.IsPerformer(username, admin_role)) then
3307: admin_mode := 'Y';
3308: end if;

Line 3313: htp.title(wf_core.translate('WFA_HOMETITLE'));

3309:
3310: -- Set page title
3311: htp.htmlOpen;
3312: htp.headOpen;
3313: htp.title(wf_core.translate('WFA_HOMETITLE'));
3314: wfa_html.create_help_function('wf/links/web.htm?WEBHOME');
3315:
3316: htp.headClose;
3317:

Line 3335: htp.p('Oracle Workflow ' || wf_core.translate('WF_VERSION') || '
');

3331: if origin = 'NORMAL' then
3332:
3333: /* ### Do not display version
3334: -- Version
3335: htp.p('Oracle Workflow ' || wf_core.translate('WF_VERSION') || '
');
3336:
3337: -- User, Admin Mode
3338: htp.p(realname || ' (' || username || ')');
3339: admin_role := wf_core.translate('WF_ADMIN_ROLE');

Line 3339: admin_role := wf_core.translate('WF_ADMIN_ROLE');

3335: htp.p('Oracle Workflow ' || wf_core.translate('WF_VERSION') || '
');
3336:
3337: -- User, Admin Mode
3338: htp.p(realname || ' (' || username || ')');
3339: admin_role := wf_core.translate('WF_ADMIN_ROLE');
3340: if (admin_mode = 'Y') then
3341: htp.p(' - ' || wf_core.translate('WF_ADMIN'));
3342: end if;
3343: htp.p('
');

Line 3341: htp.p(' - ' || wf_core.translate('WF_ADMIN'));

3337: -- User, Admin Mode
3338: htp.p(realname || ' (' || username || ')');
3339: admin_role := wf_core.translate('WF_ADMIN_ROLE');
3340: if (admin_mode = 'Y') then
3341: htp.p(' - ' || wf_core.translate('WF_ADMIN'));
3342: end if;
3343: htp.p('
');
3344: */
3345:

Line 3359: ' ' || wf_core.translate('OPEN_NOTIFICATIONS') || ')';

3355: end if;
3356:
3357: if origin = 'NORMAL' then
3358: wrklstbuf := ' ('|| to_char(wf_notification.WorkCount(username)) ||
3359: ' ' || wf_core.translate('OPEN_NOTIFICATIONS') || ')';
3360: htp.tableopen(calign=>'LEFT', cattributes=>'WIDTH=80% summary=""');
3361: else
3362: -- dont print the "n open notifications" message next to Worklist
3363: -- because worklist will be displayed.

Line 3373: wf_core.translate('OPEN_NOTIFICATIONS')||'">'||

3369:
3370: -- WorkList Event
3371: htp.tablerowopen;
3372: htp.tabledata(''||<br>
<b>3373:              wf_core.translate('OPEN_NOTIFICATIONS')||''||
3374: anchor_tag||owa_util.get_owa_service_path ||
3375: 'wfa_html.WorkList?user='||username||'&'||'resetcookie=1>'||
3376: wf_core.translate('WFA_WTITLE') || '' ||
3377: wrklstbuf, cattributes=>'id=""');

Line 3376: wf_core.translate('WFA_WTITLE') || '' ||

3372: htp.tabledata(''||<br>
3373:              wf_core.translate('OPEN_NOTIFICATIONS')||''||
3374: anchor_tag||owa_util.get_owa_service_path ||
3375: 'wfa_html.WorkList?user='||username||'&'||'resetcookie=1>'||
3376: wf_core.translate('WFA_WTITLE') || '' ||
3377: wrklstbuf, cattributes=>'id=""');
3378:
3379: htp.tabledata(''||<br>
3380:              wf_core.translate('WFE_LIST_EVENTS_TITLE')||''||

Line 3380: wf_core.translate('WFE_LIST_EVENTS_TITLE')||'">'||

3376: wf_core.translate('WFA_WTITLE') || '' ||
3377: wrklstbuf, cattributes=>'id=""');
3378:
3379: htp.tabledata(''||<br>
<b>3380:              wf_core.translate('WFE_LIST_EVENTS_TITLE')||''||
3381: anchor_tag||owa_util.get_owa_service_path ||
3382: 'wf_event_html.listevents?resetcookie=T>' ||
3383: wf_core.translate('WFE_LIST_EVENTS_TITLE')|| '', cattributes=>'id=""');
3384: htp.tablerowclose;

Line 3383: wf_core.translate('WFE_LIST_EVENTS_TITLE')|| '', cattributes=>'id=""');

3379: htp.tabledata(''||<br>
3380:              wf_core.translate('WFE_LIST_EVENTS_TITLE')||''||
3381: anchor_tag||owa_util.get_owa_service_path ||
3382: 'wf_event_html.listevents?resetcookie=T>' ||
3383: wf_core.translate('WFE_LIST_EVENTS_TITLE')|| '', cattributes=>'id=""');
3384: htp.tablerowclose;
3385:
3386: -- Find Notification Find Event
3387: htp.tablerowopen;

Line 3389: wf_core.translate('WFA_FINDTITLE')||'">'||

3385:
3386: -- Find Notification Find Event
3387: htp.tablerowopen;
3388: htp.tabledata(''||<br>
<b>3389:              wf_core.translate('WFA_FINDTITLE')||''||
3390: anchor_tag||owa_util.get_owa_service_path || 'wfa_html.Find>' ||
3391: wf_core.translate('WFA_FINDTITLE') || '', cattributes=>'id=""');
3392:
3393: htp.tabledata(''||<br>
</p>
<h5>Line 3391:              wf_core.translate('WFA_FINDTITLE') || '</A>', cattributes=>'id=

3387: htp.tablerowopen;
3388: htp.tabledata(''||<br>
3389:              wf_core.translate('WFA_FINDTITLE')||''||
3390: anchor_tag||owa_util.get_owa_service_path || 'wfa_html.Find>' ||
3391: wf_core.translate('WFA_FINDTITLE') || '', cattributes=>'id=""');
3392:
3393: htp.tabledata(''||<br>
3394:              wf_core.translate('WFE_FIND_EVENT_TITLE')||''||
3395: anchor_tag||owa_util.get_owa_service_path ||

Line 3394: wf_core.translate('WFE_FIND_EVENT_TITLE')||'">'||

3390: anchor_tag||owa_util.get_owa_service_path || 'wfa_html.Find>' ||
3391: wf_core.translate('WFA_FINDTITLE') || '', cattributes=>'id=""');
3392:
3393: htp.tabledata(''||<br>
<b>3394:              wf_core.translate('WFE_FIND_EVENT_TITLE')||''||
3395: anchor_tag||owa_util.get_owa_service_path ||
3396: 'wf_event_html.findevent>' ||
3397: wf_core.translate('WFE_FIND_EVENT_TITLE')|| '', cattributes=>'id=""');
3398: htp.tablerowclose;

Line 3397: wf_core.translate('WFE_FIND_EVENT_TITLE')|| '', cattributes=>'id=""');

3393: htp.tabledata(''||<br>
3394:              wf_core.translate('WFE_FIND_EVENT_TITLE')||''||
3395: anchor_tag||owa_util.get_owa_service_path ||
3396: 'wf_event_html.findevent>' ||
3397: wf_core.translate('WFE_FIND_EVENT_TITLE')|| '', cattributes=>'id=""');
3398: htp.tablerowclose;
3399:
3400: -- Find Route Systems
3401: htp.tablerowopen;

Line 3403: wf_core.translate('WFRTG_LIST_TITLE')||'">'||

3399:
3400: -- Find Route Systems
3401: htp.tablerowopen;
3402: htp.tabledata(''||<br>
<b>3403:              wf_core.translate('WFRTG_LIST_TITLE')||''||
3404: anchor_tag||owa_util.get_owa_service_path || 'wf_route.Find>' ||
3405: wf_core.translate('WFRTG_FIND_TITLE') || '', cattributes=>'id=""');
3406:
3407: htp.tabledata(''||<br>
</p>
<h5>Line 3405:              wf_core.translate('WFRTG_FIND_TITLE') || '</A>', cattributes=>'id=

3401: htp.tablerowopen;
3402: htp.tabledata(''||<br>
3403:              wf_core.translate('WFRTG_LIST_TITLE')||''||
3404: anchor_tag||owa_util.get_owa_service_path || 'wf_route.Find>' ||
3405: wf_core.translate('WFRTG_FIND_TITLE') || '', cattributes=>'id=""');
3406:
3407: htp.tabledata(''||<br>
3408:              wf_core.translate('WFE_LIST_SYSTEMS_TITLE')||''||
3409: anchor_tag||owa_util.get_owa_service_path ||

Line 3408: wf_core.translate('WFE_LIST_SYSTEMS_TITLE')||'">'||

3404: anchor_tag||owa_util.get_owa_service_path || 'wf_route.Find>' ||
3405: wf_core.translate('WFRTG_FIND_TITLE') || '', cattributes=>'id=""');
3406:
3407: htp.tabledata(''||<br>
<b>3408:              wf_core.translate('WFE_LIST_SYSTEMS_TITLE')||''||
3409: anchor_tag||owa_util.get_owa_service_path ||
3410: 'wf_event_html.listsystems?resetcookie=T>' ||
3411: wf_core.translate('WFE_LIST_SYSTEMS_TITLE')|| '', cattributes=>'id=""');
3412: htp.tablerowclose;

Line 3411: wf_core.translate('WFE_LIST_SYSTEMS_TITLE')|| '', cattributes=>'id=""');

3407: htp.tabledata(''||<br>
3408:              wf_core.translate('WFE_LIST_SYSTEMS_TITLE')||''||
3409: anchor_tag||owa_util.get_owa_service_path ||
3410: 'wf_event_html.listsystems?resetcookie=T>' ||
3411: wf_core.translate('WFE_LIST_SYSTEMS_TITLE')|| '', cattributes=>'id=""');
3412: htp.tablerowclose;
3413:
3414: -- Find Process (Monitor) Find system
3415: htp.tablerowopen;

Line 3417: wf_core.translate('WFMON_FINDTITLE')||'">'||

3413:
3414: -- Find Process (Monitor) Find system
3415: htp.tablerowopen;
3416: htp.tabledata(''||<br>
<b>3417:              wf_core.translate('WFMON_FINDTITLE')||''||
3418: anchor_tag||owa_util.get_owa_service_path ||
3419: 'wf_monitor.Find_Instance>' ||
3420: wf_core.translate('WFMON_FINDTITLE') || '', cattributes=>'id=""');
3421:

Line 3420: wf_core.translate('WFMON_FINDTITLE') || '', cattributes=>'id=""');

3416: htp.tabledata(''||<br>
3417:              wf_core.translate('WFMON_FINDTITLE')||''||
3418: anchor_tag||owa_util.get_owa_service_path ||
3419: 'wf_monitor.Find_Instance>' ||
3420: wf_core.translate('WFMON_FINDTITLE') || '', cattributes=>'id=""');
3421:
3422: htp.tabledata(''||<br>
3423:              wf_core.translate('WFE_FIND_SYSTEM_TITLE')||''||
3424: anchor_tag||owa_util.get_owa_service_path ||

Line 3423: wf_core.translate('WFE_FIND_SYSTEM_TITLE')||'">'||

3419: 'wf_monitor.Find_Instance>' ||
3420: wf_core.translate('WFMON_FINDTITLE') || '', cattributes=>'id=""');
3421:
3422: htp.tabledata(''||<br>
<b>3423:              wf_core.translate('WFE_FIND_SYSTEM_TITLE')||''||
3424: anchor_tag||owa_util.get_owa_service_path ||
3425: 'wf_event_html.findsystem>' ||
3426: wf_core.translate('WFE_FIND_SYSTEM_TITLE')|| '', cattributes=>'id=""');
3427: htp.tablerowclose;

Line 3426: wf_core.translate('WFE_FIND_SYSTEM_TITLE')|| '', cattributes=>'id=""');

3422: htp.tabledata(''||<br>
3423:              wf_core.translate('WFE_FIND_SYSTEM_TITLE')||''||
3424: anchor_tag||owa_util.get_owa_service_path ||
3425: 'wf_event_html.findsystem>' ||
3426: wf_core.translate('WFE_FIND_SYSTEM_TITLE')|| '', cattributes=>'id=""');
3427: htp.tablerowclose;
3428:
3429: -- User Preference Agents
3430: htp.tablerowopen;

Line 3432: wf_core.translate('WFPREF_EDIT_PREFS_TITLE')||'">'||

3428:
3429: -- User Preference Agents
3430: htp.tablerowopen;
3431: htp.tabledata(''||<br>
<b>3432:              wf_core.translate('WFPREF_EDIT_PREFS_TITLE')||''||
3433: anchor_tag||owa_util.get_owa_service_path ||
3434: 'wf_pref.edit>' ||
3435: wf_core.translate('WFPREF_EDIT_PREFS_TITLE') || '', cattributes=>'id=""');
3436:

Line 3435: wf_core.translate('WFPREF_EDIT_PREFS_TITLE') || '', cattributes=>'id=""');

3431: htp.tabledata(''||<br>
3432:              wf_core.translate('WFPREF_EDIT_PREFS_TITLE')||''||
3433: anchor_tag||owa_util.get_owa_service_path ||
3434: 'wf_pref.edit>' ||
3435: wf_core.translate('WFPREF_EDIT_PREFS_TITLE') || '', cattributes=>'id=""');
3436:
3437: htp.tabledata(''||<br>
3438:              wf_core.translate('WFE_LIST_AGENTS_TITLE')||''||
3439: anchor_tag||owa_util.get_owa_service_path ||

Line 3438: wf_core.translate('WFE_LIST_AGENTS_TITLE')||'">'||

3434: 'wf_pref.edit>' ||
3435: wf_core.translate('WFPREF_EDIT_PREFS_TITLE') || '', cattributes=>'id=""');
3436:
3437: htp.tabledata(''||<br>
<b>3438:              wf_core.translate('WFE_LIST_AGENTS_TITLE')||''||
3439: anchor_tag||owa_util.get_owa_service_path ||
3440: 'wf_event_html.listagents?resetcookie=T>' ||
3441: wf_core.translate('WFE_LIST_AGENTS_TITLE')|| '', cattributes=>'id=""');
3442: htp.tablerowclose;

Line 3441: wf_core.translate('WFE_LIST_AGENTS_TITLE')|| '', cattributes=>'id=""');

3437: htp.tabledata(''||<br>
3438:              wf_core.translate('WFE_LIST_AGENTS_TITLE')||''||
3439: anchor_tag||owa_util.get_owa_service_path ||
3440: 'wf_event_html.listagents?resetcookie=T>' ||
3441: wf_core.translate('WFE_LIST_AGENTS_TITLE')|| '', cattributes=>'id=""');
3442: htp.tablerowclose;
3443:
3444: -- Global Perference Find Agent
3445: htp.tablerowopen;

Line 3447: wf_core.translate('WFPREF_EDIT_DEF_PREFS_TITLE')||'">'||

3443:
3444: -- Global Perference Find Agent
3445: htp.tablerowopen;
3446: htp.tabledata(''||<br>
<b>3447:              wf_core.translate('WFPREF_EDIT_DEF_PREFS_TITLE')||''||
3448: anchor_tag||owa_util.get_owa_service_path ||
3449: 'wf_pref.edit?edit_defaults=Y>' ||
3450: wf_core.translate('WFPREF_EDIT_DEF_PREFS_TITLE') || '', cattributes=>'id=""');
3451:

Line 3450: wf_core.translate('WFPREF_EDIT_DEF_PREFS_TITLE') || '', cattributes=>'id=""');

3446: htp.tabledata(''||<br>
3447:              wf_core.translate('WFPREF_EDIT_DEF_PREFS_TITLE')||''||
3448: anchor_tag||owa_util.get_owa_service_path ||
3449: 'wf_pref.edit?edit_defaults=Y>' ||
3450: wf_core.translate('WFPREF_EDIT_DEF_PREFS_TITLE') || '', cattributes=>'id=""');
3451:
3452: htp.tabledata(''||<br>
3453:              wf_core.translate('WFE_FIND_AGENT_TITLE')||''||
3454: anchor_tag||owa_util.get_owa_service_path ||

Line 3453: wf_core.translate('WFE_FIND_AGENT_TITLE')||'">'||

3449: 'wf_pref.edit?edit_defaults=Y>' ||
3450: wf_core.translate('WFPREF_EDIT_DEF_PREFS_TITLE') || '', cattributes=>'id=""');
3451:
3452: htp.tabledata(''||<br>
<b>3453:              wf_core.translate('WFE_FIND_AGENT_TITLE')||''||
3454: anchor_tag||owa_util.get_owa_service_path ||
3455: 'wf_event_html.findagent>' ||
3456: wf_core.translate('WFE_FIND_AGENT_TITLE')|| '', cattributes=>'id=""');
3457: htp.tablerowclose;

Line 3456: wf_core.translate('WFE_FIND_AGENT_TITLE')|| '', cattributes=>'id=""');

3452: htp.tabledata(''||<br>
3453:              wf_core.translate('WFE_FIND_AGENT_TITLE')||''||
3454: anchor_tag||owa_util.get_owa_service_path ||
3455: 'wf_event_html.findagent>' ||
3456: wf_core.translate('WFE_FIND_AGENT_TITLE')|| '', cattributes=>'id=""');
3457: htp.tablerowclose;
3458:
3459: -- Document Nodes Subscriptions
3460: htp.tablerowopen;

Line 3462: wf_core.translate('WFDM_EDIT_NODE_TITLE')||'">'||

3458:
3459: -- Document Nodes Subscriptions
3460: htp.tablerowopen;
3461: htp.tabledata(''||<br>
<b>3462:              wf_core.translate('WFDM_EDIT_NODE_TITLE')||''||
3463: anchor_tag||owa_util.get_owa_service_path ||
3464: 'fnd_document_management.dm_nodes_display>' ||
3465: wf_core.translate('WFDM_EDIT_NODE_TITLE')|| '', cattributes=>'id=""');
3466:

Line 3465: wf_core.translate('WFDM_EDIT_NODE_TITLE')|| '', cattributes=>'id=""');

3461: htp.tabledata(''||<br>
3462:              wf_core.translate('WFDM_EDIT_NODE_TITLE')||''||
3463: anchor_tag||owa_util.get_owa_service_path ||
3464: 'fnd_document_management.dm_nodes_display>' ||
3465: wf_core.translate('WFDM_EDIT_NODE_TITLE')|| '', cattributes=>'id=""');
3466:
3467: htp.tabledata(''||<br>
3468:              wf_core.translate('WFE_LIST_SUBSC_TITLE')||''||
3469: anchor_tag||owa_util.get_owa_service_path ||

Line 3468: wf_core.translate('WFE_LIST_SUBSC_TITLE')||'">'||

3464: 'fnd_document_management.dm_nodes_display>' ||
3465: wf_core.translate('WFDM_EDIT_NODE_TITLE')|| '', cattributes=>'id=""');
3466:
3467: htp.tabledata(''||<br>
<b>3468:              wf_core.translate('WFE_LIST_SUBSC_TITLE')||''||
3469: anchor_tag||owa_util.get_owa_service_path ||
3470: 'wf_event_html.listsubscriptions?resetcookie=T>' ||
3471: wf_core.translate('WFE_LIST_SUBSC_TITLE')|| '', cattributes=>'id=""');
3472: htp.tablerowclose;

Line 3471: wf_core.translate('WFE_LIST_SUBSC_TITLE')|| '', cattributes=>'id=""');

3467: htp.tabledata(''||<br>
3468:              wf_core.translate('WFE_LIST_SUBSC_TITLE')||''||
3469: anchor_tag||owa_util.get_owa_service_path ||
3470: 'wf_event_html.listsubscriptions?resetcookie=T>' ||
3471: wf_core.translate('WFE_LIST_SUBSC_TITLE')|| '', cattributes=>'id=""');
3472: htp.tablerowclose;
3473:
3474: -- Item Type Definition Find Subscriptions
3475: htp.tablerowopen;

Line 3477: wf_core.translate('WFITD_ITEM_TYPE_DEFINITION')||'">'||

3473:
3474: -- Item Type Definition Find Subscriptions
3475: htp.tablerowopen;
3476: htp.tabledata(''||<br>
<b>3477:              wf_core.translate('WFITD_ITEM_TYPE_DEFINITION')||''||
3478: anchor_tag||owa_util.get_owa_service_path ||
3479: 'wf_item_definition.find_item_type>' ||
3480: wf_core.translate('WFITD_ITEM_TYPE_DEFINITION')|| '', cattributes=>'id=""');
3481:

Line 3480: wf_core.translate('WFITD_ITEM_TYPE_DEFINITION')|| '', cattributes=>'id=""');

3476: htp.tabledata(''||<br>
3477:              wf_core.translate('WFITD_ITEM_TYPE_DEFINITION')||''||
3478: anchor_tag||owa_util.get_owa_service_path ||
3479: 'wf_item_definition.find_item_type>' ||
3480: wf_core.translate('WFITD_ITEM_TYPE_DEFINITION')|| '', cattributes=>'id=""');
3481:
3482: htp.tabledata(''||<br>
3483:              wf_core.translate('WFE_FIND_SUBSC_TITLE')||''||
3484: anchor_tag||owa_util.get_owa_service_path ||

Line 3483: wf_core.translate('WFE_FIND_SUBSC_TITLE')||'">'||

3479: 'wf_item_definition.find_item_type>' ||
3480: wf_core.translate('WFITD_ITEM_TYPE_DEFINITION')|| '', cattributes=>'id=""');
3481:
3482: htp.tabledata(''||<br>
<b>3483:              wf_core.translate('WFE_FIND_SUBSC_TITLE')||''||
3484: anchor_tag||owa_util.get_owa_service_path ||
3485: 'wf_event_html.findsubscription>' ||
3486: wf_core.translate('WFE_FIND_SUBSC_TITLE')|| '', cattributes=>'id=""');
3487: htp.tablerowclose;

Line 3486: wf_core.translate('WFE_FIND_SUBSC_TITLE')|| '', cattributes=>'id=""');

3482: htp.tabledata(''||<br>
3483:              wf_core.translate('WFE_FIND_SUBSC_TITLE')||''||
3484: anchor_tag||owa_util.get_owa_service_path ||
3485: 'wf_event_html.findsubscription>' ||
3486: wf_core.translate('WFE_FIND_SUBSC_TITLE')|| '', cattributes=>'id=""');
3487: htp.tablerowclose;
3488:
3489: -- Launch Process Check Setup
3490: htp.tablerowopen;

Line 3492: wf_core.translate('WFINIT_ITEM_TYPE_TITLE')||'">'||

3488:
3489: -- Launch Process Check Setup
3490: htp.tablerowopen;
3491: htp.tabledata(''||<br>
<b>3492:              wf_core.translate('WFINIT_ITEM_TYPE_TITLE')||''||
3493: anchor_tag||owa_util.get_owa_service_path ||
3494: 'wf_initiate.itemtype>' ||
3495: wf_core.translate('WFINIT_ITEM_TYPE_TITLE')|| '', cattributes=>'id=""');
3496:

Line 3495: wf_core.translate('WFINIT_ITEM_TYPE_TITLE')|| '', cattributes=>'id=""');

3491: htp.tabledata(''||<br>
3492:              wf_core.translate('WFINIT_ITEM_TYPE_TITLE')||''||
3493: anchor_tag||owa_util.get_owa_service_path ||
3494: 'wf_initiate.itemtype>' ||
3495: wf_core.translate('WFINIT_ITEM_TYPE_TITLE')|| '', cattributes=>'id=""');
3496:
3497: htp.tabledata(''||<br>
3498:              wf_core.translate('WFE_CHECK_ALL_TITLE')||''||
3499: anchor_tag||owa_util.get_owa_service_path ||

Line 3498: wf_core.translate('WFE_CHECK_ALL_TITLE')||'">'||

3494: 'wf_initiate.itemtype>' ||
3495: wf_core.translate('WFINIT_ITEM_TYPE_TITLE')|| '', cattributes=>'id=""');
3496:
3497: htp.tabledata(''||<br>
<b>3498:              wf_core.translate('WFE_CHECK_ALL_TITLE')||''||
3499: anchor_tag||owa_util.get_owa_service_path ||
3500: 'wf_setup.check_all>' ||
3501: wf_core.translate('WFE_CHECK_ALL_TITLE')|| '', cattributes=>'id=""');
3502: htp.tablerowclose;

Line 3501: wf_core.translate('WFE_CHECK_ALL_TITLE')|| '', cattributes=>'id=""');

3497: htp.tabledata(''||<br>
3498:              wf_core.translate('WFE_CHECK_ALL_TITLE')||''||
3499: anchor_tag||owa_util.get_owa_service_path ||
3500: 'wf_setup.check_all>' ||
3501: wf_core.translate('WFE_CHECK_ALL_TITLE')|| '', cattributes=>'id=""');
3502: htp.tablerowclose;
3503:
3504: -- Demo Raise Business Event
3505: htp.tablerowopen;

Line 3507: wf_core.translate('WF_DEMO_MENU')||'">'||

3503:
3504: -- Demo Raise Business Event
3505: htp.tablerowopen;
3506: htp.tabledata(''||<br>
<b>3507:              wf_core.translate('WF_DEMO_MENU')||''||
3508: anchor_tag||owa_util.get_owa_service_path ||
3509: 'wf_demo.home>' ||
3510: wf_core.translate('WF_DEMO_MENU')|| '', cattributes=>'id=""');
3511:

Line 3510: wf_core.translate('WF_DEMO_MENU')|| '', cattributes=>'id=""');

3506: htp.tabledata(''||<br>
3507:              wf_core.translate('WF_DEMO_MENU')||''||
3508: anchor_tag||owa_util.get_owa_service_path ||
3509: 'wf_demo.home>' ||
3510: wf_core.translate('WF_DEMO_MENU')|| '', cattributes=>'id=""');
3511:
3512: htp.tabledata(''||<br>
3514:              wf_core.translate('WFE_RAISE_EVENT_TITLE')||''||

Line 3514: wf_core.translate('WFE_RAISE_EVENT_TITLE')||'">'||

3510: wf_core.translate('WF_DEMO_MENU')|| '', cattributes=>'id=""');
3511:
3512: htp.tabledata(''||<br>
<b>3514:              wf_core.translate('WFE_RAISE_EVENT_TITLE')||''||
3515: anchor_tag||owa_util.get_owa_service_path ||
3516: 'wf_event_html.entereventdetails?p_event_name=%>' ||
3517: wf_core.translate('WFE_RAISE_EVENT_TITLE')|| '', cattributes=>'id=""');
3518: htp.tablerowclose;

Line 3517: wf_core.translate('WFE_RAISE_EVENT_TITLE')|| '', cattributes=>'id=""');

3513: 'FNDWATHS.gif" height=18 width=18 alt="'||
3514: wf_core.translate('WFE_RAISE_EVENT_TITLE')||'">'||
3515: anchor_tag||owa_util.get_owa_service_path ||
3516: 'wf_event_html.entereventdetails?p_event_name=%>' ||
3517: wf_core.translate('WFE_RAISE_EVENT_TITLE')|| '', cattributes=>'id=""');
3518: htp.tablerowclose;
3519:
3520: -- System Signup
3521: htp.tablerowopen;

Line 3527: wf_core.translate('WFE_SYSTEM_SIGNUP_TITLE')||'">'||

3523: htp.tabledata('', cattributes=>'id=""');
3524:
3525: htp.tabledata(''||<br>
<b>3527:              wf_core.translate('WFE_SYSTEM_SIGNUP_TITLE')||''||
3528: anchor_tag||owa_util.get_owa_service_path ||
3529: 'wf_event_html.entereventdetails?p_event_name=oracle.apps.wf.event.system.signup>' ||
3530: wf_core.translate('WFE_SYSTEM_SIGNUP_TITLE')|| '', cattributes=>'id=""');
3531: htp.tablerowclose;

Line 3530: wf_core.translate('WFE_SYSTEM_SIGNUP_TITLE')|| '', cattributes=>'id=""');

3526: 'FNDWATHS.gif" height=18 width=18 alt="'||
3527: wf_core.translate('WFE_SYSTEM_SIGNUP_TITLE')||'">'||
3528: anchor_tag||owa_util.get_owa_service_path ||
3529: 'wf_event_html.entereventdetails?p_event_name=oracle.apps.wf.event.system.signup>' ||
3530: wf_core.translate('WFE_SYSTEM_SIGNUP_TITLE')|| '', cattributes=>'id=""');
3531: htp.tablerowclose;
3532:
3533: -- Get System Identifier
3534: htp.tablerowopen;

Line 3540: wf_core.translate('WFE_SYSTEM_IDENTIFIER_TITLE')||'">'||

3536: htp.tabledata('', cattributes=>'id=""');
3537:
3538: htp.tabledata(''||<br>
<b>3540:              wf_core.translate('WFE_SYSTEM_IDENTIFIER_TITLE')||''||
3541: anchor_tag||owa_util.get_owa_service_path ||
3542: 'wf_event_html.getsystemidentifier>' ||
3543: wf_core.translate('WFE_SYSTEM_IDENTIFIER_TITLE')|| '', cattributes=>'id=""');
3544: htp.tablerowclose;

Line 3543: wf_core.translate('WFE_SYSTEM_IDENTIFIER_TITLE')|| '', cattributes=>'id=""');

3539: 'FNDWATHS.gif" height=18 width=18 alt="'||
3540: wf_core.translate('WFE_SYSTEM_IDENTIFIER_TITLE')||'">'||
3541: anchor_tag||owa_util.get_owa_service_path ||
3542: 'wf_event_html.getsystemidentifier>' ||
3543: wf_core.translate('WFE_SYSTEM_IDENTIFIER_TITLE')|| '', cattributes=>'id=""');
3544: htp.tablerowclose;
3545:
3546: -- Standard Event Queues
3547: htp.tablerowopen;

Line 3553: wf_core.translate('WFE_EVENT_QUEUE_SUMMARY_TITLE')||'">'||

3549: htp.tabledata('', cattributes=>'id=""');
3550:
3551: htp.tabledata(''||<br>
<b>3553:              wf_core.translate('WFE_EVENT_QUEUE_SUMMARY_TITLE')||''||
3554: anchor_tag||owa_util.get_owa_service_path ||
3555: 'wf_event_html.eventqueuedisplay>' ||
3556: wf_core.translate('WFE_EVENT_QUEUE_SUMMARY_TITLE')|| '', cattributes=>'id=""');
3557: htp.tablerowclose;

Line 3556: wf_core.translate('WFE_EVENT_QUEUE_SUMMARY_TITLE')|| '', cattributes=>'id=""');

3552: 'FNDWATHS.gif" height=18 width=18 alt="'||
3553: wf_core.translate('WFE_EVENT_QUEUE_SUMMARY_TITLE')||'">'||
3554: anchor_tag||owa_util.get_owa_service_path ||
3555: 'wf_event_html.eventqueuedisplay>' ||
3556: wf_core.translate('WFE_EVENT_QUEUE_SUMMARY_TITLE')|| '', cattributes=>'id=""');
3557: htp.tablerowclose;
3558:
3559:
3560: else

Line 3564: wf_core.translate('OPEN_NOTIFICATIONS')||'">'||

3560: else
3561: -- Worklist
3562: htp.tablerowopen;
3563: htp.tabledata(''||<br>
<b>3564:              wf_core.translate('OPEN_NOTIFICATIONS')||''||
3565: anchor_tag||owa_util.get_owa_service_path ||
3566: 'wfa_html.WorkList?resetcookie=1>'||
3567: wf_core.translate('WFA_WTITLE') || '' ||
3568: wrklstbuf, cattributes=>'id=""');

Line 3567: wf_core.translate('WFA_WTITLE') || '' ||

3563: htp.tabledata(''||<br>
3564:              wf_core.translate('OPEN_NOTIFICATIONS')||''||
3565: anchor_tag||owa_util.get_owa_service_path ||
3566: 'wfa_html.WorkList?resetcookie=1>'||
3567: wf_core.translate('WFA_WTITLE') || '' ||
3568: wrklstbuf, cattributes=>'id=""');
3569: htp.tablerowclose;
3570:
3571: -- Find Notification

Line 3574: wf_core.translate('WFA_FINDTITLE')||'">'||

3570:
3571: -- Find Notification
3572: htp.tablerowopen;
3573: htp.tabledata(''||<br>
<b>3574:              wf_core.translate('WFA_FINDTITLE')||''||
3575: anchor_tag||owa_util.get_owa_service_path || 'wfa_html.Find>' ||
3576: wf_core.translate('WFA_FINDTITLE') || '', cattributes=>'id=""');
3577:
3578: htp.tablerowclose;

Line 3576: wf_core.translate('WFA_FINDTITLE') || '', cattributes=>'id=""');

3572: htp.tablerowopen;
3573: htp.tabledata(''||<br>
3574:              wf_core.translate('WFA_FINDTITLE')||''||
3575: anchor_tag||owa_util.get_owa_service_path || 'wfa_html.Find>' ||
3576: wf_core.translate('WFA_FINDTITLE') || '', cattributes=>'id=""');
3577:
3578: htp.tablerowclose;
3579:
3580: -- List Route

Line 3583: wf_core.translate('WFRTG_LIST_TITLE')||'">'||

3579:
3580: -- List Route
3581: htp.tablerowopen;
3582: htp.tabledata(''||<br>
<b>3583:               wf_core.translate('WFRTG_LIST_TITLE')||''||
3584: anchor_tag||owa_util.get_owa_service_path || 'wf_route.List>' ||
3585: wf_core.translate('WFRTG_LIST_TITLE') || '', cattributes=>'id=""');
3586: htp.tablerowclose;
3587:

Line 3585: wf_core.translate('WFRTG_LIST_TITLE') || '', cattributes=>'id=""');

3581: htp.tablerowopen;
3582: htp.tabledata(''||<br>
3583:               wf_core.translate('WFRTG_LIST_TITLE')||''||
3584: anchor_tag||owa_util.get_owa_service_path || 'wf_route.List>' ||
3585: wf_core.translate('WFRTG_LIST_TITLE') || '', cattributes=>'id=""');
3586: htp.tablerowclose;
3587:
3588: -- Find Process (Monitor)
3589: htp.tablerowopen;

Line 3591: wf_core.translate('WFMON_FINDTITLE')||'">'||

3587:
3588: -- Find Process (Monitor)
3589: htp.tablerowopen;
3590: htp.tabledata(''||<br>
<b>3591:              wf_core.translate('WFMON_FINDTITLE')||''||
3592: anchor_tag||owa_util.get_owa_service_path ||
3593: 'wf_monitor.Find_Instance>' ||
3594: wf_core.translate('WFMON_FINDTITLE') || '', cattributes=>'id=""');
3595: htp.tablerowclose;

Line 3594: wf_core.translate('WFMON_FINDTITLE') || '', cattributes=>'id=""');

3590: htp.tabledata(''||<br>
3591:              wf_core.translate('WFMON_FINDTITLE')||''||
3592: anchor_tag||owa_util.get_owa_service_path ||
3593: 'wf_monitor.Find_Instance>' ||
3594: wf_core.translate('WFMON_FINDTITLE') || '', cattributes=>'id=""');
3595: htp.tablerowclose;
3596:
3597: -- Personal Preference
3598: htp.tablerowopen;

Line 3600: wf_core.translate('WFPREF_EDIT_PREFS_TITLE')||'">'||

3596:
3597: -- Personal Preference
3598: htp.tablerowopen;
3599: htp.tabledata(''||<br>
<b>3600:              wf_core.translate('WFPREF_EDIT_PREFS_TITLE')||''||
3601: anchor_tag||owa_util.get_owa_service_path ||
3602: 'wf_pref.edit>' ||
3603: wf_core.translate('WFPREF_EDIT_PREFS_TITLE') || '', cattributes=>'id=""');
3604: htp.tablerowclose;

Line 3603: wf_core.translate('WFPREF_EDIT_PREFS_TITLE') || '', cattributes=>'id=""');

3599: htp.tabledata(''||<br>
3600:              wf_core.translate('WFPREF_EDIT_PREFS_TITLE')||''||
3601: anchor_tag||owa_util.get_owa_service_path ||
3602: 'wf_pref.edit>' ||
3603: wf_core.translate('WFPREF_EDIT_PREFS_TITLE') || '', cattributes=>'id=""');
3604: htp.tablerowclose;
3605:
3606: end if;
3607:

Line 3616: wf_core.context('Wfa_Html', 'Homemenu');

3612:
3613: exception
3614: when others then
3615: rollback;
3616: wf_core.context('Wfa_Html', 'Homemenu');
3617: wfa_html.Error;
3618: end Homemenu;
3619:
3620: procedure create_reg_button (

Line 3665: wf_core.context('Wfa_html', 'create_reg_button',when_pressed_url,onmouseover,

3661:
3662: exception
3663: when others then
3664: rollback;
3665: wf_core.context('Wfa_html', 'create_reg_button',when_pressed_url,onmouseover,
3666: icon_top,icon_name,show_text);
3667: wfa_html.Error;
3668:
3669: end create_reg_button;

Line 3731: htp.title(wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'));

3727: -- HTML or text document.
3728: htp.htmlOpen;
3729: htp.headOpen;
3730: htp.p('');
3731: htp.title(wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'));
3732: wfa_html.create_help_function('wfnew/wfnew52.htm#nrr');
3733: htp.headClose;
3734: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),
3735: TRUE);

Line 3734: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),

3730: htp.p('');
3731: htp.title(wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'));
3732: wfa_html.create_help_function('wfnew/wfnew52.htm#nrr');
3733: htp.headClose;
3734: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),
3735: TRUE);
3736: htp.br;
3737:
3738: lobsize := dbms_lob.getlength(clob_loc);

Line 3807: htp.title(wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'));

3803: else
3804: -- Set page title
3805: htp.htmlOpen;
3806: htp.headOpen;
3807: htp.title(wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'));
3808: wfa_html.create_help_function('wfnew/wfnew52.htm#nrr');
3809: htp.headClose;
3810: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),
3811: TRUE);

Line 3810: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),

3806: htp.headOpen;
3807: htp.title(wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'));
3808: wfa_html.create_help_function('wfnew/wfnew52.htm#nrr');
3809: htp.headClose;
3810: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),
3811: TRUE);
3812: htp.br;
3813:
3814: htp.p (doctext);

Line 3822: wf_core.context('Wfa_Html','show_plsql_doc',nid, aname);

3818: end if;
3819:
3820: exception
3821: when others then
3822: wf_core.context('Wfa_Html','show_plsql_doc',nid, aname);
3823: wfa_html.Error;
3824: end show_plsql_doc;
3825:
3826: -- base_url

Line 3846: l_base_url := wf_core.translate ('WF_WEB_AGENT');

3842: LENGTH(RTRIM(owa_util.get_owa_service_path)) - 1);
3843:
3844: ELSE
3845:
3846: l_base_url := wf_core.translate ('WF_WEB_AGENT');
3847:
3848: END IF;
3849:
3850: EXCEPTION

Line 3853: l_base_url := wf_core.translate ('WF_WEB_AGENT');

3849:
3850: EXCEPTION
3851: WHEN OTHERS THEN
3852:
3853: l_base_url := wf_core.translate ('WF_WEB_AGENT');
3854:
3855: END;
3856:
3857: return (l_base_url);

Line 3861: wf_core.context('Wfa_Html','base_url');

3857: return (l_base_url);
3858:
3859: exception
3860: when others then
3861: wf_core.context('Wfa_Html','base_url');
3862: wfa_html.Error;
3863: end base_url;
3864:
3865: --

Line 3930: wf_lov.g_define_rec.add_attr1_title := wf_core.translate ('WFITD_INTERNAL_NAME');

3926: and (UPPER(display_name) LIKE UPPER(p_display_value)||'%');
3927:
3928: wf_lov.g_define_rec.total_rows := l_total_rows;
3929:
3930: wf_lov.g_define_rec.add_attr1_title := wf_core.translate ('WFITD_INTERNAL_NAME');
3931:
3932: open c_user_lov (p_display_value);
3933:
3934: LOOP

Line 4030: wf_core.context('Wfa_Html', 'wf_user_val');

4026:
4027: exception
4028: when others then
4029: rollback;
4030: wf_core.context('Wfa_Html', 'wf_user_val');
4031: raise;
4032: end wf_user_val;
4033:
4034:

Line 4146: wf_core.token('ROLE', p_display_name);

4142: */
4143: if (l_names_count = 0) then
4144:
4145: -- Not displayed or internal role name, error
4146: wf_core.token('ROLE', p_display_name);
4147: wf_core.raise('WFNTF_ROLE');
4148:
4149: /*
4150: ** If there is just one match then get the internal name

Line 4147: wf_core.raise('WFNTF_ROLE');

4143: if (l_names_count = 0) then
4144:
4145: -- Not displayed or internal role name, error
4146: wf_core.token('ROLE', p_display_name);
4147: wf_core.raise('WFNTF_ROLE');
4148:
4149: /*
4150: ** If there is just one match then get the internal name
4151: ** and assign it.

Line 4189: wf_core.raise('WFNTF_ORIGSYSTEMID');

4185: begin
4186: l_orig_system_id := to_number(substr(p_user_name, l_colon+1));
4187: exception
4188: when invalid_number then
4189: wf_core.raise('WFNTF_ORIGSYSTEMID');
4190: when others then
4191: raise;
4192: end;
4193: select count(1)

Line 4203: wf_core.token('ROLE', p_display_name);

4199: and DISPLAY_NAME = p_display_name;
4200: end if;
4201:
4202: if (l_names_count <> 1) then
4203: wf_core.token('ROLE', p_display_name);
4204: wf_core.raise('WFNTF_UNIQUE_ROLE');
4205: end if;
4206:
4207: end if;

Line 4204: wf_core.raise('WFNTF_UNIQUE_ROLE');

4200: end if;
4201:
4202: if (l_names_count <> 1) then
4203: wf_core.token('ROLE', p_display_name);
4204: wf_core.raise('WFNTF_UNIQUE_ROLE');
4205: end if;
4206:
4207: end if;
4208:

Line 4213: wf_core.context('Wfa_Html', 'validate_display_name', p_display_name,

4209: end if;
4210:
4211: exception
4212: when others then
4213: wf_core.context('Wfa_Html', 'validate_display_name', p_display_name,
4214: p_user_name);
4215: raise;
4216: end validate_display_name;
4217:

Line 4226: htp.title(wf_core.translate('LONG_DESC'));

4222: as
4223: BEGIN
4224: htp.htmlOpen;
4225: htp.headOpen;
4226: htp.title(wf_core.translate('LONG_DESC'));
4227: htp.headClose;
4228:
4229: begin
4230: wfa_sec.Header(background_only=>TRUE);

Line 4236: htp.p(WF_CORE.Translate(UPPER(p_token)));

4232: when others then
4233: htp.bodyOpen;
4234: end;
4235:
4236: htp.p(WF_CORE.Translate(UPPER(p_token)));
4237:
4238: wfa_sec.Footer;
4239: htp.htmlClose;
4240: