How to define a Type Record as Global? [message #379445] |
Tue, 06 January 2009 08:55 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
niladri
Messages: 14 Registered: January 2009 Location: USA
|
Junior Member |
|
|
How do I define a Type Record as Global, so that the rocord Type can be accessed from other Forms too?
Say I have,
Declare
Type DetailRecType IS Record (
pk_cde varchar2(18),
RPN_CDE varchar2(12),
Qty number(10,2)) ;
DetailRec DetailRecType;
Begin
----- -----
----- -----
End;
/
How to make this a Global and accessable from anywhere?
Also for for Type Table also. Please reply with code so that I can follow you.
thanks
niladri
|
|
|
|