‎2008 Jun 09 9:18 AM
Why can't we use the Logo uploaded using T-code OAER in sap script, why we need again upload using SE78?
What is the difference in uploading in this two ways?.
‎2008 Jun 09 9:20 AM
Hi Krishna,
we use SE78 to upload logos in script and Smartforms
where as we use OAER to upload into application server for ALV reports.
Best regards,
raam
‎2008 Jun 09 9:33 AM
But why they are uploading the logo using two different Tcodes , instead they should have used only one tcode to uplaod the logo into ALV and SAP scripts? what is actually happening when we are uploading LOGO's using SE78 and using OAER?
‎2008 Jun 09 9:20 AM
se78 - Administration of Form Graphics (Import Graphics into SAP System)
and name is
SE78 SapScript Graphics Management
use:
SE78 will internally calls RSTXLDMC, they are 2 ways to upload the logo.
Through RSTXLDMC you can upload TIFF files only i guess, but using SE78 you can upload any type of graphics file.
In the transaction OAER ,OAOR, you should be able to insert your company Logo.
GOTO - OAOR (Business Document Navigator)
Give Class Name - PICTURES Class Type - OT..... then Execute
It will show you the list, then select ENJOYSAP_LOGO.
On that list, you will find one control with a "create" tab.
Click std. doc types.
Select SCREEN and double-click.
It will push FILE selection screen.
Select your company logo (.gif) and press OK.
It will ask for a description- for instance: "company logo".
It will let you know your doc has been stored successfully.
You can find your logo under ENJOYSAP_LOGO->Screen->company logo.
Just run your ALV program, you should find your company logo in place of the EnjoySAP logo.
FORM TOP-OF-PAGE.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
IT_LIST_COMMENTARY = HEADING[]
I_LOGO = 'ENJOYSAP_LOGO'
I_END_OF_LIST_GRID ='GT_LIST_TOP_OF_PAGE'.
.
ENDFORM. "TOP-OF-PAGE
Here 'ENJOYSAP_LOGO' will replace by ur created logo.
Refer this link
http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_enhanced.htm
http://www.sap-img.com/abap/alv-logo.htm
http://www.sap-img.com/fu002.htm
Also check this
Change the logo in the right-hand side of the initial Log-on screen
To put your company logo in the right-hand side of the initial
screen:
Put your picture in the database with the transaction SMW0
"Binary data" options, e.g. in ".GIF" format.
Put a record with the picture name in the key "START_IMAGE" of
the table SSM_CUST in the View maintenance transaction SM30.
You can adjust the picture to the window size automatically or
center it in the right-hand side of the initial screen
("RESIZE_IMAGE" "YES" or "NO" in the table SSM_CUST).
You can deactivate the picture globally so that noone sees it
with "HIDE_START_IMAGE" "YES" in the table SSM_CUST.
Refer the links -
See following link:
http://www.sap-img.com/basis/changing-the-sapgui-logo-on-the-right-hand-side.htm
See the link
http://www.sap-img.com/bc052.htm
Reward if useful
Ankesh
‎2008 Jun 09 9:55 AM
Hi krishna murthi vadnala,
SE78--->Form Graphics.
its applied for sapscript and smartforms.
its can upload image with sapscript format. its can transferred to smart forms.
OAER or OAOR:-->Business Document Navigator
Its applied for ALV.
its can upload image with navigator link. its can transferred to alv.
DATA: t_header TYPE slis_t_listheader.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = t_header
i_logo = 'DUPLEX'. -
> Picture Name of Description. Goto t.code OAOR or OAER (class name=pictures, class type= ot)
Reward if useful,
S.Suresh.