<?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: SAVE_TEXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2662468#M614290</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;it is simple, just follow this steps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First use the READ_TEXT function module to read the text, then the text will come in an internal table, then Append your lines to that internal table, so now the internal table will be having the text whcih is already there and your new text, then use the SAVE_TEXT function module, so that the old text under that the new test will be appear&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Aug 2007 11:40:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-20T11:40:19Z</dc:date>
    <item>
      <title>SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2662467#M614289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using SAVE_TEXT function module to insert the Text in STO(ME22N).&lt;/P&gt;&lt;P&gt;My Req is to insert the new Text in the new line, But the existing Text is &lt;/P&gt;&lt;P&gt;getting overwritten.&lt;/P&gt;&lt;P&gt;Pl find my code as follows:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thead-tdid        = 'F01'.&lt;/P&gt;&lt;P&gt;thead-tdspras   = sy-langu.&lt;/P&gt;&lt;P&gt;thead-tdobject  = 'EKPO'.&lt;/P&gt;&lt;P&gt;MOVE wg_open-vbeln TO thead-tdname.&lt;/P&gt;&lt;P&gt;MOVE wg_open-posnr&lt;EM&gt;1(5) TO thead-tdname&lt;/EM&gt;10(5).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ttab-tdformat = '/*'.&lt;/P&gt;&lt;P&gt;ttab-tdline = p_lv_comments.&lt;/P&gt;&lt;P&gt;APPEND ttab.&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          = thead&lt;/P&gt;&lt;P&gt;      insert            = 'X'&lt;/P&gt;&lt;P&gt;      savemode_direct = 'X'&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;      lines            = ttab&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;      id                = 1&lt;/P&gt;&lt;P&gt;      language      = 2&lt;/P&gt;&lt;P&gt;      name           = 3&lt;/P&gt;&lt;P&gt;      object          = 4&lt;/P&gt;&lt;P&gt;      OTHERS      = 5.&lt;/P&gt;&lt;P&gt;Is there some system constraint or Coding bug? Pl suggest some solution...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rushikesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 11:37:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2662467#M614289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T11:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2662468#M614290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;it is simple, just follow this steps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First use the READ_TEXT function module to read the text, then the text will come in an internal table, then Append your lines to that internal table, so now the internal table will be having the text whcih is already there and your new text, then use the SAVE_TEXT function module, so that the old text under that the new test will be appear&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 11:40:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2662468#M614290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T11:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2662469#M614291</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 wiil check your code without tdline it is working fine. But may be your text more than 250 characters .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards points if it is useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 12:10:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2662469#M614291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T12:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2662470#M614292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sudheer, and sorry for asking such sily question.&lt;/P&gt;&lt;P&gt;I awarded u the points..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rushikesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 12:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2662470#M614292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T12:53:25Z</dc:date>
    </item>
  </channel>
</rss>

