<?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: saving long text - problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668988#M1574926</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;again thanks for the response..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how to store 10-20lines of long text in a field of an intenal tables..because finally i need to move from internal table to gt_line ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regrds&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Feb 2011 05:20:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-10T05:20:44Z</dc:date>
    <item>
      <title>saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668981#M1574919</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;I am having a long text which has 10lines.. i need to save that long text from a file using migration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first i need to store that text in a field for of an internal table &amp;amp; then save it in a long text ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help me out in providing the soln/alternatives to fix this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. do the needful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 03:13:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668981#M1574919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T03:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668982#M1574920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;From what I know about long text in SAP is that they are stored based on ID, Object and Language. First you probabaly need to set them using tcode SE75(Change / Add New Object and ID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in your program you can use several FM that process long text.&lt;/P&gt;&lt;P&gt;My favorite is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'LANGTEXT_ONLY'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              object           = *Object&lt;/P&gt;&lt;P&gt;              object_nr      = *Object_no&lt;/P&gt;&lt;P&gt;              spras           = *language&lt;/P&gt;&lt;P&gt;              txtid              = *ID&lt;/P&gt;&lt;P&gt;              x_xaktyp      = *aktyp&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           save_mode   = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           text_history  = 'x'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           text_property = 'x'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;              ind_inv       = *line&lt;/P&gt;&lt;P&gt;              inv_exist     = *exist&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              t_inlines     = t_linetab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This FM will call longtext editor and also set the mode &lt;/P&gt;&lt;P&gt;aktyp = H =&amp;gt; create new, &lt;/P&gt;&lt;P&gt;aktyp = V =&amp;gt; change&lt;/P&gt;&lt;P&gt;aktyp = A =&amp;gt; read only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another useful FM is READ_TEXT and SAVE_TEXT. Try to experiment with it and see any documentation for detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            id              = *ID&lt;/P&gt;&lt;P&gt;            language  = *Language&lt;/P&gt;&lt;P&gt;            name        = *Name&lt;/P&gt;&lt;P&gt;            object        = *Object&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            header    = t_headltx&lt;/P&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;            lines     = t_linetab&lt;/P&gt;&lt;P&gt;          EXCEPTIONS&lt;/P&gt;&lt;P&gt;            not_found = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'SAVE_TEXT'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            header          = t_headltx&lt;/P&gt;&lt;P&gt;            savemode_direct = 'X'&lt;/P&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;            lines           = t_linetab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Hadi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 03:47:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668982#M1574920</guid>
      <dc:creator>former_member647955</dc:creator>
      <dc:date>2011-02-10T03:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668983#M1574921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the response hadi wijaya !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how to store 10lines of long text ( i mean &lt;STRONG&gt;line-by-line&lt;/STRONG&gt; in the long text ) ....snce tdline only has 132chars ....and my long text has 10lines which is more than 132 char..........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first, i need to store it in a field of an internal table ( how we can store 10lines in a field of internal table ?) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;second, i need to move that field (containing long text ) in the respective long text of a transaction...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 04:24:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668983#M1574921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T04:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668984#M1574922</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;You need to pass the the 10 lines to the Table parameter LINES of the FM SAVE_TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will notice that the table parameter LINES is of the data type tline which contains two fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each line you need to pass '*" to the field TDFORMAT of the TLINE structure and the content of the line to the field TDLINE of the TLINE structute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case you will now have ten lines of the internal table passed to the table parameter LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case your line has more than 132 characters break the line down at 132 characters and add the remaining to the next line of the internal table. The value '*' in the field TDFORMAT will ensure that there is no break in the line when you finally save.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps and search the forum for the FM SAVE_TEXT for more examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: You can pass '/' to the field TDFORMAT if you want the line to be separate from the previous line. Use '*' if you want it to be continuous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dominic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Dominic  Pappaly on Feb 10, 2011 10:11 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 04:38:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668984#M1574922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T04:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668985#M1574923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Domnic,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the response..,&lt;/P&gt;&lt;P&gt;but how to stored those tines in a field of an internal table ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also  * indicates a new line???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e.., * line1&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;line2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;line3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;line4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;line5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;line6&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;line7&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;line8&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;line9&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;line10&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can stored in TLINE ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 04:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668985#M1574923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T04:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668986#M1574924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider that you only have two lines . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gs_tline type tline,&lt;/P&gt;&lt;P&gt;           gt_tline type standard table of tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_tline-tdformat = '*' (For those cases where you want one continuos line) or '/' (for new line)&lt;/P&gt;&lt;P&gt;gs_tline-tdline = ' Your line 1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND gs_tline to gt_tline.&lt;/P&gt;&lt;P&gt;CLEAR gs_tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_tline-tdformat = '*' (For those cases where you want one continuos line) or '/' (for new line)&lt;/P&gt;&lt;P&gt;gs_tline-tdline = ' Your line 2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND gs_tline to gt_tline.&lt;/P&gt;&lt;P&gt;CLEAR gs_tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'SAVE_TEXT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              header = gs_head ( Head information contains the long text name and so on)&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              lines  = gt_tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dominic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 05:04:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668986#M1574924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T05:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668987#M1574925</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;You can append records to tline. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 05:05:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668987#M1574925</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2011-02-10T05:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668988#M1574926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;again thanks for the response..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how to store 10-20lines of long text in a field of an intenal tables..because finally i need to move from internal table to gt_line ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regrds&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 05:20:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668988#M1574926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T05:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668989#M1574927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you are talking about the first step as to how to upload the data file into SAP. For that you can use the FM GUI_UPLOAD or if you are in earlier versions WS_UPLOAD or UPLOAD.&lt;/P&gt;&lt;P&gt;You can ask the Data extractor if possible to limit it to 132 characters if possible  and use agreed special characters to differentiate in case of line breakages . For e.g use '#' to say that the line here is broken down due to space limitations and '$' could mean end of line and so on.&lt;/P&gt;&lt;P&gt;Once the FM GUI_UPLOAD is used the data will be stored in the internal table of the TABLES parameter DATA_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using your agreed special characters you can now create the long text (FM SAVE_TEXT) and use the correct formatting(TDFORMAT).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dominic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 05:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668989#M1574927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T05:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668990#M1574928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;I think you should use long text editor so when end user type the long text, it will automatically stored in tdlines.&lt;/P&gt;&lt;P&gt;I am assuming that you are using standard input/output field. Try to put a button and when it is pressed it will open long text editor. It will be more easier to store long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if you want to keep using 10 fields, probably you can limit each field to be 132 characters and then you need to have them inserted to internal table with standard syntax APPEND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hadi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 06:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668990#M1574928</guid>
      <dc:creator>former_member647955</dc:creator>
      <dc:date>2011-02-10T06:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668991#M1574929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you need all the lines in just one field of one record the internal table, then you have two choices: The field may be table-type field ( &amp;lt;field&amp;gt; TYPE TABLE OF ...) or you can concatenate all the text lines into a string separated by a special character that can be used to split the line later into a table. For both cases, the internal table will appear as 'DEEP' which may cause difficulties in interfaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 10:45:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668991#M1574929</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-02-10T10:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668992#M1574930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for providing necessary soln's&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Feb 2011 03:56:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668992#M1574930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-11T03:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: saving long text - problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668993#M1574931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks you for sharing &lt;STRONG&gt;your&lt;/STRONG&gt; solution. The community appreciates it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Feb 2011 12:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-long-text-problem/m-p/7668993#M1574931</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-02-11T12:51:06Z</dc:date>
    </item>
  </channel>
</rss>

