Hi Ravindra,
Thanks for your reply.
In a procedure i have 5 IN parameters which are coming from UI.
1)query_name 2) view name 3) Rows 4) Descriptions 5) Xaxis value 6) Yaxis_value
Need to insert these values into tables.
1) if query_name is already exists in table SAY A then we don't need to insert any value in table A else we will insert values in table A.
2) Need to insert values in another table B with values as id,Xaxis value by selecting id from table A for query name given in input parameter.If id and Xaxis value are already present in table B then we don't need to insert any values.
3) Need to insert values in another table C with values as id,Yaxis value by selecting id from table A for query name given in input parameter. If id and Yaxis value are already present in table C then we don't need to insert any values.
All these are implemented in a procedure and we are simply trying to call this procedure without having any out parameter. We need to call this procedure in calculation view as in O data service layer..they can't call procedure directly without having any calculation view.
Please help.
Regards,
Amit