i have displayed the logo at the right side and title in left side in alv grid but i need to display logo at the left side in the header before title text. For this i have used below code. Pls tell me how to display logo at left side?
FORM TOP_PAGE.
DATA : IT_TOP TYPE SLIS_T_LISTHEADER WITH HEADER LINE.
IT_TOP-TYP = 'H'.
it_top-key = 'C101'.
CONCATENATE 'ION PAY REPORT FOR THE MONTH OF' WA_PAYFINAL-MON_NAME '-' P_YEAR INTO IT_TOP-INFO SEPARATED BY SPACE.
APPEND IT_TOP.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
IT_LIST_COMMENTARY = IT_TOP[]
I_LOGO = 'IESLICON'
I_END_OF_LIST_GRID =
I_ALV_FORM =
.
ENDFORM. "top_page