<?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: Sapscript -  error in special characters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303103#M159123</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Linda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A small correction in Sumit's reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To display &amp;lt; sign use &amp;amp;lt;&lt;/P&gt;&lt;P&gt;To display &amp;gt; sign use &amp;amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Riyaz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 May 2006 05:08:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-12T05:08:06Z</dc:date>
    <item>
      <title>Sapscript -  error in special characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303099#M159119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a workflow task with the description which ends up getting sent out via email.&lt;/P&gt;&lt;P&gt;I am entering the following in the description line.&lt;/P&gt;&lt;P&gt;&amp;lt;a href=http://www.msn.com&amp;gt; MSN &amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;What is occurring in the output is that the &amp;#147;&amp;lt;&amp;#148; is being translated to &amp;#147;&amp;amp;#060:&amp;#148;&lt;/P&gt;&lt;P&gt;According to what I can find the &amp;#147;&amp;lt;&amp;#148; and the &amp;#147;&amp;amp;&amp;#148; are special characters. We are able to get around the &amp;#147;&amp;amp;&amp;#148; by doing the following &amp;#147;&amp;lt;(&amp;gt;&amp;amp;&amp;lt;)&amp;gt;&amp;#148;, but I cannot seem to figure out what the trick is for the &amp;#147;&amp;lt;&amp;#148;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2006 23:14:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303099#M159119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-11T23:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Sapscript -  error in special characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303100#M159120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi linda&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use LT in place of &amp;lt; it will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Bhutani&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Ps reward pts if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2006 04:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303100#M159120</guid>
      <dc:creator>sbhutani1</dc:creator>
      <dc:date>2006-05-12T04:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Sapscript -  error in special characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303101#M159121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi !&lt;/P&gt;&lt;P&gt;You could trie to mark this line as a "raw line" / marked as ( . Then SapScript does no formating in this line.&lt;/P&gt;&lt;P&gt;Here's some of the SAP-Help infomtation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(   Raw line                                                           &lt;/P&gt;&lt;P&gt;    The subsequent editor line is not interpreted by the SAPscript     &lt;/P&gt;&lt;P&gt;    composer during output formatting. This means that character       &lt;/P&gt;&lt;P&gt;    formats, symbols, tab characters, masking characters, or           &lt;/P&gt;&lt;P&gt;    hypertext links which may be contained in this line are not        &lt;/P&gt;&lt;P&gt;    evaluated and are therefore passed unchanged to the output         &lt;/P&gt;&lt;P&gt;    device. The text contained in this line is also appended           &lt;/P&gt;&lt;P&gt;    directly to the character of the preceding text line which was     &lt;/P&gt;&lt;P&gt;    output last. If this is not required, there must be at least one   &lt;/P&gt;&lt;P&gt;    blank at the beginning of the extended line.                       &lt;/P&gt;&lt;P&gt;/(  Like raw line                                                      &lt;/P&gt;&lt;P&gt;    But the subsequent text is placed in a new line during output      &lt;/P&gt;&lt;P&gt;    formatting.                &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Rainer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some points would be nice if that helped a bit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2006 05:03:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303101#M159121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-12T05:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Sapscript -  error in special characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303102#M159122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to find out whether that character set support to ur &lt;/P&gt;&lt;P&gt;SAP or not if not try to upload font.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To upload font first locate ur file for that font in this case VERDANA, &lt;/P&gt;&lt;P&gt;normally u will find this file in C:\windows\font  copy that file from there in &lt;/P&gt;&lt;P&gt;some other directory. then goto transaction code SE73 give ur font name &lt;/P&gt;&lt;P&gt;in SAP starting with Z and give ur font file path.&lt;/P&gt;&lt;P&gt; True  Type-Font installiern&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Goto window editor-&amp;gt; insert-&amp;gt;Characters-&amp;gt;DisplayableCharacters &amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Then choose character&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2006 05:04:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303102#M159122</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-05-12T05:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sapscript -  error in special characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303103#M159123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Linda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A small correction in Sumit's reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To display &amp;lt; sign use &amp;amp;lt;&lt;/P&gt;&lt;P&gt;To display &amp;gt; sign use &amp;amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Riyaz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2006 05:08:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303103#M159123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-12T05:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Sapscript -  error in special characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303104#M159124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, but it didn't work for us.  Any other suggestions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2006 20:11:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-error-in-special-characters/m-p/1303104#M159124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-12T20:11:35Z</dc:date>
    </item>
  </channel>
</rss>

