<?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 Problem reading excel cell which has 1000 characters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092061#M1358949</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am reading an excel file , i have declared my internal table with fields of length 1000 characters each. But it is holding only 256 characters in a field ( where that cell has 1000 chars in excel )  in the internal table and i want all the 1000 chars to be stored in internal table . Is there any way to get all the 1000 chars in to the internal table field ? please suggest on this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;subash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Sep 2009 05:38:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-15T05:38:31Z</dc:date>
    <item>
      <title>Problem reading excel cell which has 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092061#M1358949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am reading an excel file , i have declared my internal table with fields of length 1000 characters each. But it is holding only 256 characters in a field ( where that cell has 1000 chars in excel )  in the internal table and i want all the 1000 chars to be stored in internal table . Is there any way to get all the 1000 chars in to the internal table field ? please suggest on this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;subash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 05:38:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092061#M1358949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-15T05:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading excel cell which has 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092062#M1358950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;structures can keep these long data but tables cannot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 05:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092062#M1358950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-15T05:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading excel cell which has 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092063#M1358951</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;Declare the fields of the internal table as string, since its length is not fixed,it can hold any number of characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use FM TEXT_CONVERT_XLS_TO_SAP while uploading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 06:00:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092063#M1358951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-15T06:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading excel cell which has 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092064#M1358952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello subash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of using Excel use   a text tab-delimited file for FM GUI_UPLOAD .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
filename = p_file
filetype = 'ASC'
has_field_separator = 'X'
TABLES
data_tab = itab
EXCEPTIONS
file_open_error = 1
file_read_error = 2
no_batch = 3
gui_refuse_filetransfer = 4
invalid_type = 5
no_authority = 6
unknown_error = 7
bad_data_format = 8
header_not_allowed = 9
separator_not_allowed = 10
header_too_long = 11
unknown_dp_error = 12
access_denied = 13
dp_out_of_memory = 14
disk_full = 15
dp_timeout = 16
OTHERS = 17.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 06:21:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092064#M1358952</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-09-15T06:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading excel cell which has 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092065#M1358953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi GADDAMEEDI SUBASH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What Data Type you are using while declaring the internal table.. ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest you to increase the field length of the internal table fileld which stores this string &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use String or LRAW data type.. Depends on your requirement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ilesh Nandaniya&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 06:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-excel-cell-which-has-1000-characters/m-p/6092065#M1358953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-15T06:42:37Z</dc:date>
    </item>
  </channel>
</rss>

