Bug, hyperlinking does not work in first line of triggers with procedures

Claus Pedersen

Member³
I have a trigger calling two or more procedures.

Hyperlinking on the first line does not work, whereas hyperlinking for the rest of the lines works correctly.

When the trigger only contains one procedure, hyperlinking does not work at all.
 

Code:
CREATE OR REPLACE TRIGGER emp_test
AFTER UPDATE ON emp
BEGIN
  myPackage.doSomething;
  myPackage.doAnything;
END;
Hyperlinking on the second line (and subsequent lines) works, whereas the first line does not work ...
 
Back
Top