DBA Data[Home] [Help]

PACKAGE: APPS.WF_DIAGNOSTICS_APPS

Source


1 package WF_DIAGNOSTICS_APPS AUTHID CURRENT_USER as
2 /* $Header: WFDGAPPS.pls 120.1.12010000.4 2010/04/09 08:53:58 sstomar ship $ */
3 
4 --
5 -- Get_GSM_Setup_Info
6 --    Returns the basic information about GSM Setup.
7 -- 'S' stands for SUCCESS and 'E' stands for ERROR
8 function Get_GSM_Setup_Info(p_value out nocopy clob)
9 return varchar2;
10 
11 --
12 -- EcxTest
13 --    Returns information about well being of xml gateway engine
14 --
15 procedure EcxTest(outbound_ret_code out nocopy varchar2,
16                   outbound_errbuf   out nocopy varchar2,
17                   outbound_xmlfile  out nocopy varchar2,
18                   outbound_logfile  out nocopy varchar2,
19                   inbound_ret_code  out nocopy varchar2,
20                   inbound_errbuf    out nocopy varchar2,
21                   inbound_logfile   out nocopy varchar2);
22 
23 --
24 -- TRACE_UTIL
25 --   Enables/disables the SQL Trace at the specified level based
26 --   on the value of current Trace level of a component.
27 --   Constructs the TRACE FILE IDENTIFIER value as combination of
28 --   component id and time stamp.
29 --   Returns Trace file name, audsid and timestamp values
30 -- IN:
31 --   p_current_TraceLevel  -  Current Trace level value
32 --   p_comp_id              -  Component id
33 --
34 -- OUT:
35 --   p_trace_filename      -  The Trace file name
36 --   p_audsid              -  The audsid value
37 --   p_timestamp           -  The current timestamp
38 --
39 procedure TRACE_UTIL
40           (p_current_TraceLevel in number,
41 	   p_comp_id in number,
42 	   p_trace_filename out nocopy varchar2,
43 	   p_audsid out nocopy integer,
44 	   p_timestamp out nocopy varchar2
45 	  );
46 
47 end WF_DIAGNOSTICS_APPS;