‎2007 Aug 15 11:14 AM
hai friends
1. i am created one smartform with out main window then how many
pages can possible to create.
2. in script there is a option start_form and end_form instead of this
what is the alternate method in smartforms
thank you
by
geetha
‎2007 Aug 15 11:18 AM
‎2007 Aug 15 11:20 AM
Hi
We have to Use START_FORM and END_FORM to Call multiple forms in a print program. For a single Form we need not to call them.
Syntax.
CALL FUNCTION 'OPEN_FORM'
***For calling first form
CALL FUNCTION 'START_FORM'
FORMNAME = 'ZFORM1'
CALL FUNCTION 'WRITE_FORM'
CALL FUNCTION 'WRITE_FORM'
CALL FUNCTION 'END_FORM
***For calling second form
CALL FUNCTION 'START_FORM'
FORMNAME = 'ZFORM2'
CALL FUNCTION 'WRITE_FORM'
CALL FUNCTION 'WRITE_FORM'
CALL FUNCTION 'END_FORM
CALL FUNCTION 'CLOSE_FORM'.
Note: When we call a single form we will pass the Formname in OPEN_FORM FM
Normally, START_FORM
is not required.
(OPEN_FORM Is compulary in all cases)
please reward points for helpful ans's
kiran.M
‎2007 Aug 15 11:50 AM
Hi,
Step by step guide
See this link, it will give u all the steps starting from the basic
http://help.sap.com/saphelp_46c/helpdata/en/9b/e3b0d9c2a711d3b558006094192fe3/frameset.htm
http://help.sap.com/saphelp_46c/helpdata/en/9b/e3b0dcc2a711d3b558006094192fe3/frameset.htm
<b>Reward if helpful.</b>