DBA Data[Home] [Help]

APPS.XDPCORE_BUNDLE dependencies on WF_CORE

Line 79: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_BUNDLE_PROCESSES', itemtype, itemkey, to_char(actid), funcmode);

75:
76:
77: EXCEPTION
78: WHEN OTHERS THEN
79: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_BUNDLE_PROCESSES', itemtype, itemkey, to_char(actid), funcmode);
80: raise;
81: END LAUNCH_BUNDLE_PROCESSES;
82:
83:

Line 114: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_BUNDLE_PROCESS_SEQ', itemtype, itemkey, to_char(actid), funcmode);

110:
111:
112: EXCEPTION
113: WHEN OTHERS THEN
114: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_BUNDLE_PROCESS_SEQ', itemtype, itemkey, to_char(actid), funcmode);
115: raise;
116: END LAUNCH_BUNDLE_PROCESS_SEQ;
117:
118:

Line 153: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_LINE_FOR_BUNDLE_PROCESS', itemtype, itemkey, to_char(actid), funcmode);

149:
150:
151: EXCEPTION
152: WHEN OTHERS THEN
153: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_LINE_FOR_BUNDLE_PROCESS', itemtype, itemkey, to_char(actid), funcmode);
154: raise;
155: END LAUNCH_LINE_FOR_BUNDLE_PROCESS;
156:
157:

Line 187: wf_core.context('XDPCORE_BUNDLE', 'ARE_ALL_BUNDLES_DONE', itemtype, itemkey, to_char(actid), funcmode);

183: END IF;
184:
185: EXCEPTION
186: WHEN OTHERS THEN
187: wf_core.context('XDPCORE_BUNDLE', 'ARE_ALL_BUNDLES_DONE', itemtype, itemkey, to_char(actid), funcmode);
188: raise;
189: END ARE_ALL_BUNDLES_DONE;
190:
191:

Line 213: wf_core.context('XDPCORE_BUNDLE', 'UPDATE_BUNDLE_STATUS', p_itemtype, p_itemkey, null, x_Progress);

209:
210: EXCEPTION
211: WHEN others THEN
212: x_Progress := 'XDPCORE_BUNDLE.UPDATE_BUNDLE_STATUS. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 2000);
213: wf_core.context('XDPCORE_BUNDLE', 'UPDATE_BUNDLE_STATUS', p_itemtype, p_itemkey, null, x_Progress);
214: rollback;
215: raise;
216: END UPDATE_BUNDLE_STATUS ;
217:

Line 248: wf_core.context('XDPCORE_BUNDLE', 'INITIALIZE_BUNDLE', itemtype, itemkey, to_char(actid), funcmode);

