Hello
I have an ALV Grid that is not displaying all data. Table (itab3) has 7 records but only 6 actually are displayed in the ALV Grid. Can anyone give me any help why I'm not seeing the 7 reords in itab3?
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = l_repid
is_layout = gs_layout
it_fieldcat = gt_fc[]
i_save = 'A'
it_events = gt_events[]
i_bypassing_buffer = 'X'
is_print = gs_print
TABLES
t_outtab = itab3
EXCEPTIONS
OTHERS = 0.
Thanks
Gary