<?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: Problem in Concatenate Statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780849#M336540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you cant concatenate character with curreency fiels, so what you have done is correct but after storing that currencly field in a character datatype you can do the concatenate .check the length of the character field in which you r storing the value and try again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Dec 2006 06:02:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-11T06:02:16Z</dc:date>
    <item>
      <title>Problem in Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780844#M336535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Friends,&lt;/P&gt;&lt;P&gt;  I have to concatenate  Four variables A B C and D.In this four variables three of them are Characters.The last one is currency field.I am not able to concatenate this field.for this I declared one variable in character fomat and i moved this currency variable into this character variable.but i am not able to get that variable.&lt;/P&gt;&lt;P&gt;Please give me solution for my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashok.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 05:31:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780844#M336535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T05:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780845#M336536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONCATENATE is only at FIELD level for CHAR type fields and not records.&lt;/P&gt;&lt;P&gt;ur approch is write.&lt;/P&gt;&lt;P&gt;go to debugger mode and  try to check what is the problem. i think there  is any silly mistake....gud luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 05:35:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780845#M336536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T05:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780846#M336537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: fld1(10) type c value 'ABC',
      fld2(10) type c value 'DEF',
      fld3 type wrbtr value '123.45'.

data: str type string.

move fld3 to str.
concatenate fld1 fld2 str into str separated by space.

write:/ str.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 05:41:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780846#M336537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T05:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780847#M336538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ashok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       concatenate statement is to merge the charecter fields...there is nothing with regards to the type of the field...i do think there must be some prob while using the currrency field...hope u can get it in watch mode..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 05:46:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780847#M336538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T05:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780848#M336539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ashok,&lt;/P&gt;&lt;P&gt;            check the following eg code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : var1 type c value 'h',&lt;/P&gt;&lt;P&gt;       var2 type c value 'i',&lt;/P&gt;&lt;P&gt;       var3 like vbrk-netwr ,&lt;/P&gt;&lt;P&gt;       var5(20) type c,&lt;/P&gt;&lt;P&gt;       var4(30) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       var3 = '20.0'.&lt;/P&gt;&lt;P&gt;       var5 = var3.&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;       concatenate var1 var2 var5 into var4.&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;       write var4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try using above code its working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ravi Kumar Gunda.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 05:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780848#M336539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T05:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780849#M336540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you cant concatenate character with curreency fiels, so what you have done is correct but after storing that currencly field in a character datatype you can do the concatenate .check the length of the character field in which you r storing the value and try again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 06:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780849#M336540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T06:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780850#M336541</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;The currency value has to move one string initially and concatenate other values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 07:08:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780850#M336541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T07:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780851#M336542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ashok,&lt;/P&gt;&lt;P&gt;             I think this may overcome your problem. If you need you can directly initiate the values or else you can give like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: str1 type field,&lt;/P&gt;&lt;P&gt;                   str2 type field ,&lt;/P&gt;&lt;P&gt;                   str3 type field .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: str type field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate str1 str2 str3 into str separated by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt; magesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 07:31:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-concatenate-statement/m-p/1780851#M336542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T07:31:46Z</dc:date>
    </item>
  </channel>
</rss>

