DBA Data[Home] [Help]

PACKAGE: APPS.WF_DIAGNOSTICS_APPS

Source


1 package WF_DIAGNOSTICS_APPS as
2 /* $Header: WFDGAPPS.pls 120.1 2005/07/02 03:13:12 appldev noship $ */
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 end WF_DIAGNOSTICS_APPS;