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
How to combine multiple order in one Delivery ( Step by Step)?
Explain the differences between interactive and drill down reports?
MY DOMAIN IS SAP-ABAP COMPARE TO WEBDYNPRO AND CRM-TECHNICAL WHICH IS BEST?
What is direct input method ?
What are the 3 types of function modules in sap?
What are the screen elements.
I am trying to automate a manual processing of iDOCs in BD87. I used the following code to pass idoc-id to global variable 'DCN' and then skip the first screen of BD87 to go to processing directly. After running this code SET PARAMETER ID 'DCN' FIELD itabhdr-idoc_id. CALL TRANSACTION 'BD87' AND SKIP FIRST SCREEN. it takes me to the first screen because it cannot recognize my idoc-id. How I can pass idoc-id to global? I have used the above code to goto VA02 with VBELN and it worked perfectly.
What are the different functions used in sap script? What are the parameters used in each function?
How do you connect to the remote server if you are working from the office for the client in remote place?
What is dialog module?
Difference between domain and data element? What are aggregate object?
What is difference between inner join and outer join?
Explain the relationship between a functional area, user group, and query when developing queries using the sap query tool?
what is mean be On Change of in Control Break statement
Define structure in abap data dictionary?