ABAP中END-OF-PAGE 除了需要在REPORT中设置footer_lines参数之外还需要怎么样做才能显示出来?
REPORT demo_page_header_footer NO STANDARD PAGE HEADING
LINE-COUNT 4(2).
write:/ 'this is page 1.'.
new-page.
write:/ 'this is page 2.'.
END-OF-PAGE.
write: 'this is end of page'.
ULINE.
我这样写的代码有什么问题,为什么执行看不到END-OF-PAGE的内容?