Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Renaming Graphics

Former Member
0 Kudos

Hi ppl,

How can we rename a graphics document uploaded in transaction OAOR?

(Class name: pictures; class type: ot).

Thanks,

Dawood.

Edited by: Dawood.S.Ghasletwala on Jan 10, 2008 11:38 AM

2 REPLIES 2

Former Member
0 Kudos

Hi Dawood,

see and check this

In the transaction 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

kindly reward if found helpful.

cheers,

Hema.

Former Member
0 Kudos

Hi Dawood, also check this an do so.

) go to transaction code OAOR

2) give the classnames as pictures

3) class types as OT

4) object key as ALV _ BACKGROUND

5) execute

6) then you come to a screen at the bottom you see four tabs .

7) select the tab create .

😎 under standard doc. types

9) double click on the option screen, it takes you to the file selection screen and select the logo and note: it must be .jpg file and click enter and you get a message on the stored successfully

FORM TOP-OF-PAGE.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

EXPORTING

IT_LIST_COMMENTARY = HEADING[]

I_LOGO = ALV_BACKGROUND

.

ENDFORM. "TOP-OF-PAGE

cheers,

Hema.