<?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 in Uploading Excel Data ! - Urgent in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-uploading-excel-data-urgent/m-p/2963569#M699232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am uploading excel data using FM 'TEXT_CONVERT_XLS_TO_SAP' , its directly convert data and store in internal table same as in excel sheet(row , column wise).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is , one of the column having description more then 500 characters. so while uploding excel to itab its truncating the text and only uploding 255 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way , so that i can upload more then 500 characters long text. Also i have tried 'ALSM_EXCEL_TO_INTERNAL_TABLE' FM , it was also not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help me , its Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Oct 2007 13:32:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-23T13:32:03Z</dc:date>
    <item>
      <title>Problem in Uploading Excel Data ! - Urgent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-uploading-excel-data-urgent/m-p/2963569#M699232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am uploading excel data using FM 'TEXT_CONVERT_XLS_TO_SAP' , its directly convert data and store in internal table same as in excel sheet(row , column wise).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is , one of the column having description more then 500 characters. so while uploding excel to itab its truncating the text and only uploding 255 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way , so that i can upload more then 500 characters long text. Also i have tried 'ALSM_EXCEL_TO_INTERNAL_TABLE' FM , it was also not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help me , its Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 13:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-uploading-excel-data-urgent/m-p/2963569#M699232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T13:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Uploading Excel Data ! - Urgent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-uploading-excel-data-urgent/m-p/2963570#M699233</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;Please use FM 'GUI_UPLOAD'.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
types: begin of ttab,
       rec(1000) type c,
       end of ttab.
 
types: begin of tdat,
       fld1(10) type c,
       fld2(10) type c,
       fld3(10) type c,
       end of tdat.
 
data: itab type table of ttab with header line.
data: idat type table of tdat with header line.
 
data: file_str type string.
 
parameters: p_file type localfile.
 
at selection-screen on value-request for p_file.
  call function 'KD_GET_FILENAME_ON_F4'
       exporting
            static    = 'X'
       changing
            file_name = p_file.
 
start-of-selection.
 
  file_str = p_file.
 
  call function 'GUI_UPLOAD'
       exporting
            filename                = file_str
            filetype                = 'ASC'
       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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 04:41:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-uploading-excel-data-urgent/m-p/2963570#M699233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T04:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Uploading Excel Data ! - Urgent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-uploading-excel-data-urgent/m-p/2963571#M699234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply , but its not working with GUI_UPLOAD FM , i am not able to upload data using this FM , Its uploading garbage from excel file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you suggest some other thing !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 09:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-uploading-excel-data-urgent/m-p/2963571#M699234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T09:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Uploading Excel Data ! - Urgent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-uploading-excel-data-urgent/m-p/2963572#M699235</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;Open the Excel File&lt;/P&gt;&lt;P&gt;Click SAVE AS&lt;/P&gt;&lt;P&gt;in the SAVES AS TYPE. select "Text (Tab Delimited).&lt;/P&gt;&lt;P&gt;Save the file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Upload the text file using GUI_UPLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 09:10:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-uploading-excel-data-urgent/m-p/2963572#M699235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T09:10:34Z</dc:date>
    </item>
  </channel>
</rss>

