create or replace package ciocolumn_storage as -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- File: ciocst.pkh -- Auth: RM3 Generated -- Date: 22nd Sep 1999, 06:03:34pm -- Cont: Element Type Interface (Specification) for -- product -- element type -- short name -- Note: Generated from database schema SCHEMA4012_D -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- Properties -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - type rm_values is record ( /* ELEMENT */ changed_by varchar2(30), /* COLUMN_STORAGE */ column_reference number(38) , /* COLUMN_STORAGE */ column_storage_for varchar2(3) , /* COLUMN_STORAGE */ column_storage_type varchar2(3) , /* COLUMN_STORAGE */ cqa_reference number(38) , /* ELEMENT */ created_by varchar2(30), /* ELEMENT */ date_changed date , /* ELEMENT */ date_created date , /* ACCESS_CONTROLLED_ELEMENT */ element_type_name varchar2(10), /* ELEMENT */ id number(38) , /* CIELEMENT */ irid number(38) , /* CIELEMENT */ ivid number(38) , /* ELEMENT */ number_of_times_modified number(38) , /* SECONDARY_ACCESS_ELEMENT */ pac_reference number(38) , /* SECONDARY_ACCESS_ELEMENT */ parent_ivid number(38) , /* COLUMN_STORAGE */ table_implementation_reference number(38) , /* ELEMENT */ types number(38) ); type rm_indicators is record ( changed_by boolean not null default false, column_reference boolean not null default false, column_storage_for boolean not null default false, column_storage_type boolean not null default false, cqa_reference boolean not null default false, created_by boolean not null default false, date_changed boolean not null default false, date_created boolean not null default false, element_type_name boolean not null default false, id boolean not null default false, irid boolean not null default false, ivid boolean not null default false, number_of_times_modified boolean not null default false, pac_reference boolean not null default false, parent_ivid boolean not null default false, table_implementation_reference boolean not null default false, types boolean not null default false ); type data is record ( v rm_values, i rm_indicators ); -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - procedure traverse_to_root(cid IN number, eid IN number, is_requery IN boolean); procedure check_traversals; procedure check_references; -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- Globals -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - is_installed boolean := false; end ciocolumn_storage; / REM End of ciocst.pkh