DBA Data[Home] [Help]

PACKAGE: APPS.JG_UTILITY_PKG

Source


1 PACKAGE JG_UTILITY_PKG AUTHID CURRENT_USER AS
2 /* $Header: jgzzutls.pls 115.2 2002/11/22 19:18:53 tdexter ship $ */
3 /*----------------------------------------------------------------------------*
4  | PUBLIC PROCEDURE                                                           |
5  |    debug             - Display text message if in debug mode               |
6  |    log		- Display text message  in the log file		      |
7  |    out 		- Display text message  in the out file		      |
8  |    enable_debug      - Enable run time debugging                           |
9  |    disable_debug     - Disable run time debugging                          |
10  |                                                                            |
11  | DESCRIPTION                                                                |
12  |    Generate standard debug information sending it to dbms_output so that   |
13  |    the client tool can log it for the user.                                |
14  |                                                                            |
15  | EXCEPTIONS RAISED                                                          |
16  |                                                                            |
17  | KNOWN BUGS                                                                 |
18  |                                                                            |
19  | NOTES                                                                      |
20  |                                                                            |
21  | HISTORY                                                                    |
22  |                                                                            |
23  *----------------------------------------------------------------------------*/
24   debug_flag	BOOLEAN		:= FALSE;
25 
26   procedure debug( line in varchar2 ) ;
27 
28   procedure log ( line in varchar2 ) ;
29 
30   procedure out ( line in varchar2 ) ;
31 
32   procedure enable_debug;
33 
34   procedure disable_debug;
35 
36 END JG_UTILITY_PKG;