‎2007 Feb 08 8:50 PM
Hello,
Whats the purpose of start form in scripts.
We can get everything done using
ope form, write forma nd close form.
SO whats the use ot start form and ebdform.
Any advice,
Also any documentation on scripts and smartforms.
Madhu.
‎2007 Feb 08 9:00 PM
Hi Madhu,
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
http://help.sap.com/saphelp_46c/helpdata/en/d6/0dc169494511d182b70000e829fbfe/frameset.htm
http://help.sap.com/saphelp_46c/helpdata/en/4b/83fb42df8f11d3969700a0c930660b/frameset.htm
Regards,
Ferry Lianto
‎2007 Feb 08 9:00 PM
Hi Madhu,
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
http://help.sap.com/saphelp_46c/helpdata/en/d6/0dc169494511d182b70000e829fbfe/frameset.htm
http://help.sap.com/saphelp_46c/helpdata/en/4b/83fb42df8f11d3969700a0c930660b/frameset.htm
Regards,
Ferry Lianto
‎2007 Feb 08 9:12 PM
Hi,
Between the Open_form and close_form, you can call any number of sapscript forms, but separate start_form's and end_form's.
Open_form normally sets the print parameters for the script, so to avoid settingthe print parameters often before the call of each form, it is sufficient that you set it once and call mulitple forms using start & End form's in your program.
http://www.onestopsap.com/abap/
http://www.sappressbooks.com/downloads/h955_preview.pdf
Regards
Subramanian
‎2007 Feb 08 9:17 PM