<?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: ABAP: SmartForm in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660807#M1867228</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Closed.&lt;/P&gt;&lt;P&gt;Thanks to all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Oct 2014 09:09:02 GMT</pubDate>
    <dc:creator>aneel_munawar</dc:creator>
    <dc:date>2014-10-29T09:09:02Z</dc:date>
    <item>
      <title>ABAP: SmartForm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660803#M1867224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Abappers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why &amp;amp; sign is converted into &amp;lt;)&amp;gt;&amp;nbsp; symbol in smartform.&lt;/P&gt;&lt;P&gt;image is attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/573205" /&gt;Regards&lt;/P&gt;&lt;P&gt;Aneel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 08:45:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660803#M1867224</guid>
      <dc:creator>aneel_munawar</dc:creator>
      <dc:date>2014-10-29T08:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP: SmartForm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660804#M1867225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;double click on the text and goto text editor and u'll see SAP inserts those symbols&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/573217" /&gt;&lt;/P&gt;&lt;P&gt;Maintain the text using text editor and there would be no problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 08:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660804#M1867225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-29T08:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP: SmartForm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660805#M1867226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because the &amp;amp;&amp;nbsp; is used to specify the content of a variable.&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;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 08:56:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660805#M1867226</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2014-10-29T08:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP: SmartForm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660806#M1867227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;because &amp;amp; is a special character, also &amp;lt; has the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you try to use this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT t_text&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;wa_text&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;REPLACE &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;lt;(&amp;gt;&amp;amp;&amp;lt;)&amp;gt;' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INTO wa_text&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdline&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDLOOP&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 08:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660806#M1867227</guid>
      <dc:creator>alessandroieva</dc:creator>
      <dc:date>2014-10-29T08:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP: SmartForm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660807#M1867228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Closed.&lt;/P&gt;&lt;P&gt;Thanks to all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 09:09:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-smartform/m-p/10660807#M1867228</guid>
      <dc:creator>aneel_munawar</dc:creator>
      <dc:date>2014-10-29T09:09:02Z</dc:date>
    </item>
  </channel>
</rss>

