<?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 Fetching long string from excel sheet. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-long-string-from-excel-sheet/m-p/5695117#M1293908</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;I wish to fetch a text from an excl sheet that is very long. I used FM "TEXT_CONVERT_XLS_TO_SAP"&lt;/P&gt;&lt;P&gt;but it fetches only 256 characters of that text into the internal table.&lt;/P&gt;&lt;P&gt;I want all the text to be copied into internal table filed. I used string type and also edidd-sdata (1000 char). But that wont work as the FM itself isnt fetching all the text.&lt;/P&gt;&lt;P&gt;Please suggest some solution except to change the FM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards!&lt;/P&gt;&lt;P&gt;Sumit Nene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Jun 2009 03:33:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-01T03:33:09Z</dc:date>
    <item>
      <title>Fetching long string from excel sheet.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-long-string-from-excel-sheet/m-p/5695117#M1293908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;I wish to fetch a text from an excl sheet that is very long. I used FM "TEXT_CONVERT_XLS_TO_SAP"&lt;/P&gt;&lt;P&gt;but it fetches only 256 characters of that text into the internal table.&lt;/P&gt;&lt;P&gt;I want all the text to be copied into internal table filed. I used string type and also edidd-sdata (1000 char). But that wont work as the FM itself isnt fetching all the text.&lt;/P&gt;&lt;P&gt;Please suggest some solution except to change the FM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards!&lt;/P&gt;&lt;P&gt;Sumit Nene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 03:33:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-long-string-from-excel-sheet/m-p/5695117#M1293908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T03:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching long string from excel sheet.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-long-string-from-excel-sheet/m-p/5695118#M1293909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Sumit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried &lt;STRONG&gt;FM GUI_UPLOAD&lt;/STRONG&gt; ? Hope will help you to solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 03:39:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-long-string-from-excel-sheet/m-p/5695118#M1293909</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-06-01T03:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching long string from excel sheet.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-long-string-from-excel-sheet/m-p/5695119#M1293910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The FM &lt;STRONG&gt;TEXT_CONVERT_XLS_TO_SAP&lt;/STRONG&gt;  use internaly a filed with maximum length 256 to read cells fromo XLS for that reason you get only 256 characters. To correct that split the long excel cell to more cells or try to download as text file and to upload it them into sap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 07:56:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-long-string-from-excel-sheet/m-p/5695119#M1293910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T07:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching long string from excel sheet.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-long-string-from-excel-sheet/m-p/5695120#M1293911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;problem solved.&lt;/P&gt;&lt;P&gt;fm ALSM_EXCEL_TO_INTERNAL_TABLE doesnt work here as maximum length of field it takes is 50 chars and for TEXT_CONVERT_XLS_TO_SAP it takes 256 chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used gui_upload fm which takes text of any length but had to use a tab delimited file..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all for your suggestions.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Sumit Nene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 07:47:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-long-string-from-excel-sheet/m-p/5695120#M1293911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T07:47:37Z</dc:date>
    </item>
  </channel>
</rss>

