‎2006 Aug 03 6:27 AM
Hello Experts
M facing a strange problem
Smtimes when I execute the report (Development), all the header infoomation along with columns in ALV display three times..
but it happens smtimes..not always..
when I go back and reexecute the report..
report dispayed is al right..
any idea about why it happens..
THanks in Advance..
‎2006 Aug 03 6:29 AM
can you please paste your code here so that I can check the same and let u know .
Thanks,
Krishnakumar
‎2006 Aug 03 6:30 AM
just refresh all header table which u are using for ALV.
like this
call function 'REUSE_ALV_LIST_DISPLAY'
exporting
i_callback_program = lv_repid
i_callback_user_command = 'Z_USER_COMMAND'
is_layout = fs_layo1
it_fieldcat = fcat1[]
i_default = 'X'
i_save = 'U'
it_events = fevents1[]
tables
t_outtab = ptab[].
clear: fcat1,ptab.
refresh: fcat1,ptab.regards
Prabhu