DBA Data[Home] [Help]

APPS.MSDWF dependencies on MSDWF

Line 1: PACKAGE BODY MSDWF AS

1: PACKAGE BODY MSDWF AS
2: /* $Header: msddpwfb.pls 115.17 2002/04/09 08:05:13 pkm ship $ */
3:
4: express_server varchar2(240);
5: DBName varchar2(80);

Line 156: WF_CORE.CONTEXT('MSDWF', 'DOEXPRESS',

152: return;
153: END IF;
154: exception
155: when others then
156: WF_CORE.CONTEXT('MSDWF', 'DOEXPRESS',
157: itemtype, itemkey, to_char(actid), funcmode);
158: raise;
159: end DOEXPRESS;
160: -- Starts a Workflow process.

Line 248: WF_CORE.CONTEXT('MSDWF', 'STARTPRO',

244: ItemKey => ItemKey);
245: return;
246: exception
247: when others then
248: WF_CORE.CONTEXT('MSDWF', 'STARTPRO',
249: itemtype, itemkey);
250: raise;
251: end STARTPRO;
252: PROCEDURE LAUNCH (itemtype in varchar2,

Line 277: -- This is set by MSDWF.GOVERNOR.

273: -- LAUNCH means Make the call to launch a sub process.
274: -- DONE means all DB Assignments are complete.
275: -- CYCLE means keep processing.
276: -- This is set upon the start of the process.
277: -- This is set by MSDWF.GOVERNOR.
278: LaunchMgr:=wf_engine.GetItemAttrText(Itemtype => ItemType,
279: Itemkey => ItemKey,
280: aname => 'LAUNCHMGR');
281: PlanID:=wf_engine.GetItemAttrText(Itemtype => ItemType,

Line 351: WF_CORE.CONTEXT('MSDWF', 'LAUNCH',

347: end if;
348: END IF;
349: exception
350: when others then
351: WF_CORE.CONTEXT('MSDWF', 'LAUNCH',
352: itemtype, itemkey, to_char(actid), funcmode, ActRetErr);
353: raise;
354: end LAUNCH;
355: PROCEDURE GOVERNOR (itemtype in varchar2,

Line 441: WF_CORE.CONTEXT('MSDWF', 'GOVERNOR',

437: return;
438: END IF;
439: exception
440: when others then
441: WF_CORE.CONTEXT('MSDWF', 'GOVERNOR',
442: itemtype, itemkey, to_char(actid), funcmode, ActRetErr);
443: raise;
444: end GOVERNOR;
445:

Line 508: WF_CORE.CONTEXT('MSDWF', 'StartConcProc',

504: return;
505:
506: exception
507: when others then
508: WF_CORE.CONTEXT('MSDWF', 'StartConcProc',
509: itemtype, itemkey);
510: raise;
511:
512: end StartConcProc;

Line 587: WF_CORE.CONTEXT('MSDWF', 'ConcLoop', itemtype, itemkey, ' NO_DATA_FOUND ');

583: when NO_DATA_FOUND then
584: if deferred_found = 'YES' then
585: return;
586: else
587: WF_CORE.CONTEXT('MSDWF', 'ConcLoop', itemtype, itemkey, ' NO_DATA_FOUND ');
588: retcode := 2;
589: errbuf:=substr(sqlerrm, 1, 255);
590: raise;
591: end if;

Line 594: WF_CORE.CONTEXT('MSDWF', 'ConcLoop', itemtype, itemkey);

590: raise;
591: end if;
592:
593: when others then
594: WF_CORE.CONTEXT('MSDWF', 'ConcLoop', itemtype, itemkey);
595: retcode := 2;
596: errbuf:=substr(sqlerrm, 1, 255);
597:
598: raise;

Line 634: MSDWF.ConcLoop(errbuf, retcode, itemtype, cost_ItemKey);

630: BEGIN
631:
632: errbuf := ' ';
633:
634: MSDWF.ConcLoop(errbuf, retcode, itemtype, cost_ItemKey);
635:
636: return;
637:
638: exception

Line 820: WF_CORE.CONTEXT('MSDWF', 'SetColDate', itemtype, itemkey, to_char(actid), funcmode);

816: END IF;
817:
818: exception
819: when others then
820: WF_CORE.CONTEXT('MSDWF', 'SetColDate', itemtype, itemkey, to_char(actid), funcmode);
821: raise;
822: end SetColDate;
823:
824: --========================================================================

Line 936: EngItemKey := org || '-' || PlanName || '-' || to_char( sysdate, 'MM/DD/YYYY-HH24:MI:SS') || '- MSDWFSTRTBG';

932: ItemKey => ItemKey);
933: commit;
934:
935: -- Start background engine for this process.
936: EngItemKey := org || '-' || PlanName || '-' || to_char( sysdate, 'MM/DD/YYYY-HH24:MI:SS') || '- MSDWFSTRTBG';
937: MSDWF.StartConcProc('MSDWFSTRTBG', 'ODPCYCLE', EngItemKey, owner, PlanID, Itemkey);
938: commit;
939:
940: return;

Line 937: MSDWF.StartConcProc('MSDWFSTRTBG', 'ODPCYCLE', EngItemKey, owner, PlanID, Itemkey);

933: commit;
934:
935: -- Start background engine for this process.
936: EngItemKey := org || '-' || PlanName || '-' || to_char( sysdate, 'MM/DD/YYYY-HH24:MI:SS') || '- MSDWFSTRTBG';
937: MSDWF.StartConcProc('MSDWFSTRTBG', 'ODPCYCLE', EngItemKey, owner, PlanID, Itemkey);
938: commit;
939:
940: return;
941:

Line 950: end MSDWF;

946: raise;
947:
948: end StartMaster;
949: -- ========================================================================
950: end MSDWF;