<?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: reading value from internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643200#M608570</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Magesh,&lt;/P&gt;&lt;P&gt;My internal table is like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Y     Name      Cust1      cust2     Cust3      Cust4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;values like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Y    abcdef   123234234  13123424 1312343534 4242453455 563654654&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i find out that the column from 3 till 9 should only have values and other than that it cannot have any values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Aug 2007 16:14:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-13T16:14:56Z</dc:date>
    <item>
      <title>reading value from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643197#M608567</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 let me know how can i find the max of customer no found  in a row and it should be restricted to 6 9 i.e there can be a min of 1 customer no and max of 6 customer no&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my internal table is like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y name customerno customerno cusno cusno ... ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly reply..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 14:29:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643197#M608567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T14:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: reading value from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643198#M608568</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; here you go.&lt;/P&gt;&lt;P&gt;data : lv_count type i.&lt;/P&gt;&lt;P&gt; loop at itab.&lt;/P&gt;&lt;P&gt; if itab-cust1 is not initial.&lt;/P&gt;&lt;P&gt; lv_count = lv_count + 1.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt; if itab-cust2 is not initial.&lt;/P&gt;&lt;P&gt; lv_count = lv_count + 1.&lt;/P&gt;&lt;P&gt; endif.&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;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if lv_count gt 6.&lt;/P&gt;&lt;P&gt; delete itab index sy-tabix.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 15:01:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643198#M608568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T15:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: reading value from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643199#M608569</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; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Do you have data of this kind&lt;/P&gt;&lt;P&gt; 1000,cust1,cust2,cust3,cust4,cust5,cust6,cust7.&lt;/P&gt;&lt;P&gt; do this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of jtab occurs 0,&lt;/P&gt;&lt;P&gt;         line(10),&lt;/P&gt;&lt;P&gt;         end of jtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;         line(10),&lt;/P&gt;&lt;P&gt;         end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let us say you have data in itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at itab.&lt;/P&gt;&lt;P&gt;  split itab-line at ',' into table jtab.&lt;/P&gt;&lt;P&gt;  describe table jtab lines lv_lines.&lt;/P&gt;&lt;P&gt;  if lines &amp;gt; 7.&lt;/P&gt;&lt;P&gt;  this indicates that the this particular record has more that 6 customers.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;  refresh jtab.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 15:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643199#M608569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T15:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: reading value from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643200#M608570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Magesh,&lt;/P&gt;&lt;P&gt;My internal table is like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Y     Name      Cust1      cust2     Cust3      Cust4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;values like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Y    abcdef   123234234  13123424 1312343534 4242453455 563654654&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i find out that the column from 3 till 9 should only have values and other than that it cannot have any values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 16:14:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643200#M608570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T16:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: reading value from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643201#M608571</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;&lt;/P&gt;&lt;P&gt; Check my frist reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 17:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-internal-table/m-p/2643201#M608571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T17:21:48Z</dc:date>
    </item>
  </channel>
</rss>

