Application Development 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: 

End Of Page

naveen_inuganti2
Active Contributor
0 Kudos

Hi... Friends...

I have two Quetions....

Q1) Output of my report contains 100 lines.... And i used line count for this report as 30 and 3 line s for end of page so i can get end page three times and remaining lines(last page) with out end of page...

Send me the syntax to get end of page for this condition....

and here iam using one method (oops) to write this code...

can i use

"........NM = sy-count -sy-linno, skip NM....." process..

if., Can i call this in all reports where i want end-of-page...

Q2) what is the system field SY-FTYPE?

Thank you,

Naveen Inuganti.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Could you please have a look at belwo link for End of page event:

[Defining a Page Footer|http://help.sap.com/saphelp_nw70/helpdata/en/9f/dba09d35c111d1829f0000e829fbfe/frameset.htm]

SY-FTYPE

Data type of a field.

[ABAP System Fields|http://help.sap.com/saphelp_nw70/helpdata/EN/7b/fb96c8882811d295a90000e8353423/frameset.htm]

I hope it helps.

Thanks,

Vibha

Please mark all the useful answers

3 REPLIES 3

Former Member
0 Kudos

Could you please have a look at belwo link for End of page event:

[Defining a Page Footer|http://help.sap.com/saphelp_nw70/helpdata/en/9f/dba09d35c111d1829f0000e829fbfe/frameset.htm]

SY-FTYPE

Data type of a field.

[ABAP System Fields|http://help.sap.com/saphelp_nw70/helpdata/EN/7b/fb96c8882811d295a90000e8353423/frameset.htm]

I hope it helps.

Thanks,

Vibha

Please mark all the useful answers

Former Member
0 Kudos

Hi,

1. Report report_name no standard page heading line-count 30(3).

2.FTYPE--->nternal ABAP System Field

http://help.sap.com/saphelp_nw2004s/helpdata/en/7b/fb96c8882811d295a90000e8353423/content.htm

Regards,

shiva.

Former Member
0 Kudos

Hi,

As you have given

Report zxy line count 30(3).

in every page 27 lines of the data and a footer of 3 lines is printed.

as you have 100 lines the remaining is carried to the next pages.

untill and unless 27 lines is printed footer will not be printed.

For SY-FTYPE(internal ABAP System Field ) field, you can check in SYST as it is a system variable.

Regards,

Raj.