DBA Data[Home] [Help]

APPS.WF_SETUP dependencies on WF_CORE

Line 17: wf_core.raise('WFE_NO_SYSTEM');

13:
14: return hextoraw(lguid);
15: exception
16: when no_data_found then
17: wf_core.raise('WFE_NO_SYSTEM');
18: when OTHERS then
19: wf_core.context('WF_SETUP', 'GetLocalSystemGUID');
20: raise;
21: end GetLocalSystemGUID;

Line 19: wf_core.context('WF_SETUP', 'GetLocalSystemGUID');

15: exception
16: when no_data_found then
17: wf_core.raise('WFE_NO_SYSTEM');
18: when OTHERS then
19: wf_core.context('WF_SETUP', 'GetLocalSystemGUID');
20: raise;
21: end GetLocalSystemGUID;
22:
23: function GetLocalSystem

Line 37: wf_core.context('WF_SETUP', 'GetLocalSystem');

33:
34: return (lsys);
35: exception
36: when OTHERS then
37: wf_core.context('WF_SETUP', 'GetLocalSystem');
38: raise;
39: end GetLocalSystem;
40:
41: procedure Check_InitParameters

Line 81: hTab(i).value := wf_core.translate('NAME');

77:
78: -- popluate the header table
79: i := 1;
80: hTab(i).def_type := 'TITLE';
81: hTab(i).value := wf_core.translate('NAME');
82: hTab(i).attr := 'id="t_name"';
83: i := i+1;
84: hTab(i).def_type := 'TITLE';
85: hTab(i).value := wf_core.translate('VALUE');

Line 85: hTab(i).value := wf_core.translate('VALUE');

81: hTab(i).value := wf_core.translate('NAME');
82: hTab(i).attr := 'id="t_name"';
83: i := i+1;
84: hTab(i).def_type := 'TITLE';
85: hTab(i).value := wf_core.translate('VALUE');
86: hTab(i).attr := 'ALIGN=RIGHT id="t_value"';
87: i := i+1;
88: hTab(i).def_type := 'TITLE';
89: hTab(i).value := wf_core.translate('VALUE_RECOMMENDED');

Line 89: hTab(i).value := wf_core.translate('VALUE_RECOMMENDED');

