2010 Jan 25 4:02 AM
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
2010 Jan 25 5:11 AM
Hi
Try using END-OF-PAGE event and i think the page should have 13 lines to trigger this event.
Regards
2010 Jan 25 5:19 AM
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
2010 Feb 26 1:43 PM
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..
2010 Feb 17 4:29 AM