fixing stored procedures after upgrading from 9.2 to 10
create or replace TYPE V_RF_ARRAY ;
Then in the procedure declared with:
fh sa.v_rf_array := sa.v_rf_array('x');
which gets the following when compiled:
Error(34,4): PLS-00311: the declaration of "V_RF_ARRAY" is incomplete or malformed
Since it worked fine on 9i I am assuming there is a change required for 10 but nothing tells me what.