<?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: Special character '  in the string variable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535954#M244547</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)Declare a variable and assign the special character to that variable.&lt;/P&gt;&lt;P&gt;2)Then use the CONCATENATE option to get the value in the string variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just copy and execute this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT zztest.

&amp;lt;b&amp;gt;DATA : temp(1) VALUE ''''.&amp;lt;/b&amp;gt; Decalare your special character 

DATA : variable TYPE string.

START-OF-SELECTION.

  BREAK-POINT.

  variable = 'SDNSAP'.

  CONCATENATE temp variable temp INTO variable.



  WRITE : / variable.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The output is&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;'SDNSAP'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Aug 2006 06:02:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-02T06:02:05Z</dc:date>
    <item>
      <title>Special character '  in the string variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535951#M244544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to insert in the string veriable the special character '. How should I do it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;variable = '''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It does not work ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Wojcieh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 05:53:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535951#M244544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T05:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Special character '  in the string variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535952#M244545</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;Try as       &lt;/P&gt;&lt;P&gt;data: L_COM VALUE ''''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Naimesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 05:55:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535952#M244545</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-08-02T05:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: Special character '  in the string variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535953#M244546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, Try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A = ''''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 05:56:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535953#M244546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T05:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Special character '  in the string variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535954#M244547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)Declare a variable and assign the special character to that variable.&lt;/P&gt;&lt;P&gt;2)Then use the CONCATENATE option to get the value in the string variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just copy and execute this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT zztest.

&amp;lt;b&amp;gt;DATA : temp(1) VALUE ''''.&amp;lt;/b&amp;gt; Decalare your special character 

DATA : variable TYPE string.

START-OF-SELECTION.

  BREAK-POINT.

  variable = 'SDNSAP'.

  CONCATENATE temp variable temp INTO variable.



  WRITE : / variable.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The output is&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;'SDNSAP'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 06:02:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535954#M244547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T06:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: Special character '  in the string variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535955#M244548</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;Check this stmt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate '''' 'PRAKASH' '''' into var1.&lt;/P&gt;&lt;P&gt;write var1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 06:13:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535955#M244548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T06:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Special character '  in the string variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535956#M244549</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;Store the special variable value in text Element and then assign to variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;variable = TEXT-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click on TEXT-001 and store the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward Points &amp;amp; Mark Helpful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 06:28:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/special-character-in-the-string-variable/m-p/1535956#M244549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T06:28:44Z</dc:date>
    </item>
  </channel>
</rss>

