‎2008 Nov 20 5:20 AM
How to declare page number for each page and also the total page number ?
For Example : A Book contains 100 pages, in that each page have one number and total pages in that book like 1/100.
‎2008 Nov 20 5:23 AM
‎2008 Nov 20 5:24 AM
>
> How to declare page number for each page and also the total page number ?
>
> For Example : A Book contains 100 pages, in that each page have one number and total pages in that book like 1/100.
Hi Krishna,
You can specify your title and page numbering
&SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES&(Total Page)
Thanks
Nitesh
‎2008 Nov 20 5:26 AM
Hi,
U can have the following code:
&SFSY-PAGE& of &SFSY-FORMPAGES&
This will print the current page no and the total no of pages.
Regards,
Navin Fernandes.
‎2008 Nov 20 5:33 AM
Hi Krishna,
Just to add some more thing. Hope it will be helpful to you.
&SFSY-PAGE&
Inserts the number of the current print page into the text. You can determine the format of the page number (for example, Arabic, numeric) in the page node.
&SFSY-FORMPAGES&
Displays the total number of pages for the currently processed form. This allows you to include texts such as'Page x of y' into your output.
&SFSY-JOBPAGES&
Contains the total page number of all forms in the currently processed print request.
For more info on building a form, go through this link.
Thanks
Nitesh
‎2008 Nov 20 5:54 AM