This code provides logic to remove the Header generated by TOP-OF-PAGE from the Last Page. Code Snippet *&———————————————————————* *& Report ZTEST_NP_TOP_LAST * *&———————————————————————* *& Example of how to remove the header generated by TOP-OF-PAGE and * *& Move the LIST upwards in the space of the TOP-OF-PAGE * *& * *&———————————————————————* REPORT ztest_np LINE-COUNT 10(2) NO STANDARD PAGE HEADING. START-OF-SELECTION. * Generating the Output DO 30 TIMES. WRITE: / sy-abcde. ENDDO. * Clearing the last TOP-OF-PAGE READ LINE 1 OF PAGE sy-pagno. CLEAR sy-lisel. MODIFY LINE 1 OF PAGE sy-pagno. * Moving list upword * Here we are moving only 2 lines, as we have only 2 * lines in our TOP-OF-PAGE DATA: l_cnt TYPE i, l_line TYPE i. CLEAR: l_cnt, l_line. l_line = 2. DO. l_cnt = l_cnt + 1. l_line = l_line + 1. READ LINE l_line OF PAGE sy-pagno. IF sy-subrc NE 0. EXIT. ELSE. MODIFY LINE l_cnt OF PAGE sy-pagno. CLEAR sy-lisel. MODIFY LINE l_line OF PAGE sy-pagno. ENDIF. ENDDO. * Top of page TOP-OF-PAGE….