DBA Data[Home] [Help]

PACKAGE: APPS.XDPCORE_ERROR

Source


1 PACKAGE XDPCORE_ERROR AUTHID CURRENT_USER AS
2 /* $Header: XDPCORRS.pls 120.2 2006/04/10 23:23:15 dputhiye noship $ */
3 
4 
5 
6  e_NullValueException		EXCEPTION;
7 
8  x_ErrMsg			VARCHAR2(2000);
9  x_DebugMsg			VARCHAR2(2000);
10 
11 
12 --  FE_ERROR_PROCESS_OPTIONS
13 --   Resultout
14 --     Activity Performed   - Activity was completed without any errors
15 --
16 -- Your Description here:
17 
18 
19 Procedure FE_ERROR_PROCESS_OPTIONS (itemtype        in varchar2,
20 			itemkey         in varchar2,
21 			actid           in number,
22 			funcmode        in varchar2,
23 			resultout       out NOCOPY varchar2);
24 
25 
26 --  NOTIFY_OUTSIDE_SYSTEM_OF_ERROR
27 --   Resultout
28 --     Activity Performed   - Activity was completed without any errors
29 --
30 -- Your Description here:
31 
32 
33 Procedure NOTIFY_OUTSIDE_SYSTEM_OF_ERROR (itemtype        in varchar2,
34 			itemkey         in varchar2,
35 			actid           in number,
36 			funcmode        in varchar2,
37 			resultout       out NOCOPY varchar2);
38 
39 
40 
41 --  PREPARE_ERROR_MESSAGE
42 --   Resultout
43 --     Activity Performed   - Activity was completed without any errors
44 --
45 -- Your Description here:
46 
47 
48 Procedure PREPARE_ERROR_MESSAGE (itemtype        in varchar2,
49 			itemkey         in varchar2,
50 			actid           in number,
51 			funcmode        in varchar2,
52 			resultout       out NOCOPY varchar2);
53 
54 
55 
56 -- FE_ERR_NTF
57 --   Resultout
58 --     Activity Performed   - Activity was completed without any errors
59 --
60 -- Your Description here:
61 
62 
63 Procedure FE_ERR_NTF (itemtype        in varchar2,
64                       itemkey         in varchar2,
65                       actid           in number,
66                       funcmode        in varchar2,
67                       resultout       out NOCOPY varchar2);
68 
69 
70 Procedure SET_ERROR_CONTEXT (itemtype        in varchar2,
71                       itemkey         in varchar2,
72                       actid           in number,
73                       funcmode        in varchar2,
74                       resultout       out NOCOPY varchar2);
75 
76 Procedure LOG_SESSION_ERROR( p_errory_type in varchar2);
77 
78 End XDPCORE_ERROR;