‎2007 Feb 09 7:14 PM
what is the function of open_form , start_form , write_form ,end_form , close_form ?
‎2007 Feb 09 7:16 PM
Hi,
start_form is used when you have multiple scripts (forms) to be printed in one output. It can be called many times and closed by close_form.
open_form opens the form for printing (called only once) and should be closed with end_form.
For more information, please check this link.
http://help.sap.com/saphelp_nw04/helpdata/en/d6/0db8bb494511d182b70000e829fbfe/frameset.htm
Regards,
Ferry Lianto
‎2007 Feb 09 7:40 PM
Hi,
Open_form => It assign the form and printer, It should be first.
Start_form => It start Writing mode. You can use write_form in loop to write more than one lines befor End_form.
End_form => It end writing mode of current page and will require to start again through Start_form.
Close_form=> it end the Form. After this you can not start again for created file.
Regards,
Amit
reward all helpful replies.