244:
245:
246: EXCEPTION
247: WHEN OTHERS THEN
248: wf_core.context('XDPCORE_BUNDLE', 'INITIALIZE_BUNDLE', itemtype, itemkey, to_char(actid), funcmode);
249: raise;
250: END INITIALIZE_BUNDLE;
251:
252: Procedure RESOLVE_IND_DEP_BUNDLES (itemtype in varchar2,

Line 277: wf_core.context('XDPCORE_BUNDLE', 'RESOLVE_IND_DEP_BUNDLES', itemtype, itemkey, to_char(actid), funcmode);

273:
274:
275: EXCEPTION
276: WHEN OTHERS THEN
277: wf_core.context('XDPCORE_BUNDLE', 'RESOLVE_IND_DEP_BUNDLES', itemtype, itemkey, to_char(actid), funcmode);
278: raise;
279: END RESOLVE_IND_DEP_BUNDLES;
280:
281: Procedure LAUNCH_ALL_IND_BUNDLES (itemtype in varchar2,

Line 304: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_ALL_IND_BUNDLES', itemtype, itemkey, to_char(actid), funcmode);

300: END IF;
301:
302: EXCEPTION
303: WHEN OTHERS THEN
304: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_ALL_IND_BUNDLES', itemtype, itemkey, to_char(actid), funcmode);
305: raise;
306:
307: END LAUNCH_ALL_IND_BUNDLES;
308:

Line 333: wf_core.context('XDPCORE_BUNDLE', 'INITIALIZE_DEP_BUNDLE_PROCESS', itemtype, itemkey, to_char(actid), funcmode);

329: END IF;
330:
331: EXCEPTION
332: WHEN OTHERS THEN
333: wf_core.context('XDPCORE_BUNDLE', 'INITIALIZE_DEP_BUNDLE_PROCESS', itemtype, itemkey, to_char(actid), funcmode);
334: raise;
335: END INITIALIZE_DEP_BUNDLE_PROCESS;
336:
337:

Line 362: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_BUNDLE_PROCESS', itemtype, itemkey, to_char(actid), funcmode);

358: END IF;
359:
360: EXCEPTION
361: WHEN OTHERS THEN
362: wf_core.context('XDPCORE_BUNDLE', 'LAUNCH_BUNDLE_PROCESS', itemtype, itemkey, to_char(actid), funcmode);
363: raise;
364: END LAUNCH_BUNDLE_PROCESS;
365:
366:

Line 390: wf_core.context('XDPCORE_BUNDLE', 'RESOLVE_IND_DEP_LINES_FOR_BUN', itemtype, itemkey, to_char(actid), funcmode);

386: END IF;
387:
388: EXCEPTION
389: WHEN OTHERS THEN
390: wf_core.context('XDPCORE_BUNDLE', 'RESOLVE_IND_DEP_LINES_FOR_BUN', itemtype, itemkey, to_char(actid), funcmode);
391: raise;
392: END RESOLVE_IND_DEP_LINES_FOR_BUN;
393:
394:

Line 503: wf_core.context('XDPCORE_BUNDLE', 'AreAllBundlesDone', itemtype, itemkey, null, x_Progress);

499: if c_BundleSeq%ISOPEN then
500: close c_BundleSeq;
501: end if;
502:
503: wf_core.context('XDPCORE_BUNDLE', 'AreAllBundlesDone', itemtype, itemkey, null, x_Progress);
504: raise;
505:
506: when others then
507: if c_BundleSeq%ISOPEN then

Line 512: wf_core.context('XDPCORE_BUNDLE', 'AreAllBundlesDone', itemtype, itemkey, null, x_Progress);

508: close c_BundleSeq;
509: end if;
510:
511: x_Progress := 'XDPCORE_BUNDLE.AreAllBundlesDone. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 2000);
512: wf_core.context('XDPCORE_BUNDLE', 'AreAllBundlesDone', itemtype, itemkey, null, x_Progress);
513: raise;
514: end AreAllBundlesDone;
515:
516:

Line 726: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcesses', itemtype, itemkey, null, x_Progress);

722: if c_GetIndBundle%ISOPEN then
723: close c_GetIndBundle;
724: end if;
725:
726: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcesses', itemtype, itemkey, null, x_Progress);
727: raise;
728:
729: when e_InvalidConfigException then
730: if c_GetDepBundle%ISOPEN then

Line 738: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcesses', itemtype, itemkey, null, x_Progress);

734: if c_GetIndBundle%ISOPEN then
735: close c_GetIndBundle;
736: end if;
737:
738: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcesses', itemtype, itemkey, null, x_Progress);
739: raise;
740:
741: when others then
742: if c_GetDepBundle%ISOPEN then

Line 751: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcesses', itemtype, itemkey, null, x_Progress);

747: close c_GetIndBundle;
748: end if;
749:
750: x_Progress := 'XDPCORE_BUNDLE.LaunchBundleProcesses. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 2000);
751: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcesses', itemtype, itemkey, null, x_Progress);
752: raise;
753: end LaunchBundleProcesses;
754:
755:

Line 1221: wf_core.context('XDPCORE_BUNDLE', 'LaunchLineForBundleProcess', itemtype, itemkey, null, x_Progress);

1217: END LOOP;
1218:
1219: exception
1220: when others then
1221: wf_core.context('XDPCORE_BUNDLE', 'LaunchLineForBundleProcess', itemtype, itemkey, null, x_Progress);
1222: raise;
1223: end LaunchLineForBundleProcess;
1224:
1225:

Line 1500: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcessSeq', itemtype, itemkey, null, x_Progress);

1496: end if;
1497:
1498: exception
1499: when others then
1500: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcessSeq', itemtype, itemkey, null, x_Progress);
1501: raise;
1502: end LaunchBundleProcessSeq;
1503:
1504:

Line 1549: wf_core.context('XDPCORE_BUNDLE', 'InitializeBundle', itemtype, itemkey, null, x_Progress);

1545:
1546:
1547: exception
1548: when others then
1549: wf_core.context('XDPCORE_BUNDLE', 'InitializeBundle', itemtype, itemkey, null, x_Progress);
1550: raise;
1551: end InitializeBundle;
1552:
1553: Function ResolveIndDepBundles (itemtype in varchar2,

Line 1605: wf_core.context('XDPCORE_BUNDLE', 'ResolveIndDepBundles', itemtype, itemkey );

1601: end if;
1602:
1603: EXCEPTION
1604: WHEN OTHERS THEN
1605: wf_core.context('XDPCORE_BUNDLE', 'ResolveIndDepBundles', itemtype, itemkey );
1606: RAISE;
1607: END ResolveIndDepBundles;
1608:
1609:

Line 1698: wf_core.context('XDPCORE_BUNDLE', 'LaunchAllIndBundles', itemtype, itemkey, null, x_progress );

1694: return l_result;
1695:
1696: EXCEPTION
1697: WHEN OTHERS THEN
1698: wf_core.context('XDPCORE_BUNDLE', 'LaunchAllIndBundles', itemtype, itemkey, null, x_progress );
1699: RAISE;
1700: END LaunchAllIndBundles;
1701:
1702: Procedure InitializeDepBundleProcess(itemtype in varchar2,

Line 1728: wf_core.context('XDPCORE_BUNDLE', 'InitializeDepBundleProcess', itemtype, itemkey, null, x_progress );

1724:
1725:
1726: EXCEPTION
1727: WHEN OTHERS THEN
1728: wf_core.context('XDPCORE_BUNDLE', 'InitializeDepBundleProcess', itemtype, itemkey, null, x_progress );
1729: RAISE;
1730: END InitializeDepBundleProcess;
1731:
1732: Procedure LaunchBundleProcess(itemtype in varchar2,

Line 1850: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcess', itemtype, itemkey, null, x_progress );

1846: end if;
1847:
1848: EXCEPTION
1849: WHEN OTHERS THEN
1850: wf_core.context('XDPCORE_BUNDLE', 'LaunchBundleProcess', itemtype, itemkey, null, x_progress );
1851: RAISE;
1852: END LaunchBundleProcess;
1853:
1854: Function ResolveIndDepLinesForBun (itemtype in varchar2,

Line 1954: wf_core.context('XDPCORE_BUNDLE', 'ResolveIndDepLinesForBun', itemtype, itemkey, null, x_Progress);

1950:
1951: when others then
1952:
1953: x_Progress := 'XDPCORE_BUNDLE.ResolveIndDepLinesForBun. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1200);
1954: wf_core.context('XDPCORE_BUNDLE', 'ResolveIndDepLinesForBun', itemtype, itemkey, null, x_Progress);
1955: raise;
1956: end ResolveIndDepLinesForBun;
1957:
1958: End XDPCORE_BUNDLE;