DBA Data[Home] [Help]

APPS.XDPCORE_ERROR dependencies on WF_CORE

Line 74: wf_core.context('XDPCORE_ERROR', 'FE_ERR_NTF', itemtype, itemkey, to_char(actid), funcmode);

70: END IF;
71:
72: EXCEPTION
73: WHEN OTHERS THEN
74: wf_core.context('XDPCORE_ERROR', 'FE_ERR_NTF', itemtype, itemkey, to_char(actid), funcmode);
75: raise;
76: END FE_ERR_NTF;
77:
78:

Line 110: wf_core.context('XDPCORE_ERROR', 'FE_ERROR_PROCESS_OPTIONS', itemtype, itemkey, to_char(actid), funcmode);

106:
107:
108: EXCEPTION
109: WHEN OTHERS THEN
110: wf_core.context('XDPCORE_ERROR', 'FE_ERROR_PROCESS_OPTIONS', itemtype, itemkey, to_char(actid), funcmode);
111: raise;
112: END FE_ERROR_PROCESS_OPTIONS;
113:
114:

Line 144: wf_core.context('XDPCORE_ERROR', 'PREPARE_ERROR_MESSAGE', itemtype, itemkey, to_char(actid), funcmode);

140:
141:
142: EXCEPTION
143: WHEN OTHERS THEN
144: wf_core.context('XDPCORE_ERROR', 'PREPARE_ERROR_MESSAGE', itemtype, itemkey, to_char(actid), funcmode);
145: raise;
146: END PREPARE_ERROR_MESSAGE;
147:
148:

Line 178: wf_core.context('XDPCORE_ERROR', 'NOTIFY_OUTSIDE_SYSTEM_OF_ERROR', itemtype, itemkey, to_char(actid), funcmode);

174:
175:
176: EXCEPTION
177: WHEN OTHERS THEN
178: wf_core.context('XDPCORE_ERROR', 'NOTIFY_OUTSIDE_SYSTEM_OF_ERROR', itemtype, itemkey, to_char(actid), funcmode);
179: raise;
180: END NOTIFY_OUTSIDE_SYSTEM_OF_ERROR;
181:
182: Procedure SET_ERROR_CONTEXT (itemtype in varchar2,

Line 205: wf_core.context('XDPCORE_ERROR', 'SET_ERROR_CONTEXT', itemtype, itemkey, to_char(actid), funcmode);

201:
202:
203: EXCEPTION
204: WHEN OTHERS THEN
205: wf_core.context('XDPCORE_ERROR', 'SET_ERROR_CONTEXT', itemtype, itemkey, to_char(actid), funcmode);
206: raise;
207: END SET_ERROR_CONTEXT;
208:
209: Procedure LOG_SESSION_ERROR( p_errory_type in varchar2)

Line 245: wf_core.clear;

241: exception
242: when others then
243: if sqlcode = -20002 then
244: l_JobID := 0;
245: wf_core.clear;
246: else
247: raise e_UnhandledException;
248: end if;
249: end;

Line 315: wf_core.context('XDPCORE_ERROR', 'FeErrorProcessOptions', itemtype, itemkey, to_char(actid), x_Progress);

311:
312: exception
313: when others then
314: x_Progress := 'XDPCORE_ERROR.FeErrorProcessOptions. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1500);
315: wf_core.context('XDPCORE_ERROR', 'FeErrorProcessOptions', itemtype, itemkey, to_char(actid), x_Progress);
316: raise;
317: end FeErrorProcessOptions;
318:
319:

Line 504: wf_core.context('XDPCORE_ERROR', 'PrepareErrorMessage', itemtype, itemkey, null, x_Progress);

500: exception
501: when e_AddAttrException then
502: x_progress := 'XDPCORE.ERROR.PrepareErrorMessage. Error when adding attribute dynamically. Error: ' ||
503: SUBSTR(ErrStr,1,1500);
504: wf_core.context('XDPCORE_ERROR', 'PrepareErrorMessage', itemtype, itemkey, null, x_Progress);
505: raise;
506:
507: when others then
508: x_Progress := 'XDPCORE_ERROR.PrepareErrorMessage. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1500);

Line 509: wf_core.context('XDPCORE_ERROR', 'PrepareErrorMessage', itemtype, itemkey, null, x_Progress);

505: raise;
506:
507: when others then
508: x_Progress := 'XDPCORE_ERROR.PrepareErrorMessage. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1500);
509: wf_core.context('XDPCORE_ERROR', 'PrepareErrorMessage', itemtype, itemkey, null, x_Progress);
510: raise;
511: end PrepareErrorMessage;
512:
513:

Line 542: wf_core.context('XDPCORE_ERROR', 'NotifyOutsideSystemOfError', itemtype, itemkey, to_char(actid), x_Progress);

538:
539: exception
540: when others then
541: x_Progress := 'XDPCORE_ERROR.NotifyOutsideSystemOfError. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1500);
542: wf_core.context('XDPCORE_ERROR', 'NotifyOutsideSystemOfError', itemtype, itemkey, to_char(actid), x_Progress);
543: raise;
544: end NotifyOutsideSystemOfError;
545:
546:

Line 565: wf_core.context('XDPCORE_ERROR', 'FeErrorNotif', itemtype, itemkey, null, x_Progress);

561:
562: exception
563: when others then
564: x_Progress := 'XDPCORE_ERROR.FeErrorNotif. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1500);
565: wf_core.context('XDPCORE_ERROR', 'FeErrorNotif', itemtype, itemkey, null, x_Progress);
566: raise;
567: end FeErrorNotif;
568:
569: Procedure SetErrorContext (itemtype in varchar2,

Line 713: wf_core.context('XDPCORE_ERROR', 'SetErrorContext', itemtype, itemkey, null, x_Progress);

709:
710: exception
711: when others then
712: x_Progress := 'XDPCORE_ERROR.SetErrorContext. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1500);
713: wf_core.context('XDPCORE_ERROR', 'SetErrorContext', itemtype, itemkey, null, x_Progress);
714: raise;
715: end SetErrorContext;
716:
717: