DBA Data[Home] [Help]

PACKAGE: APPS.ECX_DIAGNOSTICS_TEST

Source


1 package ecx_diagnostics_test AUTHID CURRENT_USER as
2 /* $Header: ECXDIAGS.pls 120.0.12020000.4 2013/01/09 10:10:54 dhragarw noship $ */
3 
4 
5 /*
6 This procedure is being used for 'Procedure Validation Test' inside 'XML Gateway
7 Health Check' diagnostic. This procedure retrieves the details of those procedures/functions
8 which are referenced in uploaded XML Gateway maps but do not exist in database
9 */
10 
11 procedure get_procedure_status(
12     cur out nocopy sys_refcursor);
13 
14 
15 /*
16 This procedure is being used for 'XSL Transform Test' inside 'XML Gateway Health Check'
17 diagnostic. This procedure transforms a sample xml with special character against a
18 sample xsl using database XDK and checks whether the XML is transformed as expected
19 */
20 
21 procedure xsl_transform_test(
22     p_result out nocopy varchar2,
23     p_xdkversion out nocopy varchar2);
24 
25 
26 /*
27 This function is used for 'Message Monitor Test' to verify that whether a particular message
28 exist in ecx outbound queue or not
29 */
30 
31 function check_msg_outqueue(
32     p_msgid in varchar2)
33     return varchar2;
34 
35 end ecx_diagnostics_test;