Posted: Sat Sep 22, 2007 6:39 pm Post subject: Insert the logo in ALV
01) Import LOGO in SAP :
Transaction : 0FPM002 or transaction OAOR or Report BDSFIND_1 .
With class = 'PICTURES' , type = 'OT' and put the logo name. ( example
' MY_LOGO' )
02) In your ALV report : In your TOP_OF_PAGE routine form :
Code:
*---------------------------------------------------------------------*
* FORM ALV_TOP_OF_PAGE *
*---------------------------------------------------------------------*
FORM alv_top_of_page.
w-title = sy-title.
CLEAR: i_list_comments[].
w-list_comments-typ = 'H'. "H=Header, S=Selection, A=Action
w-list_comments-key = ''.
w-list_comments-info = w-title.
APPEND w-list_comments TO i_list_comments.
w-list_comments-typ = 'A'. " H = Header, S = Selection, A = Action
w-list_comments-key = ''.
w-list_comments-info = w-repid .
APPEND w-list_comments TO i_list_comments.
w-list_comments-typ = 'S'. " H = Header, S = Selection, A = Action
w-list_comments-key = ''.
CONCATENATE 'Plant :' p_werks 'From du :' w-datdeb 'to'
w-datfin INTO w-list_comments-info SEPARATED BY space.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.