rem rem $Header: L:\\\\model\\repman40\\api\\RCS\\ciuetu.ops 1.1 1998/05/28 16:57:56 mfrobins Exp $ rem rem Copyright (c) Oracle Corporation 1991. All Rights Reserved. rem NAME rem ciuetu.ops - Operation Package Specification rem DESCRIPTION rem This package is responsible for managing UE text type rem usage extensions to the CASE Repository. rem PUBLIC FUNCTION(S) rem 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_usage IS -- -- Operations -- procedure ins(text_type IN varchar2, etid IN number, seq IN number); procedure upd(text_type IN varchar2, etid IN number, seq IN number); procedure del(text_type IN varchar2, etid IN number); procedure publish(text_type IN varchar2, etid IN number); procedure unpublish(text_type IN varchar2, etid IN number); -- -- Constant globals -- uetu_fac constant varchar2(3) := 'CDA'; -- -- Exceptions -- uetu_unknown_tt exception; uetu_unknown_tt_code constant number := 820; uetu_unknown_et exception; uetu_unknown_et_code constant number := 821; uetu_exists exception; uetu_exists_code constant number := 822; uetu_unknown_tu exception; uetu_unknown_tu_code constant number := 823; uetu_not_user_usage exception; uetu_not_user_usage_code constant number := 824; uetu_is_published exception; uetu_is_published_code constant number := 825; uetu_tt_not_published exception; uetu_tt_not_published_code constant number := 826; uetu_is_not_published exception; uetu_is_not_published_code constant number := 827; uetu_data_exists exception; uetu_data_exists_code constant number := 828; end cioue_text_usage; /