I have a table which contains the name of my stored procedures.
In the form during runtime i need to call one of stored procedure and i need to pass the values for the parameters.
(so dynamically i am identifying the name of the procedure)
select procedure_name into v1 from table_name where some condition;
v1(p1,p2); -- calling the procedure
Now i am getting invalid procedure during compilation.
Bookmarks