Pregunta

I'm trying to compile an oracle forms module but I'm getting the error.

identified 'HIL_MESSAGE' must be declared

I'm a newbie in Oracle Forms but I'd like to know how to compile it's depencies (I guess that this package is available at HeadStart) to solve this error. The call at my program is:

PROCEDURE LogError (p_errorrec IN hil_Message.message_rectype);
¿Fue útil?

Solución

Hil_message is a table in the Headstart schema. If there is a synonym in the database, you just need the privilege to select from the table. Ask the DBA to grant you the privilege:

grant select on Hil_message to [your user];
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top