cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding scripts

Former Member
0 Kudos

Hi,

In sap script we have two pages with two diffrent layouts,How can we see the two pages in output.And up to how many pages we can maintain in scripts.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi murali,

<b>How can we see the two pages in output.</b>

When ever u execute the script u can see the intial page. Then when ever u r right click popup window will raise, in that u can find next page option. Follow this we can see the next pages.

<b>up to how many pages we can maintain in scripts</b>

'n' number of pages we can maintain in script.

Hopes it helps you.

Regards,

Kumar

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Create a new form with a different layout..Then the form in sequence..

CALL FUNCTION 'OPEN_FORM'.

CALL FUNCTION 'START_FORM'. " First form.

CALL FUNCTION 'END_FORM'.

CALL FUNCTION 'START_FORM'. " Second form.

CALL FUNCTION 'END_FORM'.

Thanks

Naren