DBA Data[Home] [Help]

PACKAGE: APPS.WSH_DEBUG_INTERFACE

Source


1 PACKAGE WSH_DEBUG_INTERFACE AUTHID CURRENT_USER as
2 /* $Header: WSHDBGIS.pls 115.3 2002/11/12 22:11:39 nparikh noship $ */
3 
4 g_file VARCHAR2(32767);
5 g_file_handle utl_file.file_type;
6 g_debug BOOLEAN := NULL;
7 
8 /*===========================================================================
9 
10 PROCEDURE NAME:	start_debugger
11 
12 DESCRIPTION	This procedure is used to turn on the Shipping Debugger by other
13 	        products
14 
15 		Both parameters are mandatory.
16 
17 ============================================================================*/
18 PROCEDURE start_debugger
19 	    (
20 	      p_dir_name IN VARCHAR2,
21 	      p_file_name IN VARCHAR2,
22 	      p_file_handle IN utl_file.file_type
23 	    );
24 
25 
26 /*===========================================================================
27 
28 PROCEDURE NAME:	stop_debugger
29 
30 DESCRIPTION	This procedure is used to turn off the Shipping Debugger by other
31 	        products
32 
33 ============================================================================*/
34 PROCEDURE stop_debugger;
35 
36 END WSH_DEBUG_INTERFACE;