cancel
Showing results for 
Search instead for 
Did you mean: 

layout set change issue.

Former Member
0 Kudos

Hi,

I have a problem with script.

In first page i am displaying some data.Some times the data will be more. In that case i need to display some thing like '....to be continued' at the end of the page and in second page also i need to display some thing at the top of page.

The entire thing i need to change in layout set only.

Please any one help me on this issue.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Venkat,

Use TOP and ENDTOP for top of page and BOTTOM and ENDBOTTOM for end of page in the main window.

In the main window

/: TOP

/: IF &PAGE& > 1

= 'Display what you want to display from second page here!!!!'

/: ENDIF

/: ENDTOP

/: BOTTOM

/: IF &NEXPAGE& <> 0

= '...... to be continued'

/: ENDIF

/: ENDBOTTOM

<b>Note:</b> Dont post duplicate threads. Plz close the other duplicate threads by answered/solved.

Thanks,

Vinay

Message was edited by:

Vinaykumar G

Former Member
0 Kudos

Hi,

Create the Windows for the Footer and the Header,

To dispay ....to be continued' in te last of the First page, just check the page numbers, then print it in the Footer window,

to display the text in the second page header, you can check the page number condition like if &CPAGE& > 1. then you can write the text

Regards

Sudheer