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!