DBA Data[Home] [Help]

PACKAGE: APPS.PSA_UTILS

Source


1 PACKAGE PSA_UTILS AUTHID CURRENT_USER as
2 /* $Header: PSAUTILS.pls 115.4 2004/02/16 14:06:43 rgopalan ship $ */
3 
4 g_session_seq_id    number;
5 g_msg_num           number;
6 
7 -- ==============================FND_LOG===================================--
8 /*=========================================================================+
9  | Procedure Name:                                                         |
10  |    debug_unexpected_msg                                                 |
11  |                                                                         |
12  | Description:                                                            |
13  |    This procedure is for fnd logging and call this to log the seeded    |
14  |       message IGI_LOGGING_UNEXP_ERROR when no message is there in the   |
15  |        Unexpected(WHEN OTHERS THEN) Exception section                   |
16  |                                                                         |
17  | History                                                                 |
18  |  16-JAN-04  Harikiran       Created                                     |
19  +=========================================================================*/
20 
21 PROCEDURE debug_unexpected_msg(p_full_path IN VARCHAR2);
22 
23 /*=========================================================================+
24  | Procedure Name:                                                         |
25  |    debug_other_msg                                                      |
26  |                                                                         |
27  | Description:                                                            |
28  |    This procedure is for fnd logging and call this to log messages      |
29  |         in all the other cases                                          |
30  |                                                                         |
31  | History                                                                 |
32  |  16-JAN-04  Harikiran       Created                                     |
33  +=========================================================================*/
34 
35 PROCEDURE debug_other_msg(p_level IN NUMBER,
36 			      p_full_path IN VARCHAR2,
37 			      p_remove_from_stack IN BOOLEAN);
38 
39 /*=========================================================================+
40  | Procedure Name:                                                         |
41  |    debug_other_string                                                   |
42  |                                                                         |
43  | Description:                                                            |
44  |    This procedure is for fnd logging and call this to log               |
45  |           Hard Coded String messages                                    |
46  |                                                                         |
47  | History                                                                 |
48  |  16-JAN-04  Harikiran       Created                                     |
49  +=========================================================================*/
50 
51 PROCEDURE debug_other_string(p_level IN NUMBER,
52           			     p_full_path IN VARCHAR2,
53                                      p_string IN VARCHAR2);
54 
55 -- ==============================END==============================--
56 PROCEDURE debug_mesg (p_msg IN   VARCHAR2  );
57 END ;