special copy of variable/parameter values while debugging

namaste

Member
Is there a way to perform a special copy that will copy a section of code along with the values from variables and parameters from the highlighted section? If not, could this be added to product enhancement requests?

ex. in the procedure below, if I'm debugging, and I highlight the select statement, the "special copy" would replace pId with the value of pId.

Procedure test (pId in number)
is
begin
for c in (select * from table where pk = pId)
loop
do stuff;
end loop;
end;
 
Back
Top