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: 

reg : top of page in Alv

Former Member
0 Kudos

hi friends...

in my object, i have to display a report in alv with top of page..

in top of page i have to display my company logo..

here the issue is top of page window height is smaller than the logo..

how can i fix it statically..

4 REPLIES 4

Former Member
0 Kudos

In the transaction OAOR, you should be able to insert your company Logo.

  1. GOTO - OAOR (Business Document Navigator)

  2. Give Class Name - PICTURES Class Type - OT..... then Execute

  3. It will show you the list, then select ENJOYSAP_LOGO.

  4. On that list, you will find one control with a "create" tab.

  5. Click std. doc types.

  6. Select SCREEN and double-click.

  7. It will push FILE selection screen.

  8. Select your company logo (.gif) and press OK.

  9. It will ask for a description- for instance: "company logo".

  10. It will let you know your doc has been stored successfully.

  11. You can find your logo under ENJOYSAP_LOGO->Screen->company logo.

  12. Just run your ALV program, you should find your company logo in place of the EnjoySAP logo.

Regards,

Santosh

0 Kudos

hi i am not asking about picture upload.

i am asking abt topof page screen position

0 Kudos

You can see logo fully when you modify the code in top-of-page filling the header.

suppose you have top-of-page with heading and logo.

heading - you can give some space so that logo will come properly.

See the below sample code :

FS_LIST_COMMENTARY-TYP = 'S'.

FS_LIST_COMMENTARY-KEY = 'ANANTH'. -> fill empty value

FS_LIST_COMMENTARY-INFO = 'ANANTH KUMAR SUDANI'. -> fill empty value

APPEND FS_LIST_COMMENTARY TO T_LIST_COMMENTARY.

so depend upon your logo size ,you need to fill empty values.

Check the below link for top-of-page program:

http://www.sap-img.com/abap/sample-programs-on-alv-grid.htm

Check the below link for how to load logo

http://www.sap-img.com/fu002.htm

Thanks

Seshu

Former Member
0 Kudos