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!

Internal error

527908Dec 5 2007 — edited Dec 5 2007
in forms i have written cursor as

declare

cursor c1 is select name from emp;
begin
for i in c1 loop
insert into table1 values(i.name);
end loop;

end;

---i m getting following popup error PDE-PER001 Internal error (deucx 9 8)

and in form builder it displayes

ORA-06552 PL/SQL : Compilation unit analysis terminated
ORA-06553 PLS-320 the declaration of the type of this expression is incomplete or melformed.......
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 2 2008
Added on Dec 5 2007
2 comments
576 views