‎2006 Jul 26 6:26 PM
hi,
Can anyone tell me the difference between start_form and open_form used in sap scripts.
When i should each use of these,i mean under what circumstances.
Thanks in advance
‎2006 Jul 26 6:37 PM
‎2006 Jul 26 6:35 PM
hi swathi,
open_form : it opens the form for printing ( called only once)
and should be closed with end_form.
start_form : is used when u have multiple scripts(forms) to be printed in one output.( can be called many times)
and closed by close_form
http://help.sap.com/saphelp_nw04/helpdata/en/d6/0db8bb494511d182b70000e829fbfe/frameset.htm
hope this helps,
do reward if it helps,
priya.
‎2006 Jul 26 6:35 PM
check this. it should help.
http://help.sap.com/saphelp_46c/helpdata/en/d6/0dc169494511d182b70000e829fbfe/frameset.htm
Raj
Reward points if helpful
‎2006 Jul 26 6:37 PM
‎2006 Jul 26 6:38 PM
To print several identical forms containing different data in one spool request, begin
each form using START_FORM and end the form using END_FORM.
Before using START_FORM for the first time, you must call OPEN_FORM.
The function modules for each form are called between START_FORM and
END_FORM.
END_FORM does not end the printing process. Use either START_FORM or
CLOSE_FORM after END_FORM.
simply... in open form u can open different forms with the same driver program and in start form is for the particular form.
award if it helps to u