‎2006 Nov 08 5:24 AM
i want to perform a test sequence in which, what is the out put of the first funtion module i want to pass them to the second function module .
i want to know that whether i can do that or not if yes how?.
thanks in advance.
‎2006 Nov 08 5:26 AM
In program u can put logic.
Call FM
export
import = itab.
if sy-sybrc eq 0.
call FM
export = itab.
emport.
endif.
regards
Prabhu
‎2006 Nov 08 2:31 PM
Hi u can do that by doing like this.
Call 'function1'
exporting
var1 = var1
improting
var2 = var2
.
if var2 is not initial.
Call 'function2'
exporting
var3 = var2
importing
var4 = var4
endif.
Mark points if helpful.
Regs
Manas Ranjan Panda
Message was edited by: MANAS PANDA
‎2006 Nov 08 2:33 PM
Yes hyou can do. You have to pass the return value of the FM as the Input for the Second FM.
Bye
Murthy.