Point notation in Types doesn't work in 6.0.2.880, but works in 5.1.6

Context-sensitive help for TYPEs (attributs and methods hint after typing '.') doesn't work in Programm Window for Type Bodys and Test Window.
in package body its work properly.

In Version 5.1.6 that work properly.

Regards
 

Code:
create or replace type TYPE_TYPE as object
(
  -- Author  : TERLETSKYY
  -- Created : 27.09.2004 12:51:25
  -- Purpose : Test Type

  -- Attributes
  att1 NUMBER,

  -- Konstructoren
  CONSTRUCTOR FUNCTION TYPE_TYPE   RETURN SELF AS RESULT,

  -- Member functions and procedures
  member procedure DBMS_OUTPUT
)
/
create or replace type body TYPE_TYPE is

  -- Member procedures and functions
  CONSTRUCTOR FUNCTION TYPE_TYPE   RETURN SELF AS RESULT is
  begin
    att1 := 0;
    RETURN;
  end;

  -- Member procedures and functions
  member procedure DBMS_OUTPUT is
  begin
    SYS.DBMS_OUTPUT.put_line(att1);
  end;

end;
/
See TODOs

Code:
create or replace type TYPE_TEST as object
(
  -- Author  : TERLETSKYY
  -- Created : 27.09.2004 12:44:18
  -- Purpose :

  -- Attributes
  periode TYPE_TYPE,

  -- Member functions and procedures
  member procedure PR_TEST
)
/
create or replace type body TYPE_TEST is

  -- Member procedures and functions
  member procedure PR_TEST is
  begin
    periode. /*
             TODO: owner="Terletskyy" created="27.09.2004"
             text="Try type dot '.' hier"
             */;
    SELF.    /*
             TODO: owner="Terletskyy" created="27.09.2004"
             text="Try type dot '.' hier"
             */;
  end;

end;
/
See TODOs

Code:
PL/SQL Developer Test script 3.0
11
-- Created on 25.08.2004 by TERLETSKYY
declare
  -- Local variables here
  i type_type := type_type();
begin
  -- Test statements here
  i /*
    TODO: owner="Terletskyy" created="25.08.2004"
    text="try type dot '.' hier"
    */
end;
0
0
in Package that work properly, see TODO

Code:
create or replace package PA_TEST is

  -- Author  : TERLETSKYY
  -- Created : 27.09.2004 13:03:12
  -- Purpose :

  -- Public function and procedure declarations
  PROCEDURE PR_TEST;

end PA_TEST;
/
create or replace package body PA_TEST is

  -- Function and procedure implementations
 PROCEDURE PR_TEST IS
   t TYPE_TYPE;
 BEGIN
   t./*
     TODO: owner="Terletskyy" created="27.09.2004"
     text="hier work properly"
     */
 end;

end PA_TEST;
/
 
Hi,

in Version 6.0.3.893 in Type Body that works now only for own types.

In Trigger, PL/SQL Test Window, and for types body another owner it still not working.

That feature is very important for us and we are waiting for fix that bug at beta test version 6 (in Version 5.1.6 that work properly).

Plaese fix that soon as possible.

Regards
 
Back
Top