Hi,
I am currently using REUSE_ALV_LIST_DISPLAY function module for ALV display.
CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
EXPORTING
i_callback_program = sy-repid
is_layout = l_layout
it_fieldcat = t_fieldcat
it_events = t_events
TABLES
t_outtab = t_final1
EXCEPTIONS
program_error = 1
OTHERS = 2.
The problem which I am facing is that when I try to download to Excel from the ALV display the Columns headings and corresponding data are getting misaligned.Like heading is getting downloaded at seperate column and their corresponding data in another column.
Could you please suggest your views on this issue.
Thanx in advance.