create or replace package &Name is -- Author : $OSUSER -- Created : $DATE $TIME -- Purpose : &Purpose -- Public type declarations [#]type is ; -- Public constant declarations constant := ; -- Public variable declarations ; -- Public function and procedure declarations function ( ) return ; end &Name; / create or replace package body &Name is -- Private type declarations type is ; -- Private constant declarations constant := ; -- Private variable declarations ; -- Function and procedure implementations function ( ) return is ; begin ; return(); end; begin -- Initialization ; end &Name; /