<?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 issue? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-issue/m-p/8135508#M1619854</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;The function module SAVE_TEXT only can handle this by passing ' '  in INSERT filed which is import parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/pt/d6/0db8ef494511d182b70000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/pt/d6/0db8ef494511d182b70000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not try below option..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can check whether there is already text there or not in STXH and STXL table. If it is having text, then&lt;/P&gt;&lt;P&gt;First use READ_TEXT, get the text into ITAB and then append your text into this ITAB and use SAVE_TEXT else append directly using SAVE_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will improve the performance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Aug 2011 13:27:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-08-24T13:27:02Z</dc:date>
    <item>
      <title>SAVE_TEXT issue?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-issue/m-p/8135506#M1619852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using SAVE_TEXT FM in my report am able to create the header text in the sales orders, fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, its NOT acting like APPENDING, its OVER WRITING, i mean, if there is already header text (say, test text line 1) for sales order 0000123456, if i try to use SAVE_TEXT FM in my report to create the header text (say, my text line 2), now, my 2nd line is over writing the line 1 for this sales order 0000123456&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. let me know how to APPEND the header text to existing text?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 13:08:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-issue/m-p/8135506#M1619852</guid>
      <dc:creator>former_member202077</dc:creator>
      <dc:date>2011-08-24T13:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT issue?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-issue/m-p/8135507#M1619853</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;SAVE_TEXT will always overwrite values. What you can do, you can first read the existing texts by using READ_TEXT fm and then append the new texts and then call the SAVE_TEXT again.&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;Rudra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 13:19:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-issue/m-p/8135507#M1619853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-24T13:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT issue?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-issue/m-p/8135508#M1619854</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;The function module SAVE_TEXT only can handle this by passing ' '  in INSERT filed which is import parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/pt/d6/0db8ef494511d182b70000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/pt/d6/0db8ef494511d182b70000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not try below option..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can check whether there is already text there or not in STXH and STXL table. If it is having text, then&lt;/P&gt;&lt;P&gt;First use READ_TEXT, get the text into ITAB and then append your text into this ITAB and use SAVE_TEXT else append directly using SAVE_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will improve the performance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 13:27:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-issue/m-p/8135508#M1619854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-24T13:27:02Z</dc:date>
    </item>
  </channel>
</rss>

