cancel
Showing results for 
Search instead for 
Did you mean: 

How to Display Logo in ALV Header?

former_member455947
Participant
0 Kudos

Hi

I want to display/ print my company logo image in ALV Header. Please help me how can I do this?

Thanks

Iftikhar Ali

Islamabad.

Accepted Solutions (1)

Accepted Solutions (1)

former_member60316
Active Participant
0 Kudos

Hi,

If you are already having a logo say ZLOGO .

You can use it this way .

Give TOP-OF-PAGE

call function 'REUSE_ALV_GRID_DISPLAY'

exporting

i_callback_program = gd_repid

i_callback_top_of_page = 'TOP-OF-PAGE' "see FORM

is_layout = gd_layout

it_fieldcat = fieldcatalog[]

i_save = 'X'

tables

t_outtab = it_ekko

exceptions

program_error = 1

others = 2.

And in top of page do this .

FORM top-of-page.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRIT

EXPORTING

  • IT_LIST_COMMENTARY = IT_LISTHE

i_logo = 'ZLOGO'

  • I_END_OF_LIST_GRID =

.

endform.

Hope this will work .

Reward if found useful.

Regards

SureshP.

former_member455947
Participant
0 Kudos

Thanks SureshP for giving me this kind help.

I also need help to make Zlogo in SAP. I have jpg image file on my disk.

Regards

Iftikhar Ali

Islamabad.

Former Member
0 Kudos

Hello Iftikhar Ali,

Use transaction SE78 to upload a image into SAP.

For your information!

You have posted in wrong forum, you need to post in ABAP development.

Kiran I

former_member455947
Participant
0 Kudos

Thanks for your help and kind information that I have to you SAP Development forum.

Also I solve the problem by taking more help from http://www.sap-img.com/fu002.htm

Regards

Iftikhar Ali

Islamabad

Answers (0)