Skip to Content
0
Apr 24, 2009 at 06:08 PM

OLE - Insert a logo into table cell

54 Views

Hi friends. I trying to put a logo into a table cell. The table has 1 line and 2 colums.

I'm using the code:

GET PROPERTY OF gs_selection 'InlineShapes' = gs_shapes.
  CALL METHOD OF gs_shapes 'AddPicture'
    EXPORTING
      #1 = p_filename
      #2 = 'False'
      #3 = 'True'.

The problem is I want to put logo on line 1 and colum 2, but when I execute this code, the logo show on

line 1, colum 1. How I can put logo on line 1, colum 2?

Thanks a lot!