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
Some Realtime Examples on Exits .
Sal abap on hana interview
How can an internal table with header line and one without header line be distinguished when passed to a subroutine? : abap modularization
how do you call third selection screen ?
What are the prerequisites for creating foreign key relationship?
What is the tcode to create indexes?
How can we set the tablespaces and extent sizes ?
PLEASE HELP ANYONE ON THIS ISSUE,is there any problem with this function module :RHPQ_T77BX_ADD_QUALIS_OF_DPLAN. IT IS TRIGGERING BEFORE COMPLETION OF THE DEVELOPMENT PLAN but it has to trigger after compltion of development plan..this issue raised in my project..so reply urgently..thanks in advance..
What are the different functions used in sap script? What are the parameters used in each function?
Of the two call transaction and session method, which is faster?
What is the difference between open_form and close_form?
What are the major steps will you use for tuning?
Structures can contain data only during the runtime of a program (t/f) : abap data dictionary
Can we create a gui status in a program from the object browser?
What is primary index?