‎2007 Oct 12 6:42 AM
Hi,
Please check this code.
What it does and if nothing then y is this used in standard SAP codes ?
FORM INIT_SOS-NATIO USING RC.
ENDFORM.
The thing that bothers me is that it does not have anything in its body but still its being called that too many no. of times...
PLz do reply...
Regards,
Binay...
Message was edited by:
binay shankar mohanty
‎2007 Oct 12 6:58 AM
hi
good
through nothing is there in the form statement but it will work as per the changing value of the RC,so as many time the RC value change it ll call this form statement but it wont give you any output.
thanks
mrutyun^
‎2007 Oct 12 6:46 AM
hi,
The code you have given is the way how we write subroutines in abap.of course it does nothing here because to make it work u have to write code in between <b>form</b> and <b>endform</b>. and u need to call it using perform keyword in ur program.
Rgds,
Prajith
‎2007 Oct 12 6:50 AM
Hi,
this code is a subroutine with the format
form using/changing
endform.
here using is the pass by reference parameter i.e. formal parameter
regards
Gururaj
‎2007 Oct 12 6:58 AM
hi
good
through nothing is there in the form statement but it will work as per the changing value of the RC,so as many time the RC value change it ll call this form statement but it wont give you any output.
thanks
mrutyun^