rem rem $Header: L:\\\\model\\repman40\\api\\RCS\\ciuett.ops 1.1 1998/05/28 16:57:45 mfrobins Exp $ rem rem Copyright (c) Oracle Corporation 1991. All Rights Reserved. rem NAME rem ciuett.ops - Operation Package Specification rem DESCRIPTION rem This package is responsible for managing UE text type rem extensions to the CASE Repository. rem PUBLIC FUNCTION(S) rem ins - INSert a new extended text type rem upd - UPDate an existing text type rem del - DELete an existing text type rem publish - PUBLISH an extended text type rem NOTES rem MODIFIED (MM/DD/YY) Rem aheath 02/14/95 - Creation rem bferris 12/19/94 - Creation CREATE OR REPLACE PACKAGE cioue_text_type IS -- -- Operations -- procedure ins(text_type IN varchar2, pdesc IN varchar2); procedure upd(text_type IN varchar2, pdesc IN varchar2); procedure del(text_type IN varchar2); procedure publish(text_type IN varchar2); procedure unpublish(text_type IN varchar2); procedure remap(old_text_type IN varchar2, new_text_type IN varchar2); -- -- Constant globals -- uett_fac constant varchar2(3) := 'CDA'; -- -- Exceptions -- uett_invalid_type exception; uett_invalid_type_code constant number := 810; uett_exists exception; uett_exists_code constant number := 811; uett_unknown_type exception; uett_unknown_type_code constant number := 812; uett_not_user_type exception; uett_not_user_type_code constant number := 813; uett_is_published exception; uett_is_published_code constant number := 814; uett_is_not_published exception; uett_is_not_published_code constant number := 815; uett_data_exists exception; uett_data_exists_code constant number := 816; end cioue_text_type; /