35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
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;
|
|
/
|