I am using the following pl/sql in a process to separate some text, which is then displayed and put into two text fields for saving the record. I cannot see anything wrong with the following however when i run the process on my APEX it says 'ORA-01403: no data found'. Is this the correct method of passing the values held in an array to the text fields on my APEX Form?
declare
v_array apex_application_global.vc_arr2;
begin
-- Convert delimited string to array
v_array := apex_util.string_to_table(:P1_OPERATION_JOB,'^');
:P1_ORDER := v_array(1);
:P1_LOCATION := v_array(2);
end;