<?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: Concatenate between two fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412055#M1242727</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; what is meant with send 24 characters ?&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It sounds as if they just want you to give them them first 24 characters of the concatenated string.  But you should really be checking with whoever is asking you to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Mar 2009 11:06:20 GMT</pubDate>
    <dc:creator>christine_evans</dc:creator>
    <dc:date>2009-03-25T11:06:20Z</dc:date>
    <item>
      <title>Concatenate between two fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412051#M1242723</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 need logic for stras(Char 60)(Address 1) and LOCAT(Char40)(Address 2).&lt;/P&gt;&lt;P&gt;  Concatenate Address line 1 and 2.  Put a space between the two fields.  Send first 24   characters.    Left justify, fill with spaces.&lt;/P&gt;&lt;P&gt;  Can any body help me this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 10:57:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412051#M1242723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T10:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate between two fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412052#M1242724</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;check this sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS:
stras(60) TYPE c, " fields for replicating the size
locat(40) TYPE c. " fields for replicating the size
DATA:
target TYPE string.
CONCATENATE stras locat INTO target SEPARATED BY space.

WRITE: target(24).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 11:02:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412052#M1242724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T11:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate between two fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412053#M1242725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONCATENATE Address 1  Address 2  INTO   finaladdress SEPARATED by SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var  = finaladdress0+(24).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use SHIFT  finaladdress BY 24  PLACES LEFT to append blank to right side of the string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 11:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412053#M1242725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T11:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate between two fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412054#M1242726</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;what is meant with send 24 characters ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 11:04:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412054#M1242726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T11:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate between two fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412055#M1242727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; what is meant with send 24 characters ?&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It sounds as if they just want you to give them them first 24 characters of the concatenated string.  But you should really be checking with whoever is asking you to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 11:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412055#M1242727</guid>
      <dc:creator>christine_evans</dc:creator>
      <dc:date>2009-03-25T11:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate between two fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412056#M1242728</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;DATA:&lt;/P&gt;&lt;P&gt; stras(60) TYPE c, &lt;/P&gt;&lt;P&gt; locat(40) TYPE c, &lt;/P&gt;&lt;P&gt; address TYPE string,&lt;/P&gt;&lt;P&gt; final TYPE string&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE stras locat INTO address SEPARATED BY space.&lt;/P&gt;&lt;P&gt;CONDENSE address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;final = address0+(24).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 11:08:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412056#M1242728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T11:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate between two fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412057#M1242729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sujan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 11:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-between-two-fields/m-p/5412057#M1242729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T11:10:52Z</dc:date>
    </item>
  </channel>
</rss>

