My ALV footer should contain at least 70 characters. I used the standard slis_listheader for my footer but the standard info (type slis_entry) is only 60 characters. Is there any way to build a footer without using the standard? Also, I don't want to change the codes below because it is used by other programs. If I have to adjust, it's in my main program.
The following are excerpts from my include program:
<i>data: wa_line TYPE slis_listheader.
new_footer_line 'S' 'END OF REPORT' sy-repid.
DEFINE new_footer_line.
clear wa_line.
wa_line-typ = &1.
wa_line-key = &2.
wa_line-info = &3.
append wa_line to it_list_end_of_list.
END-OF-DEFINITION.</i>