HI ALL,
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
EXPORTING
I_BACKGROUND_ID = space
i_callback_program = gd_repid
i_callback_user_command = 'USER_COMMAND'
I_CALLBACK_TOP_OF_PAGE = 'TOP_OF_PAGE'
*is_layout_lvc = gd_layout
it_fieldcat_lvc = it_fieldcat
*it_fieldcat = it_fieldcat
i_save = 'X'
TABLES
t_outtab = ITAB
EXCEPTIONS
program_error = 1
OTHERS = 2.
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
The problem iam facing is when the alv grid is displayed on screen the background is blue & the first cell on which the cursor resides is yellow. i want the background colour to be white. Can anyone tell me how to achieve this. Points would be rewarded to all.
Rgds.