85: hTab(i).value := wf_core.translate('VALUE');
86: hTab(i).attr := 'ALIGN=RIGHT id="t_value"';
87: i := i+1;
88: hTab(i).def_type := 'TITLE';
89: hTab(i).value := wf_core.translate('VALUE_RECOMMENDED');
90: hTab(i).attr := 'ALIGN=RIGHT id="t_value_rec"';
91:
92: htp.p('

'||wf_core.translate('WFE_INITPARAMS')||'');
93: -- ### Database Init.ora Parameters

Line 92: htp.p('

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

88: hTab(i).def_type := 'TITLE';
89: hTab(i).value := wf_core.translate('VALUE_RECOMMENDED');
90: hTab(i).attr := 'ALIGN=RIGHT id="t_value_rec"';
91:
92: htp.p('

'||wf_core.translate('WFE_INITPARAMS')||'');
93: -- ### Database Init.ora Parameters
94:
95: -- render table
96: Wfe_Html_Util.Simple_Table(hTab, dTab);

Line 100: wf_core.context('WF_SETUP', 'Check_InitParameters');

96: Wfe_Html_Util.Simple_Table(hTab, dTab);
97:
98: exception
99: when OTHERS then
100: wf_core.context('WF_SETUP', 'Check_InitParameters');
101: wfe_html_util.Error;
102: end Check_InitParameters;
103:
104: procedure Check_Dblinks(

Line 144: dTab(i).col02 := wf_core.translate(dTab(i).col02);

140:
141: when OTHERS then
142: raise;
143: end;
144: dTab(i).col02 := wf_core.translate(dTab(i).col02);
145:
146: dTab(i).selectable := FALSE;
147: dTab(i).deletable := FALSE;
148: dTab(i).hasdetail := FALSE;

Line 154: hTab(i).value := wf_core.translate('NAME');

150:
151: -- popluate the header table
152: i := 1;
153: hTab(i).def_type := 'TITLE';
154: hTab(i).value := wf_core.translate('NAME');
155: hTab(i).attr := 'id="t_name"';
156: i := i+1;
157: hTab(i).def_type := 'TITLE';
158: hTab(i).value := wf_core.translate('STATUS');

Line 158: hTab(i).value := wf_core.translate('STATUS');

154: hTab(i).value := wf_core.translate('NAME');
155: hTab(i).attr := 'id="t_name"';
156: i := i+1;
157: hTab(i).def_type := 'TITLE';
158: hTab(i).value := wf_core.translate('STATUS');
159: hTab(i).attr := 'id="t_status"';
160:
161: htp.p('

'||wf_core.translate('WFE_DBLINKS')||'');
162: -- ### Database Links

Line 161: htp.p('

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

157: hTab(i).def_type := 'TITLE';
158: hTab(i).value := wf_core.translate('STATUS');
159: hTab(i).attr := 'id="t_status"';
160:
161: htp.p('

'||wf_core.translate('WFE_DBLINKS')||'');
162: -- ### Database Links
163:
164: -- render table
165: Wfe_Html_Util.Simple_Table(hTab, dTab);

Line 170: wf_core.context('WF_SETUP', 'Check_Dblinks');

166:
167: exception
168: when OTHERS then
169: rollback;
170: wf_core.context('WF_SETUP', 'Check_Dblinks');
171: wfe_html_util.Error;
172: end Check_Dblinks;
173:
174:

Line 203: dTab(i).col02:= wf_core.translate(lquer.direction);

199: dTab(i).col01:= lquer.name;
200: if (lquer.direction is null) then
201: dTab(i).col02:= ' ';
202: else
203: dTab(i).col02:= wf_core.translate(lquer.direction);
204: end if;
205: dTab(i).col03:= nvl(lquer.queue_name, ' ');
206:
207: -- check existence

Line 225: dTab(i).col04 := wf_core.translate(dTab(i).col04);

221:
222: when OTHERS then
223: raise;
224: end;
225: dTab(i).col04 := wf_core.translate(dTab(i).col04);
226:
227: -- if queue not exist, do not count message
228: if (creatable) then
229:

Line 256: hTab(i).value := wf_core.translate('AGENT');

252:
253: -- popluate the header table
254: i := 1;
255: hTab(i).def_type := 'TITLE';
256: hTab(i).value := wf_core.translate('AGENT');
257: hTab(i).attr := 'id="t_agent"';
258: i := i+1;
259: hTab(i).def_type := 'TITLE';
260: hTab(i).value := wf_core.translate('DIRECTION');

Line 260: hTab(i).value := wf_core.translate('DIRECTION');

256: hTab(i).value := wf_core.translate('AGENT');
257: hTab(i).attr := 'id="t_agent"';
258: i := i+1;
259: hTab(i).def_type := 'TITLE';
260: hTab(i).value := wf_core.translate('DIRECTION');
261: hTab(i).attr := 'id="t_direction"';
262: i := i+1;
263: hTab(i).def_type := 'TITLE';
264: hTab(i).value := wf_core.translate('QUEUE_NAME');

Line 264: hTab(i).value := wf_core.translate('QUEUE_NAME');

260: hTab(i).value := wf_core.translate('DIRECTION');
261: hTab(i).attr := 'id="t_direction"';
262: i := i+1;
263: hTab(i).def_type := 'TITLE';
264: hTab(i).value := wf_core.translate('QUEUE_NAME');
265: hTab(i).attr := 'id="t_queue"';
266: i := i + 1;
267: hTab(i).def_type := 'TITLE';
268: hTab(i).value := wf_core.translate('QUEUE_CREATED');

Line 268: hTab(i).value := wf_core.translate('QUEUE_CREATED');

264: hTab(i).value := wf_core.translate('QUEUE_NAME');
265: hTab(i).attr := 'id="t_queue"';
266: i := i + 1;
267: hTab(i).def_type := 'TITLE';
268: hTab(i).value := wf_core.translate('QUEUE_CREATED');
269: hTab(i).attr := 'id="t_queue_created"';
270: i := i + 1;
271: hTab(i).def_type := 'TITLE';
272: hTab(i).value := wf_core.translate('MESSAGE_READY');

Line 272: hTab(i).value := wf_core.translate('MESSAGE_READY');

268: hTab(i).value := wf_core.translate('QUEUE_CREATED');
269: hTab(i).attr := 'id="t_queue_created"';
270: i := i + 1;
271: hTab(i).def_type := 'TITLE';
272: hTab(i).value := wf_core.translate('MESSAGE_READY');
273: hTab(i).attr := 'ALIGN=RIGHT id="t_message_ready"';
274: i := i + 1;
275: hTab(i).def_type := 'TITLE';
276: hTab(i).value := wf_core.translate('MESSAGE_WAIT');

Line 276: hTab(i).value := wf_core.translate('MESSAGE_WAIT');

272: hTab(i).value := wf_core.translate('MESSAGE_READY');
273: hTab(i).attr := 'ALIGN=RIGHT id="t_message_ready"';
274: i := i + 1;
275: hTab(i).def_type := 'TITLE';
276: hTab(i).value := wf_core.translate('MESSAGE_WAIT');
277: hTab(i).attr := 'ALIGN=RIGHT id="t_message_wait"';
278:
279: htp.p('

'||wf_core.translate('WFE_LOCAL_QUEUES')||'');
280: -- ### Local Agents

Line 279: htp.p('

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

275: hTab(i).def_type := 'TITLE';
276: hTab(i).value := wf_core.translate('MESSAGE_WAIT');
277: hTab(i).attr := 'ALIGN=RIGHT id="t_message_wait"';
278:
279: htp.p('

'||wf_core.translate('WFE_LOCAL_QUEUES')||'');
280: -- ### Local Agents
281:
282: -- render table
283: Wfe_Html_Util.Simple_Table(hTab, dTab);

Line 288: wf_core.context('WF_SETUP', 'Check_Queues');

284:
285: exception
286: when OTHERS then
287: rollback;
288: wf_core.context('WF_SETUP', 'Check_Queues');
289: wfe_html_util.Error;
290: end Check_Queues;
291:
292:

Line 340: dTab(i).col02 := wf_core.translate(dTab(i).col02);

336:
337: when OTHERS then
338: raise;
339: end;
340: dTab(i).col02 := wf_core.translate(dTab(i).col02);
341:
342: -- append creation function
343: if (creatable) then
344: dTab(i).col03 := dTab(i).col03||

Line 347: wf_core.translate('CREATE')||

343: if (creatable) then
344: dTab(i).col03 := dTab(i).col03||
345: ''||
347: wf_core.translate('CREATE')||
348: '
';
349: else
350: dTab(i).col03 := dTab(i).col03||
351: '

349: else
350: dTab(i).col03 := dTab(i).col03||
351: '
'||
353: wf_core.translate('EDIT')||
354: '
';
355: end if;
356:
357: dTab(i).selectable := FALSE;

Line 365: hTab(i).value := wf_core.translate('AGENT');

361:
362: -- popluate the header table
363: i := 1;
364: hTab(i).def_type := 'TITLE';
365: hTab(i).value := wf_core.translate('AGENT');
366: hTab(i).attr := 'id="t_agent"';
367: i := i+1;
368: hTab(i).def_type := 'TITLE';
369: hTab(i).value := wf_core.translate('SCHEDULED');

Line 369: hTab(i).value := wf_core.translate('SCHEDULED');

365: hTab(i).value := wf_core.translate('AGENT');
366: hTab(i).attr := 'id="t_agent"';
367: i := i+1;
368: hTab(i).def_type := 'TITLE';
369: hTab(i).value := wf_core.translate('SCHEDULED');
370: hTab(i).attr := 'id="t_scheduled"';
371: i := i+1;
372: hTab(i).def_type := 'TITLE';
373: hTab(i).value := wf_core.translate('ACTION');

Line 373: hTab(i).value := wf_core.translate('ACTION');

369: hTab(i).value := wf_core.translate('SCHEDULED');
370: hTab(i).attr := 'id="t_scheduled"';
371: i := i+1;
372: hTab(i).def_type := 'TITLE';
373: hTab(i).value := wf_core.translate('ACTION');
374: hTab(i).attr := 'id="t_action"';
375:
376: htp.p('

'||wf_core.translate('WFE_LISTENERS')||'');
377: -- ### Listeners for local queues.

Line 376: htp.p('

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

372: hTab(i).def_type := 'TITLE';
373: hTab(i).value := wf_core.translate('ACTION');
374: hTab(i).attr := 'id="t_action"';
375:
376: htp.p('

'||wf_core.translate('WFE_LISTENERS')||'');
377: -- ### Listeners for local queues.
378:
379: -- render table
380: Wfe_Html_Util.Simple_Table(hTab, dTab);

Line 385: wf_core.context('WF_SETUP', 'Check_Listeners');

381:
382: exception
383: when OTHERS then
384: rollback;
385: wf_core.context('WF_SETUP', 'Check_Listeners');
386: wfe_html_util.Error;
387: end Check_Listeners;
388:
389:

Line 435: dTab(i).col02:= nvl(ppgr.tosystem,wf_core.translate('LOCAL')); -- in reality it is a db link

431: for ppgr in ppgcurs loop
432: i := i + 1;
433: dTab(i).guid := ppgr.oguid;
434: dTab(i).col01:= ppgr.name;
435: dTab(i).col02:= nvl(ppgr.tosystem,wf_core.translate('LOCAL')); -- in reality it is a db link
436: --dTab(i).col02:= nvl(ppgr.tosystem, ' '); -- in reality it is a db link
437:
438: -- check out queue
439: begin

Line 447: wf_core.token('NAME', dTab(i).col03);

443: where GUID = ppgr.oguid
444: and (PROTOCOL <> 'SQLNET'
445: or (DIRECTION is not null and DIRECTION = 'IN'));
446:
447: wf_core.token('NAME', dTab(i).col03);
448: dTab(i).col03 := wf_core.translate('WFE_NOT_OUTAGENT');
449: exception
450: when NO_DATA_FOUND then
451: null;

Line 448: dTab(i).col03 := wf_core.translate('WFE_NOT_OUTAGENT');

444: and (PROTOCOL <> 'SQLNET'
445: or (DIRECTION is not null and DIRECTION = 'IN'));
446:
447: wf_core.token('NAME', dTab(i).col03);
448: dTab(i).col03 := wf_core.translate('WFE_NOT_OUTAGENT');
449: exception
450: when NO_DATA_FOUND then
451: null;
452: end;

Line 474: --if ppgr.tosystem = wf_core.translate('LOCAL') then

470: when NO_DATA_FOUND then
471: creatable := TRUE;
472: end;
473:
474: --if ppgr.tosystem = wf_core.translate('LOCAL') then
475: -- ppgr.tosystem := null;
476: --end if;
477:
478: if (creatable) then

Line 485: wf_core.translate('CREATE')||

481: '/wf_setup.edit_propagation?oqueue='||ppgr.oqueue
482: ||'&tosystem='||ppgr.tosystem
483: ||'&edit=N'
484: ||'>'||
485: wf_core.translate('CREATE')||
486: '';
487: else
488: dTab(i).col03 :=
489: '

490: '/wf_setup.edit_propagation?oqueue='||ppgr.oqueue
491: ||'&tosystem='||ppgr.tosystem
492: ||'&edit=Y'
493: ||'>'||
494: wf_core.translate('EDIT')||
495: '
';
496: end if;
497: end if;
498:

Line 507: hTab(i).value := wf_core.translate('OUT_AGENT');

503:
504: -- popluate the header table
505: i := 1;
506: hTab(i).def_type := 'TITLE';
507: hTab(i).value := wf_core.translate('OUT_AGENT');
508: hTab(i).attr := 'id="t_out_agent"';
509: i := i + 1;
510: hTab(i).def_type := 'TITLE';
511: hTab(i).value := wf_core.translate('WFE_DBLINK');

Line 511: hTab(i).value := wf_core.translate('WFE_DBLINK');

507: hTab(i).value := wf_core.translate('OUT_AGENT');
508: hTab(i).attr := 'id="t_out_agent"';
509: i := i + 1;
510: hTab(i).def_type := 'TITLE';
511: hTab(i).value := wf_core.translate('WFE_DBLINK');
512: hTab(i).attr := 'id="t_dblink"';
513: i := i + 1;
514: hTab(i).def_type := 'TITLE';
515: hTab(i).value := wf_core.translate('SCHEDULE');

Line 515: hTab(i).value := wf_core.translate('SCHEDULE');

511: hTab(i).value := wf_core.translate('WFE_DBLINK');
512: hTab(i).attr := 'id="t_dblink"';
513: i := i + 1;
514: hTab(i).def_type := 'TITLE';
515: hTab(i).value := wf_core.translate('SCHEDULE');
516: hTab(i).attr := 'id="t_schedule"';
517:
518: htp.p('

'||wf_core.translate('WFE_PROPAGATIONS')||'');
519: -- ### Propagations for local out agents.

Line 518: htp.p('

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

514: hTab(i).def_type := 'TITLE';
515: hTab(i).value := wf_core.translate('SCHEDULE');
516: hTab(i).attr := 'id="t_schedule"';
517:
518: htp.p('

'||wf_core.translate('WFE_PROPAGATIONS')||'');
519: -- ### Propagations for local out agents.
520:
521: -- render table
522: Wfe_Html_Util.Simple_Table(hTab, dTab);

Line 527: wf_core.context('WF_SETUP', 'Check_Propagations');

523:
524: exception
525: when OTHERS then
526: rollback;
527: wf_core.context('WF_SETUP', 'Check_Propagations');
528: wfe_html_util.Error;
529: end Check_Propagations;
530:
531: procedure Check_All

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

542: wfa_sec.GetSession(username);
543: username := upper(username);
544:
545: -- Check Admin Priviledge
546: admin_role := wf_core.translate('WF_ADMIN_ROLE');
547: if (admin_role = '*' or
548: Wf_Directory.IsPerformer(username, admin_role)) then
549: -- Have admin privledge, do nothing.
550: null;

Line 552: wf_core.raise('WF_NOTADMIN');

548: Wf_Directory.IsPerformer(username, admin_role)) then
549: -- Have admin privledge, do nothing.
550: null;
551: else
552: wf_core.raise('WF_NOTADMIN');
553: end if;
554:
555: -- Check if Accessible
556: wf_event_html.isAccessible('SYSTEM');

Line 571: htp.title(wf_core.translate('WFE_CHECK_ALL_TITLE')||'('||lsys||')');

567: -- list does not get updated after edit, so we add the
568: -- following tag to force the reload of page.
569: htp.p('');
570:
571: htp.title(wf_core.translate('WFE_CHECK_ALL_TITLE')||'('||lsys||')');
572: wfa_html.create_help_function('wf/links/evt.htm?'||'EVTSETUP');
573: fnd_document_management.get_open_dm_display_window;
574: Wfe_Html_Util.generate_confirm;
575:

Line 581: wf_core.translate('WFE_CHECK_ALL_TITLE')||'('||lsys||')',

577:
578: -- Page header
579: wfa_sec.Header(FALSE,
580: NULL,
581: wf_core.translate('WFE_CHECK_ALL_TITLE')||'('||lsys||')',
582: TRUE);
583:
584: htp.br; -- add some space between header and table
585:

Line 607: wf_core.context('WF_SETUP', 'Check_All');

603:
604: exception
605: when OTHERS then
606: rollback;
607: wf_core.context('WF_SETUP', 'Check_All');
608: wfe_html_util.Error;
609: end Check_All;
610:
611: -- ###

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

629: wfa_sec.GetSession(username);
630: username := upper(username);
631:
632: -- Check Admin Priviledge
633: admin_role := wf_core.translate('WF_ADMIN_ROLE');
634: if (admin_role = '*' or
635: Wf_Directory.IsPerformer(username, admin_role)) then
636: -- Have admin privledge, do nothing.
637: null;

Line 639: wf_core.raise('WF_NOTADMIN');

635: Wf_Directory.IsPerformer(username, admin_role)) then
636: -- Have admin privledge, do nothing.
637: null;
638: else
639: wf_core.raise('WF_NOTADMIN');
640: end if;
641:
642: -- check system is local
643: lguid := Wf_Setup.GetLocalSystemGUID;

Line 652: wf_core.raise('WFE_AGENT_NOTEXIST');

648: from WF_AGENTS
649: where GUID = aguid;
650: exception
651: when OTHERS then
652: wf_core.raise('WFE_AGENT_NOTEXIST');
653: end;
654:
655: qtable := substr(qname,1,24)||'_TABLE';
656:

Line 658: wf_core.token('ENTITY', 'QUEUE');

654:
655: qtable := substr(qname,1,24)||'_TABLE';
656:
657: if (lguid <> sguid) then
658: wf_core.token('ENTITY', 'QUEUE');
659: wf_core.raise('WFE_SYSTEM_NOTLOCAL');
660: end if;
661:
662: -- create queue table

Line 659: wf_core.raise('WFE_SYSTEM_NOTLOCAL');

655: qtable := substr(qname,1,24)||'_TABLE';
656:
657: if (lguid <> sguid) then
658: wf_core.token('ENTITY', 'QUEUE');
659: wf_core.raise('WFE_SYSTEM_NOTLOCAL');
660: end if;
661:
662: -- create queue table
663: dbms_aqadm.create_queue_table

Line 666: queue_payload_type => wf_core.translate('WF_SCHEMA')||'.WF_EVENT_T',

662: -- create queue table
663: dbms_aqadm.create_queue_table
664: (
665: queue_table => qtable,
666: queue_payload_type => wf_core.translate('WF_SCHEMA')||'.WF_EVENT_T',
667: sort_list => 'ENQ_TIME',
668: comment => 'Workflow event system default queue',
669: compatible => '8.1',
670: multiple_consumers => TRUE

Line 694: wf_core.context('WF_SETUP', 'Create_Queue', rawtohex(aguid),

690:
691: exception
692: when OTHERS then
693: rollback;
694: wf_core.context('WF_SETUP', 'Create_Queue', rawtohex(aguid),
695: qname, qtable);
696: wfe_html_util.Error;
697: end Create_Queue;
698:

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

731: wfa_sec.GetSession(username);
732: username := upper(username);
733:
734: -- Check Admin Priviledge
735: admin_role := wf_core.translate('WF_ADMIN_ROLE');
736: if (admin_role = '*' or
737: Wf_Directory.IsPerformer(username, admin_role)) then
738: -- Have admin privledge, do nothing.
739: null;

Line 741: wf_core.raise('WF_NOTADMIN');

737: Wf_Directory.IsPerformer(username, admin_role)) then
738: -- Have admin privledge, do nothing.
739: null;
740: else
741: wf_core.raise('WF_NOTADMIN');
742: end if;
743:
744: -- get it from the cookie if aguid is not set
745: if (aguid is null) then

Line 748: wf_core.raise('WFE_NO_COOKIE');

744: -- get it from the cookie if aguid is not set
745: if (aguid is null) then
746: cookie := owa_cookie.get('WF_AGENT_GUID');
747: if (cookie.num_vals <> 1) then
748: wf_core.raise('WFE_NO_COOKIE');
749: end if;
750: l_aguid := hextoraw(cookie.vals(1));
751: else
752: l_aguid := aguid;

Line 772: wf_core.raise('WFE_AGENT_NOTEXIST');

768: where GUID = l_aguid
769: and SYSTEM_GUID = lguid;
770: exception
771: when OTHERS then
772: wf_core.raise('WFE_AGENT_NOTEXIST');
773: end;
774:
775: i := 0;
776: for jobr in jobc(aname) loop

Line 804: hTab(i).value := wf_core.translate('EDIT');

800: hTab(i).def_type := 'TITLE';
801: hTab(i).value := null; -- no detail title
802: i := i+1;
803: hTab(i).def_type := 'TITLE';
804: hTab(i).value := wf_core.translate('EDIT');
805: hTab(i).attr := 'id="t_edit"';
806: i := i+1;
807: hTab(i).def_type := 'TITLE';
808: hTab(i).value := wf_core.translate('WHAT');

Line 808: hTab(i).value := wf_core.translate('WHAT');

804: hTab(i).value := wf_core.translate('EDIT');
805: hTab(i).attr := 'id="t_edit"';
806: i := i+1;
807: hTab(i).def_type := 'TITLE';
808: hTab(i).value := wf_core.translate('WHAT');
809: hTab(i).attr := 'id="t_what"';
810: i := i+1;
811: hTab(i).def_type := 'TITLE';
812: hTab(i).value := wf_core.translate('INTERVAL');

Line 812: hTab(i).value := wf_core.translate('INTERVAL');

808: hTab(i).value := wf_core.translate('WHAT');
809: hTab(i).attr := 'id="t_what"';
810: i := i+1;
811: hTab(i).def_type := 'TITLE';
812: hTab(i).value := wf_core.translate('INTERVAL');
813: hTab(i).attr := 'id="t_interval"';
814:
815: -- Render page
816: htp.htmlOpen;

Line 829: htp.title(wf_core.translate('WFE_LIST_LISTENERS_TITLE'));

825: if (aguid is null) then
826: htp.p('');
827: end if;
828:
829: htp.title(wf_core.translate('WFE_LIST_LISTENERS_TITLE'));
830: wfa_html.create_help_function('wf/links/def.htm?'||'DEFLSNR');
831: fnd_document_management.get_open_dm_display_window;
832:
833: Wfe_Html_Util.generate_confirm;

Line 840: wf_core.translate('WFE_LIST_LISTENERS_TITLE'),

836:
837: -- Page header
838: wfa_sec.Header(FALSE,
839: NULL,
840: wf_core.translate('WFE_LIST_LISTENERS_TITLE'),
841: TRUE);
842:
843: htp.br; -- add some space between header and table
844:

Line 857: wf_core.translate('ADD'),

853: ||rawtohex(l_aguid)
854: ||'&url='||wfa_html.base_url||'/Wf_Setup.List_Listener';
855:
856: wfa_html.create_reg_button (l_url,
857: wf_core.translate('ADD'),
858: wfa_html.image_loc,
859: null,
860: wf_core.translate('ADD'));
861: htp.p('');

Line 860: wf_core.translate('ADD'));

856: wfa_html.create_reg_button (l_url,
857: wf_core.translate('ADD'),
858: wfa_html.image_loc,
859: null,
860: wf_core.translate('ADD'));
861: htp.p('');
862:
863: -- Cancel button
864: htp.p('');

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

862:
863: -- Cancel button
864: htp.p('');
865: wfa_html.create_reg_button ('javascript:window.history.back()',
866: wf_core.translate('CANCEL'),
867: wfa_html.image_loc,
868: 'FNDJLFCN.gif',
869: wf_core.translate('CANCEL'));
870: htp.p('');

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

865: wfa_html.create_reg_button ('javascript:window.history.back()',
866: wf_core.translate('CANCEL'),
867: wfa_html.image_loc,
868: 'FNDJLFCN.gif',
869: wf_core.translate('CANCEL'));
870: htp.p('');
871:
872: htp.tableRowClose;
873: htp.tableClose;

Line 880: wf_core.context('WF_SETUP', 'List_Listener', rawtohex(l_aguid));

876: htp.htmlClose;
877:
878: exception
879: when OTHERS then
880: wf_core.context('WF_SETUP', 'List_Listener', rawtohex(l_aguid));
881: wfe_html_util.Error;
882: end List_Listener;
883:
884: --

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

914: wfa_sec.GetSession(username);
915: username := upper(username);
916:
917: -- Check Admin Priviledge
918: admin_role := wf_core.translate('WF_ADMIN_ROLE');
919: if (admin_role = '*' or
920: Wf_Directory.IsPerformer(username, admin_role)) then
921: -- Have admin privledge, do nothing.
922: null;

Line 924: wf_core.raise('WF_NOTADMIN');

920: Wf_Directory.IsPerformer(username, admin_role)) then
921: -- Have admin privledge, do nothing.
922: null;
923: else
924: wf_core.raise('WF_NOTADMIN');
925: end if;
926:
927: -- get local system
928: lguid := Wf_Setup.GetLocalSystemGUID;

Line 939: wf_core.raise('WFE_AGENT_NOTEXIST');

935: where GUID = aguid
936: and SYSTEM_GUID = lguid;
937: exception
938: when OTHERS then
939: wf_core.raise('WFE_AGENT_NOTEXIST');
940: end;
941:
942: -- Render page
943: htp.htmlOpen;

Line 948: htp.title(wf_core.translate('WFE_EDIT_LISTENER_TITLE'));

944:
945: -- Set page title
946: htp.headOpen;
947:
948: htp.title(wf_core.translate('WFE_EDIT_LISTENER_TITLE'));
949: wfa_html.create_help_function('wf/links/t_d.htm?'||'T_DEFLSNR');
950:
951: fnd_document_management.get_open_dm_display_window;
952:

Line 956: wfa_sec.Header(FALSE, null, wf_core.translate('WFE_EDIT_LISTENER_TITLE'),

952:
953: htp.headClose;
954:
955: -- Page header
956: wfa_sec.Header(FALSE, null, wf_core.translate('WFE_EDIT_LISTENER_TITLE'),
957: TRUE);
958:
959: -- Form
960: l_url := 'Wf_Setup.SubmitListener';

Line 966: WF_CORE.Translate('WFE_EDIT_LISTENER_TITLE') || '"');

962: cmethod=>'Post',
963: cattributes=>'TARGET="_top" NAME="WF_LSNR_EDIT"');
964:
965: htp.tableOpen(calign=>'CENTER', cattributes=>'border=0 summary="' ||
966: WF_CORE.Translate('WFE_EDIT_LISTENER_TITLE') || '"');
967:
968: -- Agent Name (non-editable)
969: htp.tableRowOpen;
970: htp.tableData(cvalue=>wf_core.translate('AGENT'),

Line 970: htp.tableData(cvalue=>wf_core.translate('AGENT'),

966: WF_CORE.Translate('WFE_EDIT_LISTENER_TITLE') || '"');
967:
968: -- Agent Name (non-editable)
969: htp.tableRowOpen;
970: htp.tableData(cvalue=>wf_core.translate('AGENT'),
971: calign=>'right', cattributes=>'id=""');
972: htp.tableData(cvalue=>''||aname||'', calign=>'left',
973: cattributes=>'id=""');
974: if (jobnum < 0) then

Line 985: wf_core.translate('RUN_DATE') ||

981:
982: -- Run Date (default sysdate when left blank)
983: htp.tableRowOpen;
984: htp.tableData(cvalue=>'', calign=>'right', cattributes=>'id=""');
987:
988: htp.tableData(cvalue=>htf.formText('h_rundate',19,
989: cattributes=>'id="i_rundate"')||' ('||

Line 996: htp.tableData(cvalue=>wf_core.translate('RUN_EVERY'),

992: htp.tableRowClose;
993:
994: -- Interval (default 0 day 0 hour 15 min 0 sec)
995: htp.tableRowOpen;
996: htp.tableData(cvalue=>wf_core.translate('RUN_EVERY'),
997: calign=>'right', cattributes=>'id=""');
998: htp.tableData(cvalue=>''
1000: , calign=>'left', cattributes=>'id=""');

Line 999: ||' '||wf_core.translate('DAYS') || ''

995: htp.tableRowOpen;
996: htp.tableData(cvalue=>wf_core.translate('RUN_EVERY'),
997: calign=>'right', cattributes=>'id=""');
998: htp.tableData(cvalue=>''
1000: , calign=>'left', cattributes=>'id=""');
1001: htp.tableRowClose;
1002: htp.tableRowOpen;
1003: htp.tableData(cvalue=>' ', calign=>'right', cattributes=>'id=""');

Line 1005: ||' '||wf_core.translate('HOURS') || ''

1001: htp.tableRowClose;
1002: htp.tableRowOpen;
1003: htp.tableData(cvalue=>' ', calign=>'right', cattributes=>'id=""');
1004: htp.tableData(cvalue=>''
1006: , calign=>'left', cattributes=>'id=""');
1007: htp.tableRowClose;
1008: htp.tableRowOpen;
1009: htp.tableData(cvalue=>' ', calign=>'right', cattributes=>'id=""');

Line 1011: ||' '||wf_core.translate('MINUTES') || ''

1007: htp.tableRowClose;
1008: htp.tableRowOpen;
1009: htp.tableData(cvalue=>' ', calign=>'right', cattributes=>'id=""');
1010: htp.tableData(cvalue=>''
1012: , calign=>'left', cattributes=>'id=""');
1013: htp.tableRowClose;
1014: htp.tableRowOpen;
1015: htp.tableData(cvalue=>' ', calign=>'right', cattributes=>'id=""');

Line 1017: ||' '||wf_core.translate('SECONDS') || ''

1013: htp.tableRowClose;
1014: htp.tableRowOpen;
1015: htp.tableData(cvalue=>' ', calign=>'right', cattributes=>'id=""');
1016: htp.tableData(cvalue=>''
1018: , calign=>'left', cattributes=>'id=""');
1019: htp.tableRowClose;
1020:
1021: htp.tableClose;

Line 1067: htp.p('');

1063: end if;
1064:
1065: htp.p('');
1066:
1067: htp.p('');
1068:
1069: htp.tableopen (calign=>'CENTER', cattributes=>'summary=""');
1070: htp.tableRowOpen;
1071:

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

1071:
1072: -- Submit button
1073: htp.p('');
1074: wfa_html.create_reg_button ('javascript:document.WF_LSNR_EDIT.submit()',
1075: wf_core.translate ('SUBMIT'),
1076: wfa_html.image_loc,
1077: null,
1078: wf_core.translate ('SUBMIT'));
1079: htp.p('');

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

1074: wfa_html.create_reg_button ('javascript:document.WF_LSNR_EDIT.submit()',
1075: wf_core.translate ('SUBMIT'),
1076: wfa_html.image_loc,
1077: null,
1078: wf_core.translate ('SUBMIT'));
1079: htp.p('');
1080:
1081: -- Cancel button
1082: htp.p('');

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

1080:
1081: -- Cancel button
1082: htp.p('');
1083: wfa_html.create_reg_button ('javascript:window.history.back()',
1084: wf_core.translate('CANCEL'),
1085: wfa_html.image_loc,
1086: 'FNDJLFCN.gif',
1087: wf_core.translate('CANCEL'));
1088: htp.p('');

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

1083: wfa_html.create_reg_button ('javascript:window.history.back()',
1084: wf_core.translate('CANCEL'),
1085: wfa_html.image_loc,
1086: 'FNDJLFCN.gif',
1087: wf_core.translate('CANCEL'));
1088: htp.p('');
1089:
1090: htp.tableRowClose;
1091: htp.tableClose;

Line 1100: wf_core.context('WF_SETUP', 'Edit_Listener', rawtohex(aguid));

1096: commit;
1097: exception
1098: when OTHERS then
1099: rollback;
1100: wf_core.context('WF_SETUP', 'Edit_Listener', rawtohex(aguid));
1101: wfe_html_util.Error;
1102: end Edit_Listener;
1103:
1104: procedure Edit_Propagation(

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

1128: wfa_sec.GetSession(username);
1129: username := upper(username);
1130:
1131: -- Check Admin Priviledge
1132: admin_role := wf_core.translate('WF_ADMIN_ROLE');
1133: if (admin_role = '*' or
1134: Wf_Directory.IsPerformer(username, admin_role)) then
1135: -- Have admin privledge, do nothing.
1136: null;

Line 1138: wf_core.raise('WF_NOTADMIN');

1134: Wf_Directory.IsPerformer(username, admin_role)) then
1135: -- Have admin privledge, do nothing.
1136: null;
1137: else
1138: wf_core.raise('WF_NOTADMIN');
1139: end if;
1140:
1141: -- Render page
1142: htp.htmlOpen;

Line 1147: htp.title(wf_core.translate('WFE_EDIT_PROPAGATION_TITLE'));

1143:
1144: -- Set page title
1145: htp.headOpen;
1146:
1147: htp.title(wf_core.translate('WFE_EDIT_PROPAGATION_TITLE'));
1148: wfa_html.create_help_function('wf/links/t_e.htm?'||'T_EPPGN');
1149:
1150: fnd_document_management.get_open_dm_display_window;
1151:

Line 1171: htp.p('');

1167: }');
1168: htp.p('');
1169: htp.p('');
1170:
1171: htp.p('');
1172:
1173:
1174: htp.headClose;
1175:

Line 1177: wfa_sec.Header(FALSE, null, wf_core.translate('WFE_EDIT_PROPAGATION_TITLE'),

1173:
1174: htp.headClose;
1175:
1176: -- Page header
1177: wfa_sec.Header(FALSE, null, wf_core.translate('WFE_EDIT_PROPAGATION_TITLE'),
1178: TRUE);
1179:
1180: -- Form
1181: l_url := 'Wf_Setup.SubmitPropagation';

Line 1188: WF_CORE.Translate('WFE_EDIT_PROPAGATION_TITLE') ||

1184: cattributes=>'TARGET="_top" NAME="WF_PPGN_EDIT"');
1185:
1186: htp.tableOpen(calign=>'CENTER',
1187: cattributes=>'border=0 summary="' ||
1188: WF_CORE.Translate('WFE_EDIT_PROPAGATION_TITLE') ||
1189: '"');
1190:
1191: -- Queue Name (non-editable)
1192: htp.tableRowOpen;

Line 1193: htp.tableData(cvalue=>wf_core.translate('QUEUE'), calign=>'right',

1189: '"');
1190:
1191: -- Queue Name (non-editable)
1192: htp.tableRowOpen;
1193: htp.tableData(cvalue=>wf_core.translate('QUEUE'), calign=>'right',
1194: cattributes=>'id=""');
1195: htp.tableData(cvalue=>''||oqueue||'', calign=>'left',
1196: cattributes=>'id=""');
1197: htp.formHidden('h_qname', oqueue);

Line 1202: htp.tableData(cvalue=>wf_core.translate('WFE_DBLINK'), calign=>'right',

1198: htp.tableRowClose;
1199:
1200: -- To Database Link Name (non-editable)
1201: htp.tableRowOpen;
1202: htp.tableData(cvalue=>wf_core.translate('WFE_DBLINK'), calign=>'right',
1203: cattributes=>'id=""');
1204: htp.tableData(cvalue=>''||nvl(tosystem,wf_core.translate('LOCAL_SYSTEM'))
1205: ||'
', calign=>'left', cattributes=>'id=""');
1206: htp.formHidden('h_system', tosystem);

Line 1204: htp.tableData(cvalue=>''||nvl(tosystem,wf_core.translate('LOCAL_SYSTEM'))

1200: -- To Database Link Name (non-editable)
1201: htp.tableRowOpen;
1202: htp.tableData(cvalue=>wf_core.translate('WFE_DBLINK'), calign=>'right',
1203: cattributes=>'id=""');
1204: htp.tableData(cvalue=>''||nvl(tosystem,wf_core.translate('LOCAL_SYSTEM'))
1205: ||'
', calign=>'left', cattributes=>'id=""');
1206: htp.formHidden('h_system', tosystem);
1207: htp.tableRowClose;
1208:

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

1207: htp.tableRowClose;
1208:
1209: -- Duration (default null)
1210: htp.tableRowOpen;
1211: htp.tableData(cvalue=>wf_core.translate('DURATION'), calign=>'right', cattributes=>'id=""');
1212: htp.tableData(cvalue=>'',
1214: calign=>'left');
1215: htp.tableRowClose;

Line 1213: ||wf_core.translate('SECONDS') || '',

1209: -- Duration (default null)
1210: htp.tableRowOpen;
1211: htp.tableData(cvalue=>wf_core.translate('DURATION'), calign=>'right', cattributes=>'id=""');
1212: htp.tableData(cvalue=>'',
1214: calign=>'left');
1215: htp.tableRowClose;
1216:
1217: -- Interval (default null)

Line 1219: htp.tableData(cvalue=>wf_core.translate('RUN_EVERY'), calign=>'right',

1215: htp.tableRowClose;
1216:
1217: -- Interval (default null)
1218: htp.tableRowOpen;
1219: htp.tableData(cvalue=>wf_core.translate('RUN_EVERY'), calign=>'right',
1220: cattributes=>'id=""');
1221: htp.tableData(cvalue=>'',
1223: calign=>'left', cattributes=>'id=""');

Line 1222: ||wf_core.translate('SECONDS') || '',

1218: htp.tableRowOpen;
1219: htp.tableData(cvalue=>wf_core.translate('RUN_EVERY'), calign=>'right',
1220: cattributes=>'id=""');
1221: htp.tableData(cvalue=>'',
1223: calign=>'left', cattributes=>'id=""');
1224: htp.tableRowClose;
1225:
1226: -- Latency (default 60sec)

Line 1228: htp.tableData(cvalue=>wf_core.translate('LATENCY'), calign=>'right',

1224: htp.tableRowClose;
1225:
1226: -- Latency (default 60sec)
1227: htp.tableRowOpen;
1228: htp.tableData(cvalue=>wf_core.translate('LATENCY'), calign=>'right',
1229: cattributes=>'id=""');
1230: htp.tableData(cvalue=>'',
1232: calign=>'left');

Line 1231: ||wf_core.translate('SECONDS') || '',

1227: htp.tableRowOpen;
1228: htp.tableData(cvalue=>wf_core.translate('LATENCY'), calign=>'right',
1229: cattributes=>'id=""');
1230: htp.tableData(cvalue=>'',
1232: calign=>'left');
1233: htp.tableRowClose;
1234:
1235: htp.tableClose;

Line 1280: htp.p('');

1276: ||to_char(ppgnr.latency)||'"');
1277: end loop;
1278:
1279: htp.p('');
1280: htp.p('');
1281:
1282: end if;
1283:
1284: htp.tableopen (calign=>'CENTER', cattributes=>'WIDTH=100% summary=""');

Line 1296: wf_core.translate ('DELETE'),

1292: htp.p('');
1293: wfa_html.create_reg_button (
1294: 'javascript:document.WF_PPGN_EDIT.h_action.value=''DELETE'';'||
1295: 'document.WF_PPGN_EDIT.submit()',
1296: wf_core.translate ('DELETE'),
1297: wfa_html.image_loc,
1298: null,
1299: wf_core.translate ('DELETE'));
1300: htp.p('');

Line 1299: wf_core.translate ('DELETE'));

1295: 'document.WF_PPGN_EDIT.submit()',
1296: wf_core.translate ('DELETE'),
1297: wfa_html.image_loc,
1298: null,
1299: wf_core.translate ('DELETE'));
1300: htp.p('');
1301: htp.tableRowClose;
1302: htp.tableClose;
1303: else

Line 1315: 'javascript:verify('||''''||wf_core.translate('WFE_INTERVAL_ERROR')

1311: htp.tableOpen;
1312: htp.tableRowOpen;
1313: htp.p('');
1314: wfa_html.create_reg_button (
1315: 'javascript:verify('||''''||wf_core.translate('WFE_INTERVAL_ERROR')
1316: ||''')',
1317: wf_core.translate ('SUBMIT'),
1318: wfa_html.image_loc,
1319: null,

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

1313: htp.p('');
1314: wfa_html.create_reg_button (
1315: 'javascript:verify('||''''||wf_core.translate('WFE_INTERVAL_ERROR')
1316: ||''')',
1317: wf_core.translate ('SUBMIT'),
1318: wfa_html.image_loc,
1319: null,
1320: wf_core.translate ('SUBMIT'));
1321: htp.p('');

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

1316: ||''')',
1317: wf_core.translate ('SUBMIT'),
1318: wfa_html.image_loc,
1319: null,
1320: wf_core.translate ('SUBMIT'));
1321: htp.p('');
1322: htp.p('');
1323: -- Cancel button
1324: wfa_html.create_reg_button ('javascript:window.history.back()',

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

1321: htp.p('');
1322: htp.p('');
1323: -- Cancel button
1324: wfa_html.create_reg_button ('javascript:window.history.back()',
1325: wf_core.translate('CANCEL'),
1326: wfa_html.image_loc,
1327: 'FNDJLFCN.gif',
1328: wf_core.translate('CANCEL'));
1329: htp.p('');

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

1324: wfa_html.create_reg_button ('javascript:window.history.back()',
1325: wf_core.translate('CANCEL'),
1326: wfa_html.image_loc,
1327: 'FNDJLFCN.gif',
1328: wf_core.translate('CANCEL'));
1329: htp.p('');
1330: htp.tableRowClose;
1331: htp.tableClose;
1332: htp.p('');

Line 1345: wf_core.context('WF_SETUP', 'Edit_Propagation', oqueue, tosystem, url);

1341:
1342: exception
1343: when OTHERS then
1344: rollback;
1345: wf_core.context('WF_SETUP', 'Edit_Propagation', oqueue, tosystem, url);
1346: wfe_html_util.Error;
1347: end Edit_Propagation;
1348:
1349:

Line 1432: wf_core.raise('WFE_AGENT_NOTEXIST');

1428: interval=>to_date(null)
1429: );
1430: exception when no_data_found then
1431: -- Invalid Agent so raising error.
1432: wf_core.raise('WFE_AGENT_NOTEXIST');
1433: end;
1434: else
1435: DBMS_JOB.Next_Date(
1436: job=>l_job,

Line 1445: wf_core.raise('WFE_LATER_INTERVAL');

1441: -- next rundate should be future date
1442: if (l_rundate is not null) then
1443: if (Wf_Setup.JobNextRunDate(l_job,l_day,l_hour,l_minute,l_sec)
1444: <= sysdate) then
1445: wf_core.raise('WFE_LATER_INTERVAL');
1446: end if;
1447: end if;
1448:
1449: DBMS_JOB.Interval(

Line 1473: wf_core.context('WF_SETUP', 'SubmitListener', h_name, h_rundate,

1469:
1470: exception
1471: when OTHERS then
1472: rollback;
1473: wf_core.context('WF_SETUP', 'SubmitListener', h_name, h_rundate,
1474: '('||h_day||','||h_hour||','||h_minute||','||h_sec||')');
1475: wfe_html_util.Error;
1476: end SubmitListener;
1477:

Line 1561: wf_core.context('WF_SETUP', 'SubmitPropagation', h_qname, h_system,

1557:
1558: exception
1559: when OTHERS then
1560: rollback;
1561: wf_core.context('WF_SETUP', 'SubmitPropagation', h_qname, h_system,
1562: h_duration, h_interval, h_latency);
1563: wfe_html_util.Error;
1564: end SubmitPropagation;
1565:

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

1578: wfa_sec.GetSession(username);
1579: username := upper(username);
1580:
1581: -- Check Admin Priviledge
1582: admin_role := wf_core.translate('WF_ADMIN_ROLE');
1583: if (admin_role = '*' or
1584: Wf_Directory.IsPerformer(username, admin_role)) then
1585: -- Have admin privledge, do nothing.
1586: null;

Line 1588: wf_core.raise('WF_NOTADMIN');

1584: Wf_Directory.IsPerformer(username, admin_role)) then
1585: -- Have admin privledge, do nothing.
1586: null;
1587: else
1588: wf_core.raise('WF_NOTADMIN');
1589: end if;
1590:
1591: DBMS_JOB.Remove(h_job);
1592:

Line 1597: wf_core.context('WF_SETUP', 'DeleteJob', h_job, h_url);

1593: -- go back to the specified URL
1594: Wfe_Html_Util.gotoURL(h_url);
1595: exception
1596: when OTHERS then
1597: wf_core.context('WF_SETUP', 'DeleteJob', h_job, h_url);
1598: raise;
1599: end DeleteJob;
1600:
1601: --

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

1612: wfa_sec.GetSession(username);
1613: username := upper(username);
1614:
1615: -- Check Admin Priviledge
1616: admin_role := wf_core.translate('WF_ADMIN_ROLE');
1617: if (admin_role = '*' or
1618: Wf_Directory.IsPerformer(username, admin_role)) then
1619: -- Have admin privledge, do nothing.
1620: null;

Line 1622: wf_core.raise('WF_NOTADMIN');

1618: Wf_Directory.IsPerformer(username, admin_role)) then
1619: -- Have admin privledge, do nothing.
1620: null;
1621: else
1622: wf_core.raise('WF_NOTADMIN');
1623: end if;
1624:
1625: dbms_aqadm.UnSchedule_Propagation(
1626: queue_name=>h_qname,

Line 1631: wf_core.context('WF_SETUP', 'DeletePropagation', h_qname, h_system);

1627: destination=>h_system
1628: );
1629: exception
1630: when OTHERS then
1631: wf_core.context('WF_SETUP', 'DeletePropagation', h_qname, h_system);
1632: raise;
1633: end DeletePropagation;
1634:
1635: --

Line 1711: wf_core.context('WF_SETUP', 'SubmitPropagation', h_qname, h_system,

1707:
1708: exception
1709: when OTHERS then
1710: rollback;
1711: wf_core.context('WF_SETUP', 'SubmitPropagation', h_qname, h_system,
1712: h_duration,h_latency);
1713: raise;
1714: end SubmitPropagation;
1715: end WF_SETUP;