<?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 character string and byte string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471422#M555665</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi......&lt;/P&gt;&lt;P&gt;what is character string and byte string?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jul 2007 06:35:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-06T06:35:54Z</dc:date>
    <item>
      <title>character string and byte string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471422#M555665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi......&lt;/P&gt;&lt;P&gt;what is character string and byte string?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 06:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471422#M555665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T06:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: character string and byte string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471423#M555666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soumya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP contains a series of statements for processing character fields of the types c, d, n t and string. If you use flat structures or byte strings at operand positions of these statements before Release 6.10, then they are treated as character strings, that means, an implicit casting is carried out. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since as of Release 6.10 an explicit byte string processing is possible, the statements: FIND, REPLACE, SHIFT, CONCATENATE and SPLIT, which support byte- and character string processing, have the optional addition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... IN {BYTE|CHARACTER} MODE ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This addition specifies which processing type is carried out. If the addition is not specified, string processing is performed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statements: TRANSLATE, CONVERT TEXT, OVERLAY and CONDENSE are only capable of character string processing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should no longer use these obsolete statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since release 6.10, ABAP has offered the IN BYTE MODE addition for the statements CONCATENATE, FIND, REPLACE, SHIFTand SPLIT. It allows operands to be processed byte by byte. The functions of these statements remain the same as when they are used for character strings, the only difference being that in this case byte-type data objects (data type x and xstring)are being processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Single Bit Processing in Hexadecimal Fields&lt;/P&gt;&lt;P&gt;In a hexadecimal field (type x), you can process the individual bits. ABAP interprets the contents of hex fields byte by byte. For example, a hexadecimal field of length n is n bytes long and has a display length in ABAP of 2xn. The decimal values 0-255 are represented in hexadecimal by the characters '00' to 'FF'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this links&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3516358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3516358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/4d/47dfb6f48511d195200000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/4d/47dfb6f48511d195200000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpfull answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 06:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471423#M555666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T06:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: character string and byte string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471424#M555667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Byte-type data objects contain byte strings (or byte sequences) and always have the byte-type data type &amp;lt;b&amp;gt;x&amp;lt;/b&amp;gt; or &amp;lt;b&amp;gt;xstring&amp;lt;/b&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Character-type data objects contains character strings (or strings). A character-type data object has either a character-type data type &amp;lt;b&amp;gt;c, d, n, t&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;string&amp;lt;/b&amp;gt; or it is a structure with purely character-type components.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 06:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471424#M555667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T06:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: character string and byte string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471425#M555668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi......&lt;/P&gt;&lt;P&gt;is it byte or binary?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 06:44:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471425#M555668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T06:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: character string and byte string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471426#M555669</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;It is byte only &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 07:00:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-and-byte-string/m-p/2471426#M555669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T07:00:21Z</dc:date>
    </item>
  </channel>
</rss>

