Hi Ravindra ,
I have created the output table with below structure.
CREATE INSERT ONLY COLUMN TABLE op_sales_books( title VARCHAR(50), price DECIMAL(5, 2), crcy VARCHAR(3));
I have created table type output parameter only to insert the results .
CREATE TYPE tt_sales_books AS TABLE ( title VARCHAR(50), price DECIMAL(5, 2), crcy VARCHAR(3));
But Still I am getting the same problem .
What will be the problem here . I have tried with row table instead of insert only column table . That too giving the same issue.
Thanks & Regards,
Ramana.