DBA Data[Home] [Help]

PACKAGE: APPS.FUN_NET_UTIL

Source


1 PACKAGE FUN_NET_UTIL AUTHID CURRENT_USER AS
2 /* $Header: funntuts.pls 120.1 2005/12/23 14:09:56 asrivats noship $ */
3 
4     -- ============================ FND_LOG Start ===========================--
5     /*=========================================================================+
6      | Procedure Name:                                                         |
7      |    Log_Unexpected_Msg                                                 |
8      |                                                                         |
9      | Description:                                                            |
10      |    This procedure is for fnd logging and call this to log the seeded    |
11      |       message FUN_LOGGING_UNEXP_ERROR when no message is there in the   |
12      |        Unexpected(WHEN OTHERS THEN) Exception section                   |
13      |                                                                         |
14      | History                                                                 |
15      |
16      +=========================================================================*/
17 
18     PROCEDURE Log_Unexpected_Msg(p_full_path IN VARCHAR2);
19 
20     /*=========================================================================+
21      | Procedure Name:                                                         |
22      |    Log_Msg                                                      |
23      |                                                                         |
24      | Description:                                                            |
25      |    This procedure is for fnd logging and call this to log messages      |
26      |         in all the other cases                                          |
27      |                                                                         |
28      | History                                                                 |
29      |
30      +=========================================================================*/
31 
32     PROCEDURE Log_Msg(p_level               IN NUMBER,
33 			             p_full_path            IN VARCHAR2,
34 			             p_remove_from_stack    IN BOOLEAN);
35 
36     /*=========================================================================+
37      | Procedure Name:                                                         |
38      |    Log_String                                                   |
39      |                                                                         |
40      | Description:                                                            |
41      |    This procedure is for fnd logging and call this to log               |
42      |           Hard Coded String messages                                    |
43      |                                                                         |
44      | History                                                                 |
45      |
46      +=========================================================================*/
47 
48     PROCEDURE Log_String(p_level      IN NUMBER,
49                              p_full_path  IN VARCHAR2,
50                              p_string     IN VARCHAR2);
51 
52     -- ========================= FND_LOG End ==============================--
53 
54     FUNCTION Round_Currency(
55 			P_Amount         IN number
56                        ,P_Currency_Code  IN varchar2)
57     RETURN NUMBER;
58 END FUN_NET_UTIL; -- Package spec