cancel
Showing results for 
Search instead for 
Did you mean: 

can we use different element in main window in SAP SCRIPT urgent.......

Former Member
0 Kudos

HI,

i want to display a table which is in main window in second page not in first page.

if i comment the text element .

it is getting commented in both the pages.

Accepted Solutions (1)

Accepted Solutions (1)

former_member196280
Active Contributor
0 Kudos

yes, you can use different text elements in main window, if your driver program is in your control..

If you want table data to be printer from second page on try like this...

IF &PAGE& NE 1.

***PRINT YOUR TABLE.

ENDIF.

Regards,

SaiRam

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

if you wants to print the Table in Main window in SECOND page then you have to keep the MAIN window only in second page

you should not keep the MAIN WINDOW in the first page if you don't want the table to be printed in FIRST page, so remove the MAIN PAGE WINDOW from first page and execute it will be printed only in second page

You can also keep the condition of page in the FIRST page

IF &PAGE& NE 1.

<main window code>

ENDIF.

<b>Reward points for useful Answers</b>

Regards

Anji

Message was edited by:

Anji Reddy Vangala

Former Member
0 Kudos

put this condition

if sy-pagno NE 1

&endif&