<?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 what is ole objects. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504885#M233417</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I want to know what is ole objects in sap.&lt;/P&gt;&lt;P&gt;I want to populate graphs in excel using ole objects..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help..this is very urgent..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Aug 2006 05:25:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-09T05:25:02Z</dc:date>
    <item>
      <title>what is ole objects.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504885#M233417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I want to know what is ole objects in sap.&lt;/P&gt;&lt;P&gt;I want to populate graphs in excel using ole objects..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help..this is very urgent..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 05:25:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504885#M233417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T05:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: what is ole objects.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504886#M233418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;copy and  paste...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZNEGI23                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZNEGI23    .&lt;/P&gt;&lt;P&gt;parameters: p_fname like RLGRAP-FILENAME&lt;/P&gt;&lt;P&gt;default 'C:\temp\testNN.xls'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: fname like p_fname,&lt;/P&gt;&lt;P&gt;kn like sy-repid.&lt;/P&gt;&lt;P&gt;data: cnt type i value 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: sheetname(10) value 'TEST ',c_row type i,&lt;/P&gt;&lt;P&gt;scnt type i,&lt;/P&gt;&lt;P&gt;val(20), wb(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_exvis as checkbox default 'X',&lt;/P&gt;&lt;P&gt;p_workbk(2) type p default '01',&lt;/P&gt;&lt;P&gt;p_wsheet(2) type p default '01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: OK TYPE I VALUE 0.&lt;/P&gt;&lt;P&gt;INCLUDE OLE2INCL.&lt;/P&gt;&lt;P&gt;DATA: EXCEL TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;WORKBOOK TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;SHEET TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;CELL TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;CELL1 TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;COLUMN TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;RANGE TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;BORDERS TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;button TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;int TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;FONT TYPE OLE2_OBJECT,&lt;/P&gt;&lt;P&gt;ROW TYPE OLE2_OBJECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: application type ole2_object,&lt;/P&gt;&lt;P&gt;book type ole2_object,&lt;/P&gt;&lt;P&gt;books type ole2_object.&lt;/P&gt;&lt;P&gt;data: ole_book TYPE ole2_object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do p_workbk times.&lt;/P&gt;&lt;P&gt;move p_fname to fname.&lt;/P&gt;&lt;P&gt;unpack sy-index to wb.&lt;/P&gt;&lt;P&gt;replace 'NN' with wb into fname.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;perform create_EXCEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;create sheets and save&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;perform sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform save_book.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;write: ' Done'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM create_excel *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;........ *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form create_excel.&lt;/P&gt;&lt;P&gt;CREATE OBJECT EXCEL 'EXCEL.APPLICATION'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;write: / 'No EXCEL creation possible'.&lt;/P&gt;&lt;P&gt;stop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set property of EXCEL 'DisplayAlerts' = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'WORKBOOKS' = WORKBOOK .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Put Excel in background&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;if p_exvis eq 'X'.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF EXCEL 'VISIBLE' = 1.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF EXCEL 'VISIBLE' = 0.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create worksheet&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;set property of excel 'SheetsInNewWorkbook' = 1.&lt;/P&gt;&lt;P&gt;call method of workbook 'ADD'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM save_book *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;........ *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form save_book.&lt;/P&gt;&lt;P&gt;get property of excel 'ActiveSheet' = sheet.&lt;/P&gt;&lt;P&gt;free object sheet.&lt;/P&gt;&lt;P&gt;free object workbook.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET PROPERTY OF EXCEL 'ActiveWorkbook' = WORKBOOK.&lt;/P&gt;&lt;P&gt;call method of workbook 'SAVEAS' exporting #1 = p_fname #2 = 1.&lt;/P&gt;&lt;P&gt;call method of workbook 'CLOSE'.&lt;/P&gt;&lt;P&gt;call method of excel 'QUIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;free object sheet.&lt;/P&gt;&lt;P&gt;free object workbook.&lt;/P&gt;&lt;P&gt;free object excel.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM sheet *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;........ *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do p_wsheet times.&lt;/P&gt;&lt;P&gt;unpack sy-index to sheetname+5(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-index gt 1.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'WORKSHEETS' = sheet.&lt;/P&gt;&lt;P&gt;call method of sheet 'ADD'.&lt;/P&gt;&lt;P&gt;free object sheet.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;scnt = sy-index.&lt;/P&gt;&lt;P&gt;call method of excel 'WORKSHEETS' = SHEET EXPORTING #1 = scnt.&lt;/P&gt;&lt;P&gt;call method of sheet 'ACTIVATE'.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF SHEET 'NAME' = sheetname.&lt;/P&gt;&lt;P&gt;free object sheet. "OK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform fill_sheet.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'Columns' = COLUMN.&lt;/P&gt;&lt;P&gt;CALL METHOD OF COLUMN 'Autofit'.&lt;/P&gt;&lt;P&gt;free object COLUMN.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call method of sheet 'BUTTON' = button.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call method of button 'ADD'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;set property of button 'fmButtonStyle' = 0.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;exporting #1 = '96.75' #2 = '372' #3 = '123.75' #4 = '12'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;set property of button 'Characters' = 'ButtonTest'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;free object button.&lt;/P&gt;&lt;P&gt;free object font.&lt;/P&gt;&lt;P&gt;free object int.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;free object: cell1.&lt;/P&gt;&lt;P&gt;free object range.&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;P&gt;free object: column, row.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;free object font.&lt;/P&gt;&lt;P&gt;free object int.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;free object cell1.&lt;/P&gt;&lt;P&gt;free object range.&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;P&gt;free object column.&lt;/P&gt;&lt;P&gt;free object row.&lt;/P&gt;&lt;P&gt;free object sheet.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM border *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;........ *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;--&amp;gt; we *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form border using we.&lt;/P&gt;&lt;P&gt;*left&lt;/P&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '1'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '1'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we. "4=max&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;right&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '2'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '2'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we.&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;top&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '3'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '3'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we.&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;bottom&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '4'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '4'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;set property of borders 'ColorIndex' = 'xlAutomatic'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM border2 *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;........ *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;--&amp;gt; we *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form border2 using we.&lt;/P&gt;&lt;P&gt;*left&lt;/P&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '1'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '5'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we. "4=max&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;right&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '2'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '6'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we.&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;top&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '3'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '7'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we.&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;bottom&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '4'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '8'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;set property of borders 'ColorIndex' = 'xlAutomatic'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM border3 *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;........ *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;--&amp;gt; we *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form border3 using we.&lt;/P&gt;&lt;P&gt;*left&lt;/P&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '1'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '9'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we. "4=max&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;right&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '2'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '10'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we.&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;top&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '3'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '11'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we.&lt;/P&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;bottom&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call method of CELL 'BORDERS' = BORDERS exporting #1 = '4'.&lt;/P&gt;&lt;P&gt;set property of borders 'LineStyle' = '12'.&lt;/P&gt;&lt;P&gt;set property of borders 'WEIGHT' = we.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;set property of borders 'ColorIndex' = 'xlAutomatic'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;free object borders.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM fill_cell *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;........ *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;--&amp;gt; color *&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;--&amp;gt; pattern *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form fill_cell using color pattern.&lt;/P&gt;&lt;P&gt;call method of cell 'INTERIOR' = int.&lt;/P&gt;&lt;P&gt;set property of int 'ColorIndex' = color.&lt;/P&gt;&lt;P&gt;set property of int 'Pattern' = pattern.&lt;/P&gt;&lt;P&gt;free object int.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM font *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;........ *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;--&amp;gt; bold *&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;--&amp;gt; size *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form font using bold size.&lt;/P&gt;&lt;P&gt;call method of CELL 'FONT' = font.&lt;/P&gt;&lt;P&gt;set property of font 'BOLD' = bold.&lt;/P&gt;&lt;P&gt;set property of font 'SIZE' = size.&lt;/P&gt;&lt;P&gt;free object font.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM fill_sheet *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;........ *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form fill_sheet.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'A1'.&lt;/P&gt;&lt;P&gt;perform font using 1 '14'.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF CELL 'VALUE' = 'Counter'.&lt;/P&gt;&lt;P&gt;perform fill_cell using '15' '1'.&lt;/P&gt;&lt;P&gt;perform border using '2'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;val = 'Workbook-Count'.&lt;/P&gt;&lt;P&gt;move wb to val+16.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'B1'.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF CELL 'VALUE' = val.&lt;/P&gt;&lt;P&gt;perform fill_cell using '14' '1'.&lt;/P&gt;&lt;P&gt;perform border using '4'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;val = 'Sheet-Count'.&lt;/P&gt;&lt;P&gt;unpack sy-index to val+12.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'C1'.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF CELL 'VALUE' = val.&lt;/P&gt;&lt;P&gt;perform fill_cell using '12' '1'.&lt;/P&gt;&lt;P&gt;perform border using '4'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'E3'.&lt;/P&gt;&lt;P&gt;perform border using '1'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'E5'.&lt;/P&gt;&lt;P&gt;perform border using '2'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'E7'.&lt;/P&gt;&lt;P&gt;perform border using '3'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'E9'.&lt;/P&gt;&lt;P&gt;perform border using '4'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'F3'.&lt;/P&gt;&lt;P&gt;perform border2 using '1'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'F5'.&lt;/P&gt;&lt;P&gt;perform border2 using '2'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'F7'.&lt;/P&gt;&lt;P&gt;perform border2 using '3'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'F9'.&lt;/P&gt;&lt;P&gt;perform border2 using '4'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'G3'.&lt;/P&gt;&lt;P&gt;perform border3 using '1'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'G5'.&lt;/P&gt;&lt;P&gt;perform border3 using '2'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'G7'.&lt;/P&gt;&lt;P&gt;perform border3 using '3'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;CALL METHOD OF EXCEL 'RANGE' = CELL EXPORTING #1 = 'G9'.&lt;/P&gt;&lt;P&gt;perform border3 using '4'.&lt;/P&gt;&lt;P&gt;free object cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;val = 'ROW-Count'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do 19 times.&lt;/P&gt;&lt;P&gt;c_row = sy-index + 1.&lt;/P&gt;&lt;P&gt;unpack c_row to val+12(4).&lt;/P&gt;&lt;P&gt;CALL METHOD OF excel 'CELLS' = CELL1 EXPORTING #1 = c_row #2 = 2.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF CELL1 'VALUE' = val.&lt;/P&gt;&lt;P&gt;free object cell1.&lt;/P&gt;&lt;P&gt;CALL METHOD OF excel 'CELLS' = CELL1 EXPORTING #1 = c_row #2 = 4.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF CELL1 'VALUE' = val.&lt;/P&gt;&lt;P&gt;free object cell1.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 05:28:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504886#M233418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T05:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: what is ole objects.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504887#M233419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="537649"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Reward Points for helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 05:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504887#M233419</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-08-09T05:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: what is ole objects.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504888#M233420</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;Run the Transaction &amp;lt;b&amp;gt;OLE&amp;lt;/b&amp;gt;, and also Run the Transaction &amp;lt;b&amp;gt;DWDM&amp;lt;/b&amp;gt; to know more about OLE under &amp;lt;b&amp;gt;office integration&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;check these threads for graph in excel.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="176949"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="177332"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 05:40:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504888#M233420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T05:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: what is ole objects.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504889#M233421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;go through the below links which ll give you detail idea about the ole objects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/db/9987b9c3cf11d194ad00a0c94260a5/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/db/9987b9c3cf11d194ad00a0c94260a5/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/db/9987bcc3cf11d194ad00a0c94260a5/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/db/9987bcc3cf11d194ad00a0c94260a5/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;EXAMPLE-&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/code/archives.asp?d=3027&amp;amp;a=s&amp;amp;i=10" target="test_blank"&gt;http://sap.ittoolbox.com/code/archives.asp?d=3027&amp;amp;a=s&amp;amp;i=10&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;P&gt;MRUTYUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 05:49:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504889#M233421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T05:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: what is ole objects.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504890#M233422</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;here'S an &amp;lt;a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c1d54348-0601-0010-3e98-bd2a2dcd9e6c"&amp;gt;pdf&amp;lt;/a&amp;gt; from Serdar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Andreas Mann&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 06:34:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-ole-objects/m-p/1504890#M233422</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-08-09T06:34:47Z</dc:date>
    </item>
  </channel>
</rss>

