DBA Data[Home] [Help]

APPS.MSD_WF dependencies on MSD_WF

Line 1: PACKAGE BODY MSD_WF AS

1: PACKAGE BODY MSD_WF AS
2: /* $Header: msddpwfb.pls 120.2 2006/02/13 12:29:07 faliu noship $ */
3:
4: express_server varchar2(240);
5: DBName varchar2(80);

Line 168: WF_CORE.CONTEXT('MSD_WF', 'DOEXPRESS',

164: commit;
165:
166: return;
167: else
168: WF_CORE.CONTEXT('MSD_WF', 'DOEXPRESS',
169: itemtype, itemkey, to_char(actid), funcmode);
170: raise;
171: end if;
172:

Line 301: WF_CORE.CONTEXT('MSD_WF', 'STARTPRO',

297: ItemKey => ItemKey);
298: return;
299: exception
300: when others then
301: WF_CORE.CONTEXT('MSD_WF', 'STARTPRO',
302: itemtype, itemkey);
303: raise;
304: end STARTPRO;
305: PROCEDURE LAUNCH (itemtype in varchar2,

Line 332: -- This is set by MSD_WF.GOVERNOR.

328: -- LAUNCH means Make the call to launch a sub process.
329: -- DONE means all DB Assignments are complete.
330: -- CYCLE means keep processing.
331: -- This is set upon the start of the process.
332: -- This is set by MSD_WF.GOVERNOR.
333: LaunchMgr:=wf_engine.GetItemAttrText(Itemtype => ItemType,
334: Itemkey => ItemKey,
335: aname => 'LAUNCHMGR');
336: PlanID:=wf_engine.GetItemAttrText(Itemtype => ItemType,

Line 407: WF_CORE.CONTEXT('MSD_WF', 'LAUNCH',

403: commit;
404:
405: return;
406: else
407: WF_CORE.CONTEXT('MSD_WF', 'LAUNCH',
408: itemtype, itemkey, to_char(actid), funcmode, ActRetErr);
409: raise;
410: end if;
411:

Line 503: WF_CORE.CONTEXT('MSD_WF', 'GOVERNOR',

499: commit;
500:
501: return;
502: else
503: WF_CORE.CONTEXT('MSD_WF', 'GOVERNOR',
504: itemtype, itemkey, to_char(actid), funcmode, ActRetErr);
505: raise;
506: end if;
507: end GOVERNOR;

Line 650: WF_CORE.CONTEXT('MSD_WF', 'ConcLoop', itemtype, itemkey, ' NO_DATA_FOUND_BUN');

646: when NO_DATA_FOUND then
647: if deferred_found = 'YES' then
648: return;
649: else
650: WF_CORE.CONTEXT('MSD_WF', 'ConcLoop', itemtype, itemkey, ' NO_DATA_FOUND_BUN');
651: retcode := 2;
652: errbuf:=substr(sqlerrm, 1, 255);
653: raise;
654: end if;

Line 657: WF_CORE.CONTEXT('MSD_WF', 'ConcLoop', itemtype, itemkey);

653: raise;
654: end if;
655:
656: when others then
657: WF_CORE.CONTEXT('MSD_WF', 'ConcLoop', itemtype, itemkey);
658: retcode := 2;
659: errbuf:=substr(sqlerrm, 1, 255);
660:
661: raise;

Line 698: MSD_WF.ConcLoop(errbuf, retcode, itemtype, cost_ItemKey);

694:
695:
696: errbuf := ' ';
697:
698: MSD_WF.ConcLoop(errbuf, retcode, itemtype, cost_ItemKey);
699:
700:
701: return;
702:

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

759: END IF;
760:
761: exception
762: when others then
763: WF_CORE.CONTEXT('MSD_WF', 'SetColDate', itemtype, itemkey, to_char(actid), funcmode);
764: raise;
765: end SetColDate;
766: --========================================================================
767: -- SetUpldDate

Line 832: WF_CORE.CONTEXT('MSD_WF', 'SetUpldDate', itemtype, itemkey, to_char(actid), funcmode);

828: END IF;
829:
830: exception
831: when others then
832: WF_CORE.CONTEXT('MSD_WF', 'SetUpldDate', itemtype, itemkey, to_char(actid), funcmode);
833: raise;
834: end SetUpldDate;
835:
836: --========================================================================

Line 1000: MSD_WF.StartConcProc('ODPCYCLE', Itemkey);

996: ItemKey => ItemKey);
997: commit;
998:
999: -- Start background engine for this process.
1000: MSD_WF.StartConcProc('ODPCYCLE', Itemkey);
1001: commit;
1002:
1003: return;
1004:

Line 1142: WF_CORE.CONTEXT('MSD_WF', 'SET_ATTRIBUTES', itemtype, itemkey, to_char(actid), funcmode);

1138: return;
1139:
1140: exception
1141: when others then
1142: WF_CORE.CONTEXT('MSD_WF', 'SET_ATTRIBUTES', itemtype, itemkey, to_char(actid), funcmode);
1143: raise;
1144:
1145: end SET_ATTRIBUTES;
1146:

Line 1313: end MSD_WF;

1309:
1310: end execute_dml2;
1311:
1312: --================================================================================
1313: end MSD_WF;