Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Re : smartforms

Former Member
0 Likes
461

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

3 REPLIES 3
Read only

Former Member
Read only

Former Member
0 Likes
440

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