Hi All,
I am displaying a Header on the report which consists of multiple pages..Now i want display the Footer.
Footer consists of the following.
1. report Name( In the middile)
2. Page no like . 1/4, 2/4 and 3/4....etc
3. Extreemly left side...Date created and Time created.
Can any body suggest me on this please.
Karunakar
Press F1 for the instruction end-of-page.
Check out help on END-OF-PAGE event. Here is a sample program.
report zrich_0001 line-count 64(2). start-of-selection. reserve 2 lines. do 500 times. write:/ sy-uzeit. enddo. top-of-page. write:/ sy-pagno. end-of-page. skip 1. write:/ sy-repid.
Regards,
Rich Heilman
Add a comment