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

What is the difference between ABAP and HR ABAP

3128


What is value table?

667


What functions does a data dictionary perform? : abap data dictionary

709


What are the events in ABAP language?

703


What is a development class? : abap data dictionary

808






What is client in the sap system? : sap abap hr

657


What is a collect statement?

665


What are the buffering types?

709


What are the components of sap scripts? : abap hr

677


How do you set up background jobs in sap? What are the steps? What are the events driven batch jobs?

669


Explain the sequences of event block?

632


Explain the client concept of sap.

677


– Programming using BAPI : Create Debit Memo Request (DMR) with reference to Sales Order and update the delivery number and PO number in the newly created DMR. Send the spool of the report by E-mail if the E-mail option is enabled. Selection Screen Required:  Sales Org  Delivery type  Sales document type Optional:  Planned Goods movement date  Option to choose E-Mail  E-mail Address  Output device Output Output should display both successful and unsuccessful creation of DMR with the following fields,  Success/Error (S/E)  Sales Document number  Delivery number  New Debit memo request number  Error message Tables TVAK, TVCPA, VBAK, LIKP, LIPS

5675


What are number ranges?

725


How to transfer the objects? Have to transferred any objects?

684