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!

FRM:41045 Cannot find item:Invalid Id

user8304715Jul 16 2014 — edited Jul 17 2014

hi...

i am forms6i user...i tried to controlled my form item (ENABLED) using PL/SQL inside the WHEN_NEW_FORM_INSTANCE trigger.  However..i manage to get this frm:41045 error.

Below is my simple script:

declare

    it_id item;

   

begin

    it_id :=find_item(:block3.text1);

   

/*    if id_null(it_id) then

        message('Item not found..');

        raise form_trigger_failure;

    else */

   

        set_item_property(it_id,ENABLED,property_false);

       

--    end if;

end;

Hopefully there is an expert in this forum can guide me to solve this problem....

TQ

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 14 2014
Added on Jul 16 2014
3 comments
2,662 views