<?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 Concatenate XSTRING in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733520#M898582</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;DO you think that it's possible to concatenate Xstring?&lt;/P&gt;&lt;P&gt;If you, could you please tell me how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Karim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 May 2008 09:22:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-06T09:22:13Z</dc:date>
    <item>
      <title>Concatenate XSTRING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733520#M898582</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;DO you think that it's possible to concatenate Xstring?&lt;/P&gt;&lt;P&gt;If you, could you please tell me how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Karim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 09:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733520#M898582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T09:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate XSTRING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733521#M898583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;check this it might b helpful for U...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Processing Strings &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;String processing statements, whose arguments were all interpreted as fields of type C until now, are now divided into statements with character arguments and those with byte arguments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;String processing statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR ... WITH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONDENSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT TEXT ... INTO SORTABLE CODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OVERLAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SEARCH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE ... TO UPPER/LOWER CASE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE ... USING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The arguments of these instructions must be single fields of type C, N, D, T or STRING or structures of character-type only. There is a syntax or runtime error if arguments of a different type are passed. A subset of this function is provided with the addition IN BYTE MODE for processing byte strings &amp;amp;#8211; that is, operands of type X or XSTRING. A statement such as CONCATENATE a x b INTO c is thus no longer possible when a,b, and c are all character-type, but x is of type X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE ... CODEPAGE ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE ... NUMBER FORMAT ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above statements are not allowed in Unicode programs. Instead, you can use the new conversion classes, which are described in more detail in Converting Data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Comparison operators for string processing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CO &lt;/P&gt;&lt;P&gt;CN &lt;/P&gt;&lt;P&gt;CA &lt;/P&gt;&lt;P&gt;NA &lt;/P&gt;&lt;P&gt;CS &lt;/P&gt;&lt;P&gt;NS &lt;/P&gt;&lt;P&gt;CP &lt;/P&gt;&lt;P&gt;NP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As with the string processing statements, these operators need single fields of type C, N, D, T or STRING as arguments and again structures of character-type only are allowed. Special compare operators defined with the prefix BYTE- are provided for byte strings. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functions for string processing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function STRLEN only works with character-type fields and returns the length in characters. The new function XSTRLEN finds the length of byte strings. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Until now, function CHARLEN returned the value1 for a text field beginning with a single byte character under an NUS. The value 2 is returned for text fields beginning with a double byte character. Under a US, CHARLEN returns the value 1 if text begins with a single Unicode character. If text begins with a Unicode double character from the surrogate area, the value 2 is returned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function NUMOFCHAR returns the number of characters in a string or a character-type field. In single byte code pages, the function behaves like STRLEN. In multi-byte code pages, characters filling more than 1 byte are nevertheless considered to have length 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output in fields and lists&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In WRITE ...TO, any flat data types that were handled like C fields were allowed as the target field. A UP now requires that the target field be of character-type in a WRITE ... TO ... statement. The line type of the table must be of character-type for the table variant WRITE ... TO itab INDEX idx. The offset and length are counted in characters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Until now, any flat structures could be output with WRITE. If the source field is a flat structure in a WRITE, it must have character-type only, in a UP. This affects the following statements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE f.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE f TO g[+off][(len)].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE (name) TO g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE f TO itab[+off][(len)] INDEX idx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE (name) TO itab[+off][(len)] INDEX idx. &lt;/P&gt;&lt;P&gt;link:http://help.sap.com/erp2005_ehp_03/helpdata/EN/79/c55479b3dc11d5993800508b6b8b11/frameset.htm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Shashi...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Use the categories used in the Dictionary when using these types with Structure Enhancements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 09:47:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733521#M898583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T09:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate XSTRING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733522#M898584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible to do so use the in byte mode to do so. Standard (without the addition) it is character mode, but for byte processing use the IN BYTE MODE addition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 09:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733522#M898584</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-06T09:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate XSTRING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733523#M898585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but it did not resolve the issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jan 2011 21:57:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733523#M898585</guid>
      <dc:creator>former_member188001</dc:creator>
      <dc:date>2011-01-18T21:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate XSTRING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733524#M898586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IN BYTE MODE does not work? F1?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jan 2011 22:29:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733524#M898586</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-01-18T22:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate XSTRING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733525#M898587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks but it did not resolve the issue &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It certainly does, but this isn't your thread.  If you're referring to your XML thread/issue, it's your code that's the problem.  Random posts to old threads aren't going to help you...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jan 2011 22:34:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-xstring/m-p/3733525#M898587</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2011-01-18T22:34:05Z</dc:date>
    </item>
  </channel>
</rss>

