Hi.
I have found some issue when I use plugin procedure IDE_GetWindowObject . As example
Suppose I have two procedures:
create or replace procedure "Test" is
begin
null;
end "Test";
and
create or replace procedure Test is
begin
null;
end Test;
Call
IDE_GetWindowObject(
pObjectType, pObjectOwner, pObjectName, pSubObject
);
returns pObjectName = 'Test' for both procedures. In the plugin code, I cannot determine exactly what procedure my window shows now.
Is it bug?