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 are the disadvantages of using explicit enhancement?

1388


Why do we use Abstract classes give an example from your project?

894


Define subtype ? : abap hr

618


Advantages and disadvantages of different types of bdc's?

586


When is the top-of-page event triggered? : abap data dictionary

811






What do you understand by work area and internal tables in abap? Why do we use it?

626


What is read line in abap?

647


What are the advantages of logical databases?

625


Normally how many and what files get created when a transaction program is written?

567


What are the table controls in bdc ? What is the difference between bdc and lsmw ?what is the difference between bdc and rfc ? : abap bdc

564


What is the function of the correction system?

580


What is a collect statement?

582


Suppose there is a secondary index on 4 non-key fields A,B,C & D. There are 3 select queries :- a) one on basis of A, B, C , D b) Second on basis of A, B, C c) Third on basis of D, C,B, A In which all situations , the above secondary index will be used?

1077


What is the purpose of creating symbolic a/c, what is transaction code for same? Can we assign one symbolic a/c to multiple wage types? : sap abap hr

604


What are the basic object types? : sap abap hr

635