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

script

Former Member
0 Likes
293

I need to display date in the script layout from second page onwards.

how to go for it.

the item details in the table are only three.

please tell me that when does a page number changes in script if the item details exceed the main window's height or with every new header

1 ACCEPTED SOLUTION
Read only

JozsefSzikszai
Active Contributor
0 Likes
271

hi Kush,

you can use in the script coding:

IF &PAGENR& NE 1.

display date

ENDIF.

hope this helps

ec

2 REPLIES 2
Read only

JozsefSzikszai
Active Contributor
0 Likes
272

hi Kush,

you can use in the script coding:

IF &PAGENR& NE 1.

display date

ENDIF.

hope this helps

ec

Read only

Former Member
0 Likes
271

Hi,

When your details exceed main window size it will be rolled of automatocally to new page. If you are not calling dynamic NEW-PAGE.

IF &page& NE 1.

print your data.

endif.

&page& gives current page number.

Reward if useful

Madhura

Edited by: Madhura Nadgauda on Feb 6, 2008 11:31 AM