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
SM35 transaction, How to automate BDC ?
Explain the call transaction method? : abap bdc
If I want to execute a program only in background not in foreground is there any option for this? : abap bdc
What is modularization and its benefits?
Define abap/4 layer? : abap data dictionary
How can I get ascii value of any letter? Is there any function?
What is ole?
What are the tcodes for performance tuning?
Can there be more than 1 main window in sap script?
what is the difference between hashed & sorted internal tables?
Explain what are the events used in interactive reports?
What is an “on input filed” statements?
How many main windows are allowed in sapscript?
what is sap scriptview ?
Explain what are the events used for logical database?