<?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 Append text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-text/m-p/4185369#M1000464</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;We have a scenario where we have a text object for purchase requisition text id B01 and text object EBANH. We want that this text should editable to limited exyent e.g. the conents of the text should be non editable but the new text can be appended into the object. Once the PR is saved the text object with the new txt should become non editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any functionality by which we can just append to the text field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jul 2008 09:39:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-17T09:39:39Z</dc:date>
    <item>
      <title>Append text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-text/m-p/4185369#M1000464</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;We have a scenario where we have a text object for purchase requisition text id B01 and text object EBANH. We want that this text should editable to limited exyent e.g. the conents of the text should be non editable but the new text can be appended into the object. Once the PR is saved the text object with the new txt should become non editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any functionality by which we can just append to the text field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 09:39:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-text/m-p/4185369#M1000464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T09:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Append text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-text/m-p/4185370#M1000465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought this was a configurable field.  However, when I checked in the IMG, I couldn't find it.   Have you tried looking at EXIT_SAPMM06E_022?   It checks to see if texts exist.   I'm not sure it will be much help.  But it might give you a start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 11:17:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-text/m-p/4185370#M1000465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T11:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Append text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-text/m-p/4185371#M1000466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the function module READ_TEXT to get the previous  text.&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;client                  = sy-mandt&lt;/P&gt;&lt;P&gt;  id                      = l_c_id_zl50&lt;/P&gt;&lt;P&gt; language                = sy-langu&lt;/P&gt;&lt;P&gt; name                    = l_name&lt;/P&gt;&lt;P&gt;object                  = l_c_object&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;lines                   = l_i_tline&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;not_found               = 4&lt;/P&gt;&lt;P&gt;object                  = 5&lt;/P&gt;&lt;P&gt;reference_check         = 6&lt;/P&gt;&lt;P&gt;wrong_access_to_archive = 7&lt;/P&gt;&lt;P&gt;OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use the function module SAVE_TEXT to update the new text .&lt;/P&gt;&lt;P&gt;Append the new to itab L_I_LINE&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'SAVE_TEXT'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     client          = sy-mandt&lt;/P&gt;&lt;P&gt;     header          = l_wa_hea&lt;/P&gt;&lt;P&gt;     savemode_direct = 'X'&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;     lines           = l_i_line&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 11:32:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-text/m-p/4185371#M1000466</guid>
      <dc:creator>Subhankar</dc:creator>
      <dc:date>2008-07-17T11:32:22Z</dc:date>
    </item>
  </channel>
</rss>

