DBA Data[Home] [Help]

PACKAGE: APPS.IGI_IAC_DEBUG_PKG

Source


1 PACKAGE  IGI_IAC_DEBUG_PKG AUTHID CURRENT_USER AS
2 /* $Header: igiiades.pls 120.3.12000000.1 2007/08/01 16:14:43 npandya ship $ */
3 
4 /*=========================================================================+
5  | Function Name:                                                          |
6  |    debug                                                                |
7  |                                                                         |
8  | Description:                                                            |
9  |    This function is for debug purpose  writes inmto temperaory file     |
10  |    or writes to log or output file                                      |
11  |                                                                         |
12  +=========================================================================*/
13 PROCEDURE debug_on(p_calling_function varchar2);
14 
15 PROCEDURE debug_off;
16 
17 PROCEDURE debug(p_debug_type Number,p_debug IN VARCHAR2);
18 
19 -- ==============================FND_LOG===================================--
20 /*=========================================================================+
21  | Procedure Name:                                                         |
22  |    debug_unexpected_msg                                               |
23  |                                                                         |
24  | Description:                                                            |
25  |    This procedure is for fnd logging and call this to log the seeded    |
26 
27  |       message IGI_LOGGING_UNEXP_ERROR when no message is there in the   |
28  |        Unexpected(WHEN OTHERS THEN) Exception section                   |
29  |                                                                         |
30  |   Created By: Harikiran                                                 |
31  +=========================================================================*/
32 
33 PROCEDURE debug_unexpected_msg(p_full_path IN VARCHAR2);
34 
35 /*=========================================================================+
36  | Procedure Name:                                                         |
37  |    debug_other_msg                                               |
38  |                                                                         |
39  | Description:                                                            |
40 
41  |    This procedure is for fnd logging and call this to log messages      |
42  |         in all the other cases                                          |
43  |                                                                         |
44  |   Created By: Harikiran                                                 |
45  +=========================================================================*/
46 
47 PROCEDURE debug_other_msg(p_level IN NUMBER,
48 			  p_full_path IN VARCHAR2,
49 			  p_remove_from_stack IN BOOLEAN);
50 
51 /*=========================================================================+
52  | Procedure Name:                                                         |
53  |    debug_other_string                                            |
54 
55  |                                                                         |
56  | Description:                                                            |
57  |    This procedure is for fnd logging and call this to log               |
58  |           Hard Coded String messages                                    |
59  |                                                                         |
60  | Created By: Harikiran                                                   |
61  |                                                                         |
62  +=========================================================================*/
63 
64 PROCEDURE debug_other_string(p_level IN NUMBER,
65 			     p_full_path IN VARCHAR2,
66 			     p_string IN VARCHAR2);
67 -- ==============================END==============================
68 
69 END;
70