2008 Apr 10 3:16 PM
Hi,
I have a sub routine to which parameters are passed as input.How to get the output of that sub routine in the actual program?
I meant to ask do we have export parameters as present for function modules in abap programs.
Please give me some examples programs to use the same.
Regards,
Pra
Hi,
I have a sub routine to which parameters are passed as input.How to get the output of that sub routine in the actual program?
I meant to ask do we have export parameters as present for function modules in abap programs.
Please give me some examples programs to use the same.
Regards,
Pra
2008 Apr 10 3:18 PM
Hi,
Are you using this subroutin in the SAP Script?
thanks
nayan
2008 Apr 10 3:21 PM
Hi,
Check the below code
PERFORM get_materialbatch CHANGING i_mchb.
FORM get_materialbatch CHANGING fp_i_mchb TYPE ty_tab_mchb.
The values that are changed will get updated in the i_mchb..
<REMOVED BY MODERATOR>
Edited by: Alvaro Tejada Galindo on Apr 10, 2008 3:13 PM
2008 Apr 10 3:22 PM
2008 Apr 10 3:22 PM
No , I am not using any sap scripts.I am just using abap code.
Regards,
Pra
2008 Apr 10 3:25 PM
Please can i have some what detail code instead of single line in using returning and changing keywords
Regards,
Pra
2008 Apr 11 6:52 PM