<?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: urgent: CHARACTER STRING(CS) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899530#M681834</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is because it's unicode compliant in 6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you can do is to create a variable and fill the values by concatenating the Hex value and the char value and then do the same operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2007 06:00:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-18T06:00:03Z</dc:date>
    <item>
      <title>urgent: CHARACTER STRING(CS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899529#M681833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all sap gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in sap4.7 they used this code and in 6.0 it is showing the error msg that part_delim must be c,d, n, t, string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF part_delim,&lt;/P&gt;&lt;P&gt;       1d(1) TYPE x  VALUE '1D',&lt;/P&gt;&lt;P&gt;       p(1) TYPE c  VALUE 'P',&lt;/P&gt;&lt;P&gt;  END OF part_delim.&lt;/P&gt;&lt;P&gt;IF rec_tab-STRING CS part_delim.&lt;/P&gt;&lt;P&gt;      start = sy-fdpos + 2.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me,&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 05:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899529#M681833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T05:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: urgent: CHARACTER STRING(CS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899530#M681834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is because it's unicode compliant in 6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you can do is to create a variable and fill the values by concatenating the Hex value and the char value and then do the same operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 06:00:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899530#M681834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T06:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: urgent: CHARACTER STRING(CS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899531#M681835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;the structure part_delim contains a X type field in it&lt;/P&gt;&lt;P&gt;hence it says that the char related commands like CS and CO can only be used with the data types C,D,T and N&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change it and use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 06:00:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899531#M681835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T06:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: urgent: CHARACTER STRING(CS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899532#M681836</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;In 6.0 type x and type c are not compatible . so u have to use the character equivalent of the hexadecimal value ... U can make use of abap_character_utilities class attributes for getting the character equivalent of the hexadecimal value...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the reply will be helpful.Reward points &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 06:01:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899532#M681836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T06:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: urgent: CHARACTER STRING(CS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899533#M681837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This line is not correct&lt;/P&gt;&lt;P&gt;1d(1) TYPE x VALUE '1D',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead try using 1d(1) TYPE c length 2 VALUE '1D',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probly den it ll work out&lt;/P&gt;&lt;P&gt;Reward points if it does&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 06:23:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899533#M681837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T06:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: urgent: CHARACTER STRING(CS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899534#M681838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nishant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx. will u pls send me code for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 06:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-character-string-cs/m-p/2899534#M681838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T06:31:15Z</dc:date>
    </item>
  </channel>
</rss>

