usage of Package in 10g Form [message #579841] |
Sat, 16 March 2013 00:43 |
skamransajjad
Messages: 42 Registered: December 2008 Location: Pakistan
|
Member |
|
|
Dear All;
I have made a package and define a variable in it as:
CREATE OR REPLACE package Scott.My_Pac as
CNT_UPD_USR Varchar2(20)
END My_Pac;
When I used the following in Toad it works fine but when I use the same in 10g form it gives the error "Cannot directly access remote package variable or cursor" Please guide.
Begin
Scott.My_Pac.CNT_UPD_USR := 'Ali';
DBMS_OUTPUT.PUT_LINE(Scott.My_Pac.CNT_UPD_USR);
End;
|
|
|
|
|
|
|
|
|