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