<?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 ABAP - OLE objects in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-ole-objects/m-p/3619720#M872015</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used OLE objects to move data from internal table to XL file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this how to see what are all the parameters that can be set to this OLE object ?&lt;/P&gt;&lt;P&gt; eg.&lt;/P&gt;&lt;P&gt; To make the column heading bold , what parameter i have  &lt;/P&gt;&lt;P&gt; to set to the method in that object ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help regarding this .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Mar 2008 06:49:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-28T06:49:43Z</dc:date>
    <item>
      <title>ABAP - OLE objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-ole-objects/m-p/3619720#M872015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used OLE objects to move data from internal table to XL file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this how to see what are all the parameters that can be set to this OLE object ?&lt;/P&gt;&lt;P&gt; eg.&lt;/P&gt;&lt;P&gt; To make the column heading bold , what parameter i have  &lt;/P&gt;&lt;P&gt; to set to the method in that object ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help regarding this .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 06:49:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-ole-objects/m-p/3619720#M872015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T06:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP - OLE objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-ole-objects/m-p/3619721#M872016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use the OLE-specific include OLE2INCL in the ABAP program.&lt;/P&gt;&lt;P&gt;Procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To define the program data and OLE objects required, enter these statements in the declaration section of the ABAP program OLECLIENT:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report oleclient. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: kna1, brfckna1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: kunnr like kna1-kunnr default   '1'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table customer_data with structure of BRFCKNA1 &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of customer_data occurs 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include structure brfckna1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: end of customer_data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OLE-specific include file &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include ole2incl.       " OLE-specific include file &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Define OLE objects of type OLE_OBJEKT &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: excel type ole2_object.         " EXCEL object &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: books type ole2_object.         " collection of books &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: book type ole2_object.          " book &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: cell type ole2_object.          " cell &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Loop counter: Start value ---&amp;gt;        1st output line in EXCEL table &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i type i value '4'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To start EXCEL and initialize the OLE objects, create an object excel of class EXCEL.APPLICATION and call the necessary methods of OLE objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below the declaration section, enter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create object excel 'EXCEL.APPLICATION'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method of excel 'WORKBOOKS' = books. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method of books 'ADD' = book. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;sowjanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 07:23:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-ole-objects/m-p/3619721#M872016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T07:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP - OLE objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-ole-objects/m-p/3619722#M872017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest you to use DOI for better performance. and also easy to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below link for Office Integration using the Spreadsheet Interface&lt;/P&gt;&lt;P&gt;i_oi_spreadsheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCIOFFI/BCCIOFFI.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCIOFFI/BCCIOFFI.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below Demo programs for information on DOI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPRDEMO_ACTIVEX_INTEGRATION Demonstration of ActiveX document integration&lt;/P&gt;&lt;P&gt;SAPRDEMO_DOI_BDS Demonstration for Using BDS In Office Integration&lt;/P&gt;&lt;P&gt;SAPRDEMO_ESUITE_SPREADSHEET Demonstration for eSuite Spreadsheet Integration&lt;/P&gt;&lt;P&gt;SAPRDEMO_ESUITE_WORDPROCESSOR Demonstration Program for eSuite Word Processor Integration&lt;/P&gt;&lt;P&gt;SAPRDEMO_FORM_INTERFACE Demonstration for Form Interface&lt;/P&gt;&lt;P&gt;SAPRDEMO_MAILMERGE_INTERFACE Demonstration for Mail Merge Interface&lt;/P&gt;&lt;P&gt;SAPRDEMO_MS_DEMO Program SAPRDEMO_MS_DEMO&lt;/P&gt;&lt;P&gt;SAPRDEMO_PIVOTINTERFACE Demonstration for Spreadsheet Interface&lt;/P&gt;&lt;P&gt;SAPRDEMO_SPREADSHEET_INTERFACE Demonstration for Spreadsheet Interface&lt;/P&gt;&lt;P&gt;SAPRDEMO_TABLES_IN_EXCEL Demonstration for Spreadsheet Interface&lt;/P&gt;&lt;P&gt;SAPRDEMO_WORD_NOTEPAD Demonstration for Spreadsheet Interface&lt;/P&gt;&lt;P&gt;SAPRDEMODOCUMENTCONTAINER Demo for OLE container control&lt;/P&gt;&lt;P&gt;SAPRDEMODOCUMENTCONTAINER2 Demonstration for OLE Container Control (Optimized)&lt;/P&gt;&lt;P&gt;SAPRDEMOEXCELINTEGRATION Demo for Excel97 integration&lt;/P&gt;&lt;P&gt;SAPRDEMOEXCELINTEGRATION2 Demonstration for Excel 97 Integration (Optimized)&lt;/P&gt;&lt;P&gt;SAPRDEMOLOTUS123INTEGRATION Demo for Lotus 1-2-3 integration (from Release 9)&lt;/P&gt;&lt;P&gt;SAPRDEMOOFFICEINTEGRATION Demo for Office integration&lt;/P&gt;&lt;P&gt;SAPRDEMORTFPROCESSING Demo for RTF-based word processing using Desktop Office Integratio&lt;/P&gt;&lt;P&gt;SAPRDEMOVIEWING Demonstration for Viewing Interface&lt;/P&gt;&lt;P&gt;SAPRDEMOVISIO50INTEGRATION Demonstration for Visio 5.0 Integration&lt;/P&gt;&lt;P&gt;SAPRDEMOWORD97INTEGRATION Demonstration for Word97 integration&lt;/P&gt;&lt;P&gt;SAPRDEMOWORDPROINTEGRATION Demonstration of WordPro98 integration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check the below links for more information on Desktop Office Integration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP Object Oriented SpreadSheet with "Unlimited" Power&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/abap-object-oriented-spreadsheet-with-unlimited-power.htm" target="test_blank"&gt;http://www.sap-img.com/abap/abap-object-oriented-spreadsheet-with-unlimited-power.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to Create Pivot Table in Excel using Desktop Office Integration &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/how-to-create-pivot-table-in-excel-using-desktop-office-integration.htm" target="test_blank"&gt;http://www.sap-img.com/abap/how-to-create-pivot-table-in-excel-using-desktop-office-integration.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Balaji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 08:22:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-ole-objects/m-p/3619722#M872017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T08:22:45Z</dc:date>
    </item>
  </channel>
</rss>

