‎2008 Feb 06 10:22 AM
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
‎2008 Feb 06 10:24 AM
hi Kush,
you can use in the script coding:
IF &PAGENR& NE 1.
display date
ENDIF.
hope this helps
ec
‎2008 Feb 06 10:24 AM
hi Kush,
you can use in the script coding:
IF &PAGENR& NE 1.
display date
ENDIF.
hope this helps
ec
‎2008 Feb 06 10:29 AM
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