<?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: how to concatenate data into asingle row while using table controls? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974710#M949337</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should happen in the PAI right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then itab should also be a table control??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you pl jot down the process flow - PBO and PAI briefly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am trying to understadn is,  as soon as the data is read from the barcode, it will be displayed on the screen.&lt;/P&gt;&lt;P&gt;Then your code will come into picture at PAI adn modfies the table control- is it not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So probably some thing needs to be controlled in the ITS that connects sap adn the rf scanner?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jun 2008 06:52:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-16T06:52:31Z</dc:date>
    <item>
      <title>how to concatenate data into asingle row while using table controls?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974705#M949332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In a table contro with single column of 200 cahrs length:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data of 20 chars will be input by scanning a barcode using a RF scanner.&lt;/P&gt;&lt;P&gt;Each barcode shall be separated by a comma and fill in 10 per row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us say first barcode scan showed x1, second barcode scan x2, third barcode scan showed x3 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the first row of the table control should show x1,x2,x3....&lt;/P&gt;&lt;P&gt;Once x10 is arrived , then it sould go to second row x11,x12,x13...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to achive this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 05:57:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974705#M949332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T05:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to concatenate data into asingle row while using table controls?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974706#M949333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;         Try using a counter and also a loop statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when counter = 10 append work area(should have a concatenated value i.e x1,x2,x3....) to itab and make the counter back to 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Reward if useful&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ruby.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 06:04:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974706#M949333</guid>
      <dc:creator>former_member202474</dc:creator>
      <dc:date>2008-06-16T06:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to concatenate data into asingle row while using table controls?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974707#M949334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   You can use a counter and a flag.Use ctr = ctr + 1 in a loop.If the value of ctr is less than 10 you keep on concatenating values x1,x2,x3..etc. separated by ",".If the ctr is 10.Reset the flag and counter.after 10th append it to internal table.Pass this internal table to table control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 06:14:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974707#M949334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T06:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to concatenate data into asingle row while using table controls?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974708#M949335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before using the counter as mentioned above, where do I store the values that are input?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The values x1;x2;x3 wtc are coming into the table control from a barcode scanner.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 06:38:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974708#M949335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T06:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to concatenate data into asingle row while using table controls?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974709#M949336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Before passing the data to table control write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : var(100) type c,&lt;/P&gt;&lt;P&gt;         var1(100) type c.&lt;/P&gt;&lt;P&gt;Loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ctr = ctr +1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var = itab-field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;conactenate var1 var ',' into var1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ctr &amp;gt; 10 .&lt;/P&gt;&lt;P&gt;append var1 to tabcontrol.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 06:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974709#M949336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T06:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to concatenate data into asingle row while using table controls?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974710#M949337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should happen in the PAI right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then itab should also be a table control??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you pl jot down the process flow - PBO and PAI briefly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am trying to understadn is,  as soon as the data is read from the barcode, it will be displayed on the screen.&lt;/P&gt;&lt;P&gt;Then your code will come into picture at PAI adn modfies the table control- is it not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So probably some thing needs to be controlled in the ITS that connects sap adn the rf scanner?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 06:52:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-concatenate-data-into-asingle-row-while-using-table-controls/m-p/3974710#M949337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T06:52:31Z</dc:date>
    </item>
  </channel>
</rss>

