18 lines
620 B
Plaintext
18 lines
620 B
Plaintext
CREATE OR REPLACE PACKAGE efno_disclaimer IS
|
|
/****************** VERSION 1 ************************
|
|
* Author : PABARIS
|
|
* Created : 23/05/2008 12:16:59
|
|
* Purpose : Package to Display Disclaimer
|
|
******************************************************/
|
|
--
|
|
-- Public variable declarations
|
|
--
|
|
g_header CONSTANT VARCHAR2(160) := '$Header: efno_disclaimer.pck 23/05/08 Pabaris $';
|
|
g_revision CONSTANT VARCHAR2(160) := '$Revision: 1 $';
|
|
g_title CONSTANT VARCHAR2(50) := caco_utilities.get_module_text(p_text_number => 3861);
|
|
|
|
PROCEDURE display;
|
|
|
|
END efno_disclaimer;
|
|
/
|