I have a type kanal declared as an object
>CREATE OR REPLACE TYPE kanal AS OBJECT
>nummer NUMBER(7), wert VARCHAR2(200), >attribut NUMBER(1))
and a collection in a package
>TYPE kanaele IS TABLE OF kanal;
which is used as a parameter for a function.
The documentation says, that only tables...