<?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 text_symbol_replace? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbol-replace/m-p/5158867#M1194995</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;I am redaing the text using READ_TEXT FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp; also using FM 'TEXT_SYMBOL_REPLACE' but the values are not populating only plain &lt;/P&gt;&lt;P&gt;text is getting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one tell m,e what is wronge?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by debugging also i am unable to find plz let me know proper solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Oorvi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Feb 2009 14:38:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-17T14:38:34Z</dc:date>
    <item>
      <title>text_symbol_replace?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbol-replace/m-p/5158867#M1194995</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;I am redaing the text using READ_TEXT FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp; also using FM 'TEXT_SYMBOL_REPLACE' but the values are not populating only plain &lt;/P&gt;&lt;P&gt;text is getting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one tell m,e what is wronge?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by debugging also i am unable to find plz let me know proper solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Oorvi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2009 14:38:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbol-replace/m-p/5158867#M1194995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-17T14:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: text_symbol_replace?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbol-replace/m-p/5158868#M1194996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any answer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2009 15:02:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbol-replace/m-p/5158868#M1194996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-17T15:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: text_symbol_replace?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbol-replace/m-p/5158869#M1194997</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;are you passing correct parameters those FM's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for Read_Text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'READ_TEXT'
      EXPORTING
        id                      = 'LTQM'   "Mandatory
        language                = SY-LANGU    "Mandatory
        name                    = v_name  "Mandatory unique name of your text
        object                  = 'QMEL'    "Mandatory
      TABLES
        lines                   = t_lines
      EXCEPTIONS
        id                      = 1
        language                = 2
        name                    = 3
        not_found               = 4
        object                  = 5
        reference_check         = 6
        wrong_access_to_archive = 7
        OTHERS                  = 8.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case if you are not getting any values in &lt;STRONG&gt;t_lines&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;then check with the database table &lt;STRONG&gt;STXH&lt;/STRONG&gt; with the fields &lt;/P&gt;&lt;P&gt;TDOBJECT&lt;/P&gt;&lt;P&gt;TDNAME&lt;/P&gt;&lt;P&gt;TDID&lt;/P&gt;&lt;P&gt;TDSPRAS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you will get an idea where is the problem in your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2009 15:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbol-replace/m-p/5158869#M1194997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-17T15:31:59Z</dc:date>
    </item>
  </channel>
</rss>

