DBA Data[Home] [Help]

PACKAGE: APPS.INV_DEBUG_INTERFACE

Source


1 PACKAGE INV_DEBUG_INTERFACE AUTHID CURRENT_USER as
2 /* $Header: INVDBGIS.pls 115.2 2002/11/23 00:17:27 mdevassy noship $ */
3 g_file_handle utl_file.file_type;
4 
5 /*===========================================================================
6 
7 PROCEDURE NAME: start_inv_debugger
8 
9 DESCRIPTION    This procedure is used to turn on the Inventory Debugger by other
10                products
11 
12                 All parameters are mandatory.
13 
14 ============================================================================*/
15 PROCEDURE start_inv_debugger
16             (
17               p_dir_name IN VARCHAR2,
18               p_file_name IN VARCHAR2,
19               p_file_handle IN utl_file.file_type
20             );
21 
22 
23 /*===========================================================================
24 
25 PROCEDURE NAME: stop_inv_debugger
26 
27 DESCRIPTION   This procedure is used to turn off the Inventory Debugger by other
28               products
29 
30 ============================================================================*/
31 PROCEDURE stop_inv_debugger;
32 
33 END INV_DEBUG_INTERFACE;