git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@50874 248e525c-4dfb-0310-94bc-949c084e9493

This commit is contained in:
andrew.gilmore
2012-03-19 11:57:19 +00:00
parent 2a0f4900c3
commit 0e9ca75d77
1587 changed files with 500863 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
CREATE OR REPLACE PACKAGE efno_xml_interface IS
/**
-- Interface package for the XML interface to the Nominations module
-- #version $Revision: $
-- #author $Author: PABARIS $
--
*/
g_package_name CONSTANT VARCHAR2(30) := 'efno_xml_interface';
g_title CONSTANT VARCHAR2(160) := caco_utilities.get_module_text(1080);
g_header CONSTANT VARCHAR2(160) := '$Author$ 13/01/2010$';
g_revision CONSTANT VARCHAR2(160) := '$Revision$';
/*
VSS Information not documented by PL/SQL Developer
$Header: $
13/01/2010: $ Date and time of last checkin
$Modtime: $ Date and time of last modification
$History: $
*/
--Global variables to collect the values to be passed in to this interface processing module
g_name_array owa.vc_arr;
g_value_array amfr_message_handler.clob_arr;
g_sere_id service_reqs.sere_id%TYPE;
/*
--
Procedure to start processing the XML message
--
*/
PROCEDURE process_xml_message;
FUNCTION about RETURN VARCHAR2;
--
END efno_xml_interface;
/