How to access variable declared in a package from the Forms [message #80335] |
Wed, 11 September 2002 07:40 |
Vinod
Messages: 76 Registered: April 1999
|
Member |
|
|
I have a package as a program unit in forms as follows
PACKAGE GET_PA IS
P_REC PROCUREMENT_ACTION%ROWTYPE := null;
END;
From the when new form instance trigger i wrote
GET_PA.P_REC;
It is giving me an error message which says
'P_REC' is not a procedure or is undefined
please can anyone guide me how to access variable declared in a package from the Forms
Thanks
Vinod
|
|
|
|
|