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 download a logo into an excelsheet through a program

Former Member
0 Kudos

Hi All,

Can you put some light on the procedure/programming needs to be done to download a log into an excel sheet through a program

thanks

gaurav maini

1 ACCEPTED SOLUTION

former_member223537
Active Contributor
0 Kudos

HI,

CALL METHOD OF gs_excel 'RANGE' = gs_cell EXPORTING #1 = 'B2'.

  CALL METHOD OF gs_sheet 'PICTURES' = gs_picture.
  CALL METHOD OF gs_picture 'INSERT'
    EXPORTING
    #1 = 'C:\logo.bmp'.

Best regards,

Prashant

2 REPLIES 2

former_member223537
Active Contributor
0 Kudos

HI,

CALL METHOD OF gs_excel 'RANGE' = gs_cell EXPORTING #1 = 'B2'.

  CALL METHOD OF gs_sheet 'PICTURES' = gs_picture.
  CALL METHOD OF gs_picture 'INSERT'
    EXPORTING
    #1 = 'C:\logo.bmp'.

Best regards,

Prashant

0 Kudos

Hi,

Can you please explain in detail were i need to include this code as I am not clear on OOPS concepts to be used in this.If the information is given in proccedural manner, it will be great help.

thanks a lot

Gaurav Maini