<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Creating Excel sheet set with ole2_object in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-excel-sheet-set-with-ole2-object/m-p/4535086#M1071661</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks it will be very helpful, but there are no reference to embed link; &lt;/P&gt;&lt;P&gt;I solved by myself "translating" perl call to hyperlink method I found googleing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM here_we_go .&lt;/P&gt;&lt;P&gt;  " ole2object for links in the sheet&lt;/P&gt;&lt;P&gt;  DATA h_link TYPE ole2_object.&lt;/P&gt;&lt;P&gt;  " set cell coordinates&lt;/P&gt;&lt;P&gt;  CALL METHOD OF excel 'RANGE' = cell EXPORTING #1 = 'E20'.&lt;/P&gt;&lt;P&gt;  SET PROPERTY OF cell 'VALUE' = 'google'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD OF sheet 'HYPERLINKS' = h_link.&lt;/P&gt;&lt;P&gt;  " sheet is the ole2_object representing the sheet&lt;/P&gt;&lt;P&gt;  CALL METHOD OF h_link 'ADD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      #1 = cell&lt;/P&gt;&lt;P&gt;      #2 = 'http://www.google.com'.&lt;/P&gt;&lt;P&gt;  FREE OBJECT cell.&lt;/P&gt;&lt;P&gt;  FREE OBJECT h_links.&lt;/P&gt;&lt;P&gt;ENDFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this could help.&lt;/P&gt;&lt;P&gt;Gabriele&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Sep 2008 15:52:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-24T15:52:15Z</dc:date>
    <item>
      <title>Creating Excel sheet set with ole2_object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-excel-sheet-set-with-ole2-object/m-p/4535084#M1071659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am creating an excel sheet via ole2_object and I have this problem: I insert a bitmap in the sheet, and now I want to set an Hyperlink on this image, but I cannot find the method to call. Can anybody help me?&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;Gabriele&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 10:26:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-excel-sheet-set-with-ole2-object/m-p/4535084#M1071659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T10:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Excel sheet set with ole2_object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-excel-sheet-set-with-ole2-object/m-p/4535085#M1071660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/204d1bb8-489d-2910-d0b5-cdddb3227820" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/204d1bb8-489d-2910-d0b5-cdddb3227820&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 14:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-excel-sheet-set-with-ole2-object/m-p/4535085#M1071660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T14:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Excel sheet set with ole2_object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-excel-sheet-set-with-ole2-object/m-p/4535086#M1071661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks it will be very helpful, but there are no reference to embed link; &lt;/P&gt;&lt;P&gt;I solved by myself "translating" perl call to hyperlink method I found googleing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM here_we_go .&lt;/P&gt;&lt;P&gt;  " ole2object for links in the sheet&lt;/P&gt;&lt;P&gt;  DATA h_link TYPE ole2_object.&lt;/P&gt;&lt;P&gt;  " set cell coordinates&lt;/P&gt;&lt;P&gt;  CALL METHOD OF excel 'RANGE' = cell EXPORTING #1 = 'E20'.&lt;/P&gt;&lt;P&gt;  SET PROPERTY OF cell 'VALUE' = 'google'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD OF sheet 'HYPERLINKS' = h_link.&lt;/P&gt;&lt;P&gt;  " sheet is the ole2_object representing the sheet&lt;/P&gt;&lt;P&gt;  CALL METHOD OF h_link 'ADD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      #1 = cell&lt;/P&gt;&lt;P&gt;      #2 = 'http://www.google.com'.&lt;/P&gt;&lt;P&gt;  FREE OBJECT cell.&lt;/P&gt;&lt;P&gt;  FREE OBJECT h_links.&lt;/P&gt;&lt;P&gt;ENDFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this could help.&lt;/P&gt;&lt;P&gt;Gabriele&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 15:52:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-excel-sheet-set-with-ole2-object/m-p/4535086#M1071661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T15:52:15Z</dc:date>
    </item>
  </channel>
</rss>

