‎2007 Sep 12 5:45 AM
PERFORM select_frontend_file CHANGING p_file.
if u declare a function module like.. above , what is the meaning?
‎2007 Sep 12 5:50 AM
Hi,
Rao, u are not calling or declaring a function module here.u are calling a subroutine here using PERFORM. u will soon see code in between .
Form select_frontend_file .
.........
.........
ENDFORM.
Rgds,
Prajith
‎2007 Sep 12 5:46 AM
This is not function module.
Your calling subrountine <b>select_frontend_file</b> passing P_file
‎2007 Sep 12 5:48 AM
You can write a function module inside this using the paramter p_file.
But this is not a function module.
‎2007 Sep 12 5:49 AM
hi
This is not FM.
It is calling Subroutine named <b>Select_frontend_file </b>
and passing the Parameter <b>p_file</b> thru Pass by Ref.
<b>reward if Helpful.</b>
‎2007 Sep 12 5:50 AM
Hi,
Rao, u are not calling or declaring a function module here.u are calling a subroutine here using PERFORM. u will soon see code in between .
Form select_frontend_file .
.........
.........
ENDFORM.
Rgds,
Prajith
‎2007 Sep 12 5:51 AM
Hello,
Just to add to the above comments
<b>Perform select_frontend_file CHANGING p_file.</b>
will have a
<b>form select_frontend_file CHANGING X_file type XXXX.
endform..</b>
the purpose of this perform is to do some operation on data in P_file
so in the form select_frontend_file we will be performing some validations or operations on the data passed through p_file to x_file and changing it's contents
in the form "select_frontend_file" the x_file should be recieved as the same type shown as XXXX of p_file
Reward if helpful
regards
Byju