DBA Data[Home] [Help]

PACKAGE: APPS.FND_DEBUG_REP_UTIL

Source


1 package FND_DEBUG_REP_UTIL AUTHID CURRENT_USER as
2 /* $Header: AFCPRTUS.pls 115.0 2004/01/27 00:23:46 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   --   generate trace file name for use in os level.
23   --
24   --   return string which will contain the trace file name
25   --
26   function get_trace_file_name return varchar2;
27 
28   --
29   -- Name
30   --   get_trace_file_node
31   -- Purpose
32   --   get the node m/c name on which trace file will be generated
33   --   for the current session
34   --
35   --   return string which will contain the node name
36   --
37   function get_trace_file_node return varchar2;
38 
39   --
40   -- Name
41   --  get_program_comp
42   -- Description
43   --  returns Concurrent Program component name for a given Execution Method
44   --  code.
45 
46   function get_program_comp(emethod  varchar2) return varchar2;
47 
48  end FND_DEBUG_REP_UTIL;