View Single Post

   
  #3 (permalink)  
Old 04-08-2008, 10:07 AM
Mark C. Stock
 
Posts: n/a
Default Re: how to copy value of an in out parameter from calling procedure


<talk2paras@gmail.com> wrote in message
news:1143747371.075951.223880@i39g2000cwa.googlegr oups.com...
:I am calling a procedure(order) from a calling procedure (caller).
: Order uses an In out parament (Ser_no)
:
: Order is supposed to return a serial number.
:
: how can i copy the value returned by Order to a local variable of
: Caller.
:
: thanks.
:

this sounds like just typical assignment, ie, localvar :=
localvar_sent_as_in_out_variable

or, just pass the local var as the in/out variable -- that's what in/outs
are there for.

++ mcs


Reply With Quote