Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Name of procedure that called another one

Name of procedure that called another one

From: Vucko <mvucic_at_barok.foi.hr>
Date: 17 Aug 2001 19:30:31 GMT
Message-ID: <9ljrcn$bdn$1@bagan.srce.hr>

        10 different procedures call ProcedureX. Is there any way to find out which procedure (with its parameters) called ProcedureX?

	ProcedureN(par1, ..., parm) (N=1..10)
	  begin
	    blah;
	    ProcedureX(par1, ..., parn);
	  end;

	ProcedureX(par1, ..., parn);
	  begin
	    blah;
	    Here I want to know which procedure called this one. How to find
out that?
	  end;
	
	Tnx.	
Received on Fri Aug 17 2001 - 14:30:31 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US