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: 

How to insert pictures into Excel?

Former Member
0 Kudos

Hi, all

I want to insert pictures with hyperlinks into excel files. Could you give me some sample code of this function? The code used abap ole, to insert pictures into excel. ^ - ^ Thank you very much~~~

Voldemort.

1 ACCEPTED SOLUTION

former_member181995
Active Contributor
0 Kudos

Search with OLE-technique for Excel.

And refer:

4 REPLIES 4

former_member181995
Active Contributor
0 Kudos

Search with OLE-technique for Excel.

And refer:

0 Kudos

Hi, I had referred these code before, but it seems I still could not solve my problem...

I could not understand the line:

CALL METHOD OF gs_cells 'Select' = select.

Is it used for insert picture? It does not seems to be...

And in my program, the SY-SUBRC is 4 after run:

CALL METHOD OF gs_picture 'Insert'

EXPORTING

#1 = 'C:\TEMP\Picture.bmp'.

Of course my file path is correct, and the picture path is in my own coumputer rather than SAP server. Is that the problem?

0 Kudos

This is for picture insert.

CALL METHOD OF gs_picture 'INSERT'

EXPORTING

#1 = 'C:\TEMP\Picture.bmp'.

0 Kudos

The sy-subrc still is 4. When I used this code...My file path is correct. And the file is in my own machine.