plz listen carefully sir,in alv reports how i insert logo
into alv grid(if it is tcode 'oaer' )?tell me procedure,
in the same report how insert background logo tell me the
procedure please?

Answer Posted / sujoy pal

to show LOGO in ALV grid with header details,

in REUSE_ALV_GRID_DISPLAY,
I_CALLBACK_HTML_TOP_OF_PAGE = 'TOP_OF_PAGE'


*****at the end of main program*******


form TOP_OF_PAGE.
**********Declaration*************
data : glistheader type slis_t_listheader,
llistheader type slis_listheader.

******Populate header data************
clear llistheader.
llistheader-typ = 'H'.
llistheader-info = 'This is Grid Title'.
append llistheader to glistheader.


CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = glistheader
I_LOGO = 'ENJOY_SAP_LOGO'
* I_END_OF_LIST_GRID =
.

endform.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

State the system field for the current date?

635


How to read files and process BDC's automatically ?

1633


How do we assign dynamic views while creating material master and generating bdc? : abap bdc

633


What are the data types of internal tables?

588


Write special commands of list?

579






What is an update task? : abap modularization

594


What is an on”*-input filed” statement?

605


What are the requirements a dialog program must fulfill?

639


What is the difference between data elements and domains?

578


When value table becomes check table?

582


What is the syntex used to call a screen as dialog box (pop up)?

727


What type of user exits have you written ?

1511


suppose i want to print sap script output in different printers at a time what are the settings i'll have to make?

1859


Have you processed BDCs ?

636


What are the organizational related infotypes? : abap hr

589