‎2008 Jun 29 11:08 AM
`hai
i have one doubt.,,,,i need to get page number of everypage like.....1 / 22,,,,2 / 22,,,,3 / 22,,,4 / 22.
here total number of pages: 22.
‎2008 Jun 30 5:22 AM
Hi,
could't get u fully,
if u r talking about script it will b like...
&page& of &sapscript-formpage&
regards,
pritam
‎2008 Jun 30 6:37 AM
Hi Venu,
If u want the page numbers on each page Just try this.
&page& / &sapscript-formpages& in the SAP script editor in which ever window u want . This will work
Regards,
Swapna.
‎2008 Jun 30 10:30 AM
hai,,,
i need in classical reports....actually i have 22 pages
in each page i have to get like 1 / 22, 2 / 22,,,,3 / 22....
plz ,try to say...
‎2008 Jun 30 10:33 AM
‎2008 Jun 30 3:08 PM
Hi Venu.
You need to write:
w_page = w_page + 1. " In a loop
end-of-page.
write:/ w_page '/' sy-pagno.Reward Points if found usefull.
Regards
Harsh.
Edited by: Harsh Dave on Jun 30, 2008 7:39 PM
‎2008 Jul 01 7:54 AM
Hi,
You can do it as follows.
DATA: X(10) type C,
TOT_PAGES(3) type C.
TOT_PAGES = <Here goes the no of pages>.
CONCATENATE SY-PAGNO ' / ' TOT_PAGES INTO X.
( Here X is a variable).
write:/ X.
Hope it helps you.
Murthy.