Bug in code completition with ROWTYPE variable

When I declare a cursor:

c is select ...;

then an variable:

zm c%ROWTYPE;

When I am trying to get list of fields, I type 'zm.' and press the button that calls 'Code Assistant'. PL/SQL Developer doesn't react.

Version 6.0.2.880 (MBCS)
 
I tried this:
Code:
create or replace procedure code_assistant_test is
  cursor c is select dummy, sysdate as now from dual;
  zm c%rowtype;
begin
  zm.
end;
After typing zm. I get a list of the fields of this query. Can you try this? If it works okay, can you send me the complete source code where it fails?
 
Back
Top