Application Development and Automation 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: 
Read only

footer problem in classical report

Former Member
0 Likes
621

Hi experts,

I devloped a classical report but i want to display a footer deatail in all of my page.

But in my last page it doesn't come......

NOTE : i have reservered 12(2) line for each page. but total record is 100.

Regards

skmohanty

Hi experts,

I devloped a classical report but i want to display a footer deatail in all of my page.

But in my last page it doesn't come......

NOTE : i have reservered 12(2) line for each page. but total record is 100.

Regards

skmohanty

4 REPLIES 4
Read only

Former Member
0 Likes
571

Hi

Try using END-OF-PAGE event and i think the page should have 13 lines to trigger this event.

Regards

Read only

Former Member
0 Likes
571

This is because....

Every 12 lines of code last 2 lines are reserved for your Footer...

Now you have 100 rows of code which means that 96 row also footer will trigger....

But for last 4 records it is not occupying all the 12 records...So footer is not trogering !! Understand???

Regards

sas

Read only

0 Likes
571

Hi,

I am hope this answer is very helpfull to u..

Declare one variable like

DATA: V.

V = sy-linct - sy-linno - 2.

skip V.

plz this code write after the endloop and before the end-of-selection

Thanks&Regards

Hari..

Read only

Former Member
0 Likes
571

THANKs.