Hi!
Trying around a bit the new forms builder 12.2.1 on Windows against a 12.1.0.1.0 Database, I stumbled over the following issue when creating and compiling a package body:
package declaration:
package globals is cursor get_emp isselect last_namefrom hr.employeeswhere employee_id = 205; emp get_emp%rowtype;end;
and the package body:
package body globals isbeginopen get_emp;fetch get_emp into emp;close get_emp;end;
When compiling the body, the internal error 801 is raised: [unexpected fragile external reference]
Trying the same with a cursor like
select user from dual
is compiled successfully.
Any ideas?
Thanks in advance and regards