I am having problem in using CAST and TABLE function on Collections.
Following is the synopsis of my package and its body.
I am using ORACLE 9.0.1.0.1.
/* PACKAGE LEVEL DECLARARIONS */
TYPE t_docseq_nbr IS TABLE OF t_document_uhh.doc_vpk_docseq_nbr%TYPE INDEX BY BINARY_INTEGER;
I made a mistake last time in explaining my problem.
I am bulk collecting the data and then I use FORALL statement for updation. Instead of looping v_docseq_nbr.count , I want to use it the following way to get the count and then loop on that variable.
But it is giving error of INVALID DATATYPE.
/* PACKAGE LEVEL DECLARARIONS */
TYPE t_docseq_nbr IS TABLE OF t_document_uhh.doc_vpk_docseq_nbr%TYPE INDEX BY BINARY_INTEGER;
Bookmarks