Skip to Content
0
Former Member
Jul 07, 2009 at 06:19 AM

OOALV logo

152 Views

can anyone please tell me how to upload a logo in ooalv

Im using the below code but event is not getting triggered.

class lcl_receiver definition.
              top_of_page  for event top_of_page
                                   of cl_gui_alv_grid
                                         importing e_dyndoc_id,
 endclass.

class lcl_receiver implementation. 
  method top_of_page.
    perform event_top_of_page using e_dyndoc_id.
  endmethod.                    "top_of_page
 endclass

FORM event_top_of_page Using lcl_dd_doc TYPE CL_DD_DOCUMENT.
CALL METHOD lcl_dd_doc->ADD_PICTURE
  EXPORTING PICTURE_ID = 'SAPLOGO'.
ENDFORM.