Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

First block appeared is webutil

sgalaxyMay 8 2017 — edited May 10 2017

Hi,

I face a peculiar problem.

Although i have placed the subclassed webutil object group below the relative objects of

the form's, the first canvas/block which is appeared at runtime is the webutil.

Even when i use the following at the When-new-form-instance:

declare

curform VARCHAR2(40); 

blkname varchar2(50);

itmname varchar2(200);

begin

:system.message_level := 5;

curform := :System.Current_Form;

blkname := Get_Form_Property(curform,FIRST_BLOCK);

itmname := Get_block_property(blkname, first_item);

go_item(itmname);

end;

the result is the same(the first canvas is webutil, at runtime).

Only when i transform the above code as the following:

begin

go_item('blk.dir1');

end;

then i get the form's window first appeared....

Theimage below depicts the relative order of the objects in the form.

What should i do?

Thank you,

Sim

Note:

I use Oracle forms 10g,

Db 11.2.0.4

image.jpg

This post has been answered by Hendrik Schmidt on May 9 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 7 2017
Added on May 8 2017
18 comments
650 views