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

How to combine multiple order in one Delivery ( Step by Step)?

2120


Explain the differences between interactive and drill down reports?

675


MY DOMAIN IS SAP-ABAP COMPARE TO WEBDYNPRO AND CRM-TECHNICAL WHICH IS BEST?

2629


What is direct input method ?

1627


What are the 3 types of function modules in sap?

749






What are the screen elements.

666


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.

1958


What are the different functions used in sap script? What are the parameters used in each function?

795


How do you connect to the remote server if you are working from the office for the client in remote place?

750


What is dialog module?

745


Difference between domain and data element? What are aggregate object?

782


What is difference between inner join and outer join?

787


Explain the relationship between a functional area, user group, and query when developing queries using the sap query tool?

727


what is mean be On Change of in Control Break statement

990


Define structure in abap data dictionary?

747