<?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 concate two table fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454590#M14019</link>
    <description>&lt;P&gt;I have two table fields first name and last name. I want concatenation of these two fields into new table field Name. Please help me with this.&lt;/P&gt;</description>
    <pubDate>Fri, 23 Jun 2017 06:30:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-06-23T06:30:14Z</dc:date>
    <item>
      <title>concate two table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454590#M14019</link>
      <description>&lt;P&gt;I have two table fields first name and last name. I want concatenation of these two fields into new table field Name. Please help me with this.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 06:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454590#M14019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-06-23T06:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: concate two table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454591#M14020</link>
      <description>&lt;P&gt;Hi Malaviben.&lt;/P&gt;&lt;P&gt;You will need to read up on the following statements:&lt;/P&gt;&lt;P&gt;TYPES&lt;/P&gt;&lt;P&gt;DATA&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS&lt;/P&gt;&lt;P&gt;SELECT [INTO TABLE]&lt;/P&gt;&lt;P&gt;LOOP AT [Assigning Field Symbol]&lt;/P&gt;&lt;P&gt;String concatenation using &amp;amp;&amp;amp;,  and ` instead of ' as a string delimiter&lt;/P&gt;&lt;P&gt;ENDLOOP&lt;/P&gt;&lt;P&gt;I'm not going to provide the code for you because this is so &lt;EM&gt;basic&lt;/EM&gt; (if you'll pardon the pun).&lt;/P&gt;&lt;P&gt;Rich&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 06:57:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454591#M14020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-06-23T06:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: concate two table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454592#M14021</link>
      <description>&lt;P&gt;Hi malaviben,&lt;/P&gt;&lt;P&gt;Step 1 : ( define long string)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;      DATA final TYPE soli-line.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Step 2: ( get data from table and pass to field)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;      LOOP AT itab INTO wa.
        l_f1 = wa-firstname .
        l_f2 = wa-secondname .
      ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Step 3: ( now pass the two field value to log sting"final" field)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;       LOOP AT it_soli1.
        CONCATENATE l_f1 l_f2 INTO final.
      ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Umayaraj.B&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 07:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454592#M14021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-06-23T07:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: concate two table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454593#M14022</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at i_tab into w_tab.
w_final-f_name = w_tab-f_name.
w_final-l_name = w_tab-l_name.
concatenate w_tab-f_name w_tab-l_name into w_final-full_name seperated by space.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope this works.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mangesh&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 07:49:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454593#M14022</guid>
      <dc:creator>mangesh_parihar</dc:creator>
      <dc:date>2017-06-23T07:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: concate two table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454594#M14023</link>
      <description>&lt;P&gt;Ever heard of the concatenation operator &amp;amp;&amp;amp; or string templates? Maybe even FOR expressions?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 09:07:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454594#M14023</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2017-06-23T09:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: concate two table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454595#M14024</link>
      <description>&lt;P&gt;Since the questioner seems to know nothing about ABAP, it isn't helpful to answer with faulty code excerpts that do not match at all.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 09:18:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454595#M14024</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2017-06-23T09:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: concate two table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454596#M14025</link>
      <description>&lt;P&gt;There are many ways to do the same. I just commented one of them.&lt;/P&gt;&lt;P&gt;And no, i haven't heard of them. Thanks for the suggestion. I'll learn it for sure.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 09:27:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concate-two-table-fields/m-p/454596#M14025</guid>
      <dc:creator>mangesh_parihar</dc:creator>
      <dc:date>2017-06-23T09:27:13Z</dc:date>
    </item>
  </channel>
</rss>

