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
What are function modules?
In sap script how to print bar code in vertical manner
What are the tcodes for performance tuning?
What are base tables of an aggregate object? : abap data dictionary
What are the techniques involved in using SAP supplied programs? Do you prefer to write your own programs to load master data? Why?
Explain the difference between open_form and close_form?
How will you link form with the event driven in sap scripts?
Explain the different types of data dictionary objects?
Explain the components of selection table?
How to transfer the objects? Have to transferred any objects?
Do we create table fields with out data elements and domains?
How to do find it?
What are the two ways of producing a list within a transaction?
Print options in smartforms?
Explain what is sap script? What is the purpose of sap script? Difference between sap script and report?