Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Problem in report execution

Former Member
0 Likes
483

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..

2 REPLIES 2
Read only

Former Member
0 Likes
434

can you please paste your code here so that I can check the same and let u know .

Thanks,

Krishnakumar

Read only

Former Member
0 Likes
434

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