cancel
Showing results for 
Search instead for 
Did you mean: 

page number on form fp_example_01

Former Member
0 Kudos

when the form execution goes to 2nd page it displays a page number on right potion lil below top margin..

can some body tell me where the setting is for that pageno.. like sy-pagno or any thing like that..

reminding you it doesnt show that page number on the form when it is a one page output. only for >2 pages it shoes...the page number.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Toget the current page number either you can use insert current page number with in static text (this is working when that is placed on master page) or you can place a numeric field and add the below script to the field in layout:ready event (this will work in Body page as well as in Master page).

Var curpage = $layout.page ( ref ( $ ) )

$ = curpage

Or

$ = $layout.page ( ref ( $ ) )

Former Member
0 Kudos

thanks .. this looks interesting....

and the text which is given in standard prog fp_example is having value "#" can u expln..

//reward point given...pavan

Former Member
0 Kudos

i dont have the designer in my system.

when you insert page number in text field you will get #.

select the # and check the object properties.youmay get idea

former_member191062
Active Contributor
0 Kudos

Hello,

there is also a standard element "page n of m" you can use that.

Best regards,

Dezso

Answers (0)