can i print logo in normal report, icame it will not be able to keep logo in normal
report but it can happen by module pool,here i am facing one problem
i am getting the logo in seperate screen after coming out of the screen only i am getting the output of the report.
i want both of them(logo as well as report) in the same screen.
See Program - DEMO_PICTURE_CONTROL
*************************
you may refer to this document to know all about pictures in SAP.
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCIIMAGE/BCCIIMAGE.pdf
****************************
Steps for uploading Logo :-:
1. Goto the transaction OAER
2. Enter the class name as 'PICTURES'
3. Enter the class type as 'OT'
4. Enter the object key as the name of the logo you wish to give
5. Execute
6. Then in the new screen select Standard doc. types in bottom window
Click on the Screen icon
Now, it will ask for the file path where you have to upload the logo
7. Now you can use this logo in REUSE_ALV_COMMENTARY_WRITE
Here you go !!
&----
*
*& Form TOP_OF_PAGE
&----
text
----
FORM F_TOP_OF_PAGE.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
IT_LIST_COMMENTARY = IT_LISTHEADER
i_logo = Logo name
I_END_OF_LIST_GRID =
.
ENDFORM. "TOP_OF_PAGE
hi,
1. Goto the transaction OAER
2. Enter the class name as 'PICTURES'
3. Enter the class type as 'OT'
4. Enter the object key as the name of the logo you wish to give
5. Execute
6. Then in the new screen select Standard doc. types in bottom window
Click on the Screen icon
Now, it will ask for the file path where you have to upload the logo
7. Now you can use this logo in REUSE_ALV_COMMENTARY_WRITE
&--------------------------------------------------------------------* *& Form TOP_OF_PAGE *&--------------------------------------------------------------------* * text *---------------------------------------------------------------------* FORM F_TOP_OF_PAGE. CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = IT_LISTHEADER i_logo = Logo name * I_END_OF_LIST_GRID = . ENDFORM. "TOP_OF_PAGE
Regards'Anver
Add a comment