Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Private procedure creation in Package

1567114Mar 16 2017 — edited Mar 17 2017

Hello,

I have a package declared as:

CREATE OR REPLACE PACKAGE TEST_PKG AS

     PROCEDURE check_cascade_pricing (x_return_status        OUT NOCOPY VARCHAR2

                                   ,p_chr_id            IN            NUMBER

                                   );

END;

CREATE OR REPLACE PACKAGE BODY TEST_PKG AS

     PROCEDURE check_cascade_pricing (x_return_status        OUT NOCOPY VARCHAR2

                                   ,p_chr_id            IN            NUMBER

                                   )

    IS

  

     BEGIN

          --some activities done and then commited

       

    END;

END;

I need to create another procedure which will be called after the check_cascade_pricing activity is done.But I don't want to create in Package Specification.

Is there any way to do so?

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 14 2017
Added on Mar 16 2017
17 comments
5,921 views