DBA Data[Home] [Help]

PACKAGE: APPS.FND_DEBUG_UTIL

Source


1 package FND_DEBUG_UTIL AUTHID CURRENT_USER as
2 /* $Header: AFCPDBUS.pls 115.1 2004/01/27 00:30:37 vvengala ship $ */
3 
4   --
5   -- PUBLIC VARIABLES
6   --
7 
8 
9   -- Exceptions
10 
11   -- Exception Pragmas
12 
13   --
14   -- PUBLIC FUNCTIONS
15   --
16 
17   --
18   -- Name
19   --   get_trace_file_name
20   -- Purpose
21   --   get the trace file name
22   --   for the current database session
23   --   including the directory path ex ($ORACLE_HOME/log/udump/ora_8085.trc)
24   --
25   --   return string which will contain the trace file name
26   --
27   function get_trace_file_name return varchar2;
28 
29   --
30   -- Name
31   --   get_trace_file_node
32   -- Purpose
33   --   get the node m/c name on which trace file will be generated
34   --   for the current session
35   --
36   --   return string which will contain the node name
37   --
38   function get_trace_file_node return varchar2;
39 
40   --
41   -- Name:
42   --   STOP_PLSQL_PROFILER
43   -- Description:
44   --   This procedure will stop PLSQL profiler by calling FND_TRACE
45   --   and submit concurrent request to generate profiler output.
46   --   It updates the request_id in fnd_debug_rule_executions table as
47   --   log_request_id.
48 
49   procedure stop_plsql_profiler;
50 
51   --
52   -- Name : Enable_logging
53   -- Description:
54   --    Enable Logging with a given log level.
55   --
56   procedure enable_logging( log_level IN number);
57 
58  end FND_DEBUG_UTIL;