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!

How to find which PL/SQL object is calling

ramya_162Nov 25 2015 — edited Nov 26 2015

Hi All,

If I modify the data from Oracle form.

this is inserting data into a table TMSSRT.

There is only one procedure(P_INS_TMSSRT) which is inserting data into the table TMSSRT.

The procedure P_INS_TMSSRT is calling inĀ  3 packages.

I want to know when I modify the data from the form

how data is being inserting in the the table TMSSRT.

Is that form directly calling this P_INS_TMSSRT (or) calling through any one of the 3 packages.

I queried v$sql from there I am able to find only the text INSERT INTO TMSSRT.

I am not able to find the text for procedure P_INS_TMSSRT (or) any of the 3 packages.

I though its a direct insert statement and dropped the procedure P_INS_TMSSRT

and tried modifying the data from the form and got the error program unit not found.

Then I confirmed data is inserting through the procedure P_INS_TMSSRT.

Please help me to find how the data is inserting in the table TMSSRT through the form

by the procedure P_INS_TMSSRT.

I want to know the program unit being called by the form when I modify the data through the form.

Thanks in advance.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 24 2015
Added on Nov 25 2015
10 comments
2,103 views