<?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: long text uploadin problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840783#M1473052</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved by my self with using string and using the offset i placed the long text into ID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Apr 2010 11:28:16 GMT</pubDate>
    <dc:creator>abdulgaffarmohd</dc:creator>
    <dc:date>2010-04-12T11:28:16Z</dc:date>
    <item>
      <title>long text uploadin problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840777#M1473046</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;&lt;/P&gt;&lt;P&gt;I am working with service master data upload.In that one i need to upload the LONG TEXT.&lt;/P&gt;&lt;P&gt;In Excel file i am using text wrap but using the ALSM_EXCEL_TO_INTERNAL_TABLE i am uploading &lt;/P&gt;&lt;P&gt;the data but after using this i am getting only 40char data of the long text cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does any other function module to upload the long text.&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;MOHD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 09:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840777#M1473046</guid>
      <dc:creator>abdulgaffarmohd</dc:creator>
      <dc:date>2010-03-25T09:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: long text uploadin problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840778#M1473047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try GUI_DOWNLOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lv_file type string.&lt;/P&gt;&lt;P&gt;    concatenate full_path '.xls' into lv_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    call function 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        filename                = lv_file&lt;/P&gt;&lt;P&gt;        filetype                = 'ASC'&lt;/P&gt;&lt;P&gt;        append                  = 'X'&lt;/P&gt;&lt;P&gt;        write_field_separator   = 'X'&lt;/P&gt;&lt;P&gt;        confirm_overwrite       = 'X'&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        data_tab                = gt_main ---&amp;gt; internal table &lt;/P&gt;&lt;P&gt;        fieldnames              = i_final ---&amp;gt; fieldheading in excel&lt;/P&gt;&lt;P&gt;      exceptions&lt;/P&gt;&lt;P&gt;        file_write_error        = 1&lt;/P&gt;&lt;P&gt;        no_batch                = 2&lt;/P&gt;&lt;P&gt;        gui_refuse_filetransfer = 3&lt;/P&gt;&lt;P&gt;        invalid_type            = 4&lt;/P&gt;&lt;P&gt;        no_authority            = 5&lt;/P&gt;&lt;P&gt;        unknown_error           = 6&lt;/P&gt;&lt;P&gt;        header_not_allowed      = 7&lt;/P&gt;&lt;P&gt;        separator_not_allowed   = 8&lt;/P&gt;&lt;P&gt;        filesize_not_allowed    = 9&lt;/P&gt;&lt;P&gt;        header_too_long         = 10&lt;/P&gt;&lt;P&gt;        dp_error_create         = 11&lt;/P&gt;&lt;P&gt;        dp_error_send           = 12&lt;/P&gt;&lt;P&gt;        dp_error_write          = 13&lt;/P&gt;&lt;P&gt;        unknown_dp_error        = 14&lt;/P&gt;&lt;P&gt;        access_denied           = 15&lt;/P&gt;&lt;P&gt;        dp_out_of_memory        = 16&lt;/P&gt;&lt;P&gt;        disk_full               = 17&lt;/P&gt;&lt;P&gt;        dp_timeout              = 18&lt;/P&gt;&lt;P&gt;        file_not_found          = 19&lt;/P&gt;&lt;P&gt;        dataprovider_exception  = 20&lt;/P&gt;&lt;P&gt;        control_flush_error     = 21&lt;/P&gt;&lt;P&gt;        others                  = 22.&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      write: 'Error: The records are not downloaded to the specified file'.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      write: 'The records are downloaded to the specified file in the path', lv_file color col_key.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form xl_heading .&lt;/P&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;  begin of type_final,&lt;/P&gt;&lt;P&gt;    string(50) type c,                 " String Value for Title&lt;/P&gt;&lt;P&gt;  end of type_final.&lt;/P&gt;&lt;P&gt;data: wa_final     type type_final.&lt;/P&gt;&lt;P&gt;data: i_final    type standard table of type_final.&lt;/P&gt;&lt;P&gt;  						&lt;/P&gt;&lt;P&gt; wa_final-string =   'Document Type'.&lt;/P&gt;&lt;P&gt;  append wa_final to i_final.&lt;/P&gt;&lt;P&gt;  wa_final-string =   'Document Date'.            append wa_final to i_final.&lt;/P&gt;&lt;P&gt;  wa_final-string =   'Company code'.             append wa_final to i_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vallamuthu.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 09:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840778#M1473047</guid>
      <dc:creator>vallamuthu_madheswaran2</dc:creator>
      <dc:date>2010-03-25T09:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: long text uploadin problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840779#M1473048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am taking about upload from presentation server to sap .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 10:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840779#M1473048</guid>
      <dc:creator>abdulgaffarmohd</dc:creator>
      <dc:date>2010-03-25T10:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: long text uploadin problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840780#M1473049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Convert to CSV, upload data, use SPLIT command to separate the columns.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 10:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840780#M1473049</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2010-03-25T10:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: long text uploadin problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840781#M1473050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Abdul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Are you sure&lt;/STRONG&gt; you are retreaving &lt;STRONG&gt;LONG TEXT&lt;/STRONG&gt; ,I doubt you might be retreaving &lt;STRONG&gt;SHORT TEXT&lt;/STRONG&gt; instead. Please check your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Smart Varghese&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 11:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840781#M1473050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T11:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: long text uploadin problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840782#M1473051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think Smart is  on the right track...  In some transactions, the first 40 characters of text appear on screen, then there's a button or something that navigates to the long text... and there's an indicator in the table that long texts exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, yes, one would populate the 40-characters, then use the appropriate TEXT function modules to store, update, etc., long texts, and then one must get that long-text indicator switch turned on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check and see if this is the case for the data to be loaded...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 11:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840782#M1473051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T11:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: long text uploadin problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840783#M1473052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved by my self with using string and using the offset i placed the long text into ID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 11:28:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-uploadin-problem/m-p/6840783#M1473052</guid>
      <dc:creator>abdulgaffarmohd</dc:creator>
      <dc:date>2010-04-12T11:28:16Z</dc:date>
    </item>
  </channel>
</rss>

