<?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: Problem in getting EXCEL data using I_OI_SPREADSHEET in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-getting-excel-data-using-i-oi-spreadsheet/m-p/1496477#M230484</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might be able to use the SELECT_ALL method of I_OI_DOCUMENT_PROCESS.  This is will select all cells on the active worksheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After SELECT_ALL, use GET_SELECTION method of I_OI_SPREADSHEET.  This will get the positions of the selected data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last step is to use INSERT_RANGE_DIM to insert a new range with the parameters passed back from GET_SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There should now be a range of the data on the spreadsheet.  Some of the table contents may have empty rows or columns.  You will have to check after GET_RANGES_DATA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Aug 2006 13:32:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-14T13:32:24Z</dc:date>
    <item>
      <title>Problem in getting EXCEL data using I_OI_SPREADSHEET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-getting-excel-data-using-i-oi-spreadsheet/m-p/1496476#M230483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to read data from Excel document having multiple worksheets. I am successful in getting all worksheets in the excel using the method spreadsheet-&amp;gt;select_sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I face problems while using spreadsheet_get_ranges_data. I dont have any range to select from the worksheets. When my program executes contents internal table which is importing paramater from get_ranges_data method is not getting me data from EXCEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please give me hint or solution to solve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;P&gt;nagendrakurapati@gmail.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 05:22:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-getting-excel-data-using-i-oi-spreadsheet/m-p/1496476#M230483</guid>
      <dc:creator>nkr1shna</dc:creator>
      <dc:date>2006-08-14T05:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in getting EXCEL data using I_OI_SPREADSHEET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-getting-excel-data-using-i-oi-spreadsheet/m-p/1496477#M230484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might be able to use the SELECT_ALL method of I_OI_DOCUMENT_PROCESS.  This is will select all cells on the active worksheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After SELECT_ALL, use GET_SELECTION method of I_OI_SPREADSHEET.  This will get the positions of the selected data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last step is to use INSERT_RANGE_DIM to insert a new range with the parameters passed back from GET_SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There should now be a range of the data on the spreadsheet.  Some of the table contents may have empty rows or columns.  You will have to check after GET_RANGES_DATA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 13:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-getting-excel-data-using-i-oi-spreadsheet/m-p/1496477#M230484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T13:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in getting EXCEL data using I_OI_SPREADSHEET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-getting-excel-data-using-i-oi-spreadsheet/m-p/1496478#M230485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Norman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response. But the solution is not really working for my case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step1: call class method spreadsheet-&amp;gt;select_sheet&lt;/P&gt;&lt;P&gt;Step2: call class method spreadsheet-&amp;gt;get_active_sheet&lt;/P&gt;&lt;P&gt;Step3: call class method i_oi_document_proxy-&amp;gt;select_all&lt;/P&gt;&lt;P&gt;Step4: call class method spreadsheet-&amp;gt;get_selection&lt;/P&gt;&lt;P&gt;Step5: Call class method spreadsheet-&amp;gt;insert_range_dim&lt;/P&gt;&lt;P&gt;        passing parameters selected from step 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is parameters (top,left,rows,columns) values supplied in step 3 is not giving me correct rows,columns that is in my EXCEL worksheet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 3 rows and 3 columns, but I get 1 row and 1 column and 26 as top. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know whether I am doing anything wrong in my calls to class?!.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Nagendra Krishna&lt;/P&gt;&lt;P&gt;nagendrakurapati@gmail.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2006 04:16:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-getting-excel-data-using-i-oi-spreadsheet/m-p/1496478#M230485</guid>
      <dc:creator>nkr1shna</dc:creator>
      <dc:date>2006-08-16T04:16:11Z</dc:date>
    </item>
  </channel>
</rss>

