Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: Call Package.Procedure from Other Procedure
Hello Thomas,
Thank you very very much. Your scrutiny gives a hint to solve my own problem.
Best Regards,
rayfil
"Thomas J. Kyte" wrote:
> In article <3938BCBA.8BD74B2D_at_forward-hk.com>,
> Rayfil Cheung <rayfil_at_forward-hk.com> wrote:
> > A procedure F is created in a package P. The F can't be called in a
> > procedure O which is not inside the package P. What should I pay
> > attention.
> > Thanks you very much.
> >
> > e.g.
> > create PACKAGE P as
> > PROCEDURE F( inp_para varchar);
> > end P;
> > /
> >
> > create PROCEDURE O is
> > v varchar;
> > begin
> > P.F( v );
> > -- error:- ORA-06550: line 19, column 4:
> > end;
> > /
> >
> >
>
>
>
>
>
>
>
>
![]() |
![]() |