Hello Friends ,
I am running a monthly job event for a report . Everything seem to work fine for the past few months . Now the monthly job went to ABEND last week. At the end of the job it gave me the following error.
LIST_TOPOFPAGE_OVERFLOW.
Job Cancelled .
Has anyone encountered this error before . Please advice .
Thank you ,
Hari
Please check and make sure that the LINE-COUNT that is specificy is big enough to hold at least the number of lines in your headings(top_of_page) and some detail lines.
If you look at this program..... you can see that there is no page limit here.
report zrich_0001 line-count 5. do 100000 times. write:/ sy-index. enddo. top-of-page. write:/ 'Heading'.
If you change the LINE-COUNT to 1, then you can see that you will get the dump.
Regards,
Rich HEilman
Add a comment