Application Development 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: 

sap script-control form

former_member225134
Participant
0 Kudos

Hi,

     In script (driver program )only one page is displaying..Now i want to add another page based on first page details.

so how to use or include control form in diver program.where i have to include the function module control form...

Because in this program already having

                                                          call function 'open_form'

                                                           .......

                                                           ........

                                                           ........

                                                       call function 'write_form'

                                                           ........

for first page details.

Now where if i have to include control form means second page will display......And what are the syntaxes added to script

like define,protect and endprotect..

Can anyone explain breifly......

2 REPLIES 2

VenkatRamesh_V
Active Contributor
0 Kudos

Hi Anitha,

two ways,

Create text element  as page.

/E page.

/:   NEW-PAGE

In Driver program.

CALL FUNCTION 'Write_form'.

Exporting

ELEMENT = 'PAGE'.

OR

CALL FUNCTION 'Control_form'.

Exporting Command = 'NEW-PAGE'.

Hope it helpful.

Regards,

Venkat.

0 Kudos

Thanks for your repli,

    After that how to identify the new page is created??? in se71

How to copy main window details to second page??