<?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 How to concatenate variable with char type and variable with integer type? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894252#M1326877</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;I m trying to print a varibale after concatenate char type with integer type variable. so plz help me what is exact syntax for concatenation of two type of varibale. ie. char type and Integer type..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mukul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Jul 2009 10:24:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-10T10:24:08Z</dc:date>
    <item>
      <title>How to concatenate variable with char type and variable with integer type?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894252#M1326877</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;I m trying to print a varibale after concatenate char type with integer type variable. so plz help me what is exact syntax for concatenation of two type of varibale. ie. char type and Integer type..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mukul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 10:24:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894252#M1326877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T10:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate variable with char type and variable with integer type?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894253#M1326878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Cancatenation is only possible for data typeswith C, N , D, T and STRING. You can not concatenate char and integer variables. &lt;/P&gt;&lt;P&gt;What you can do is first pass integer value into one char variable and concatenate that with another char variable.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Venkat.O&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 10:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894253#M1326878</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-07-10T10:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate variable with char type and variable with integer type?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894254#M1326879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Mukulkumar ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to move that integer valu to the string. and then concatenate.&lt;/P&gt;&lt;P&gt;because concate works for Char and string fileds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more press F1 on Concatenate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 10:28:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894254#M1326879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T10:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate variable with char type and variable with integer type?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894255#M1326880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For concatenation u need all variable as of type C, N, D, T .&lt;/P&gt;&lt;P&gt;So it would be better befor concatenation, u move the integer variable to new char variable.&lt;/P&gt;&lt;P&gt;Then concatenate both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e&lt;/P&gt;&lt;P&gt;Data: var1 type i,&lt;/P&gt;&lt;P&gt;         var2 type c.&lt;/P&gt;&lt;P&gt;data:  var3 type c.&lt;/P&gt;&lt;P&gt;data: w_text(10).&lt;/P&gt;&lt;P&gt;var3 = var1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate var3 var2 into w_text separated by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srimanta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 10:28:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894255#M1326880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T10:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate variable with char type and variable with integer type?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894256#M1326881</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;Move integer to N type variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: Int type I,&lt;/P&gt;&lt;P&gt;          ch(10),&lt;/P&gt;&lt;P&gt;          temp type N, &amp;lt;---- Increment the lenght if you have number with more than 1 position &lt;/P&gt;&lt;P&gt;          final type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move int to temp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate ch temp into final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Angelo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 10:32:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894256#M1326881</guid>
      <dc:creator>former_member302911</dc:creator>
      <dc:date>2009-07-10T10:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate variable with char type and variable with integer type?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894257#M1326882</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;Concatenation is a string or character operation and cannot not be performed with a integer as such. The integer value can be moved to a character variable and the concatenation can be performed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 10:35:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894257#M1326882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T10:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate variable with char type and variable with integer type?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894258#M1326883</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;Please search SDN and read HELP documnets as well ...Press F1 on CONCATENATE ....&lt;/P&gt;&lt;P&gt;i hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 10:41:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894258#M1326883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T10:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate variable with char type and variable with integer type?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894259#M1326884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Mukul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can move the data from interger type to char type and then concatenate...&lt;/P&gt;&lt;P&gt;here is the eg....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: data1 type i,&lt;/P&gt;&lt;P&gt;      copydata1(10) type c,&lt;/P&gt;&lt;P&gt;      data2(10) type c,&lt;/P&gt;&lt;P&gt;      result type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Data1 = 32000.&lt;/P&gt;&lt;P&gt;  copydata1 = data1.&lt;/P&gt;&lt;P&gt;  data2 = 'amount'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate data2 copydata1 into result.&lt;/P&gt;&lt;P&gt;write:/ result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ashu SIngh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 10:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894259#M1326884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T10:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate variable with char type and variable with integer type?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894260#M1326885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data:var1 type i value 25.
data:var2(3) type c.
data:output(255) type c.

write var1 to output.
concatenate output var2 into output.

write output.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 19:19:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-variable-with-char-type-and-variable-with-integer-type/m-p/5894260#M1326885</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-07-10T19:19:33Z</dc:date>
    </item>
  </channel>
</rss>

