Is it possible to use AutoReplace with multine items?

Hi,

I wonder if it is possible to use AutoReplace feature with items including more than one line?

for example,

whichdept = select *
from scott.emp
where deptno = &p_deptno;

Thanks.
 
This is only possible by creating a template, and referencing the template in the replacement text. For example:

whichdept=sql\whichdept.tpl
 
Back
Top