Hi,
I am using REUSE_ALV_GRID_DISPLAY to output the alv screen.....th ereq is that the title shoud come in red colour as it is the error message.....
how can i do it....
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = sy-repid
i_callback_pf_status_set = 'SET_PF_STATUS'
i_callback_user_command = 'USER_COMMAND'
i_grid_title = i_title
it_fieldcat = t_fieldcatalog
it_excluding = i_excluding
TABLES
t_outtab = it_output
EXCEPTIONS
program_error = 1
OTHERS = 2.
i_title contains the title.
kanishak