Question

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);
Was it helpful?

Solution

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];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top