<?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: int table problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table-problem/m-p/2790414#M650930</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;so you want to repeat the 722 value in the last two line,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;save the  722 in a  field,and when the second line coming to the internal table from the database ,you append this field in the   second line.&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>Sat, 01 Sep 2007 08:51:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-01T08:51:47Z</dc:date>
    <item>
      <title>int table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table-problem/m-p/2790413#M650929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a intab1 which has data in the follwing format&lt;/P&gt;&lt;P&gt;matnr          quant&lt;/P&gt;&lt;P&gt;72210008    100&lt;/P&gt;&lt;P&gt;52210005     50&lt;/P&gt;&lt;P&gt;52220009     80&lt;/P&gt;&lt;P&gt;and in another intab2 i want to display it in this format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matnrfg    matnrsf   quant&lt;/P&gt;&lt;P&gt;72210008               100&lt;/P&gt;&lt;P&gt;72210008  52210005 50&lt;/P&gt;&lt;P&gt;72210008 52220009  80&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where 72210008 is header level item and 52210005 and 52220009 are it's down level item .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do it ,can anybody help please.points will be  rewarded&lt;/P&gt;&lt;P&gt;please thanx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2007 08:43:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/int-table-problem/m-p/2790413#M650929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-01T08:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: int table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table-problem/m-p/2790414#M650930</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;so you want to repeat the 722 value in the last two line,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;save the  722 in a  field,and when the second line coming to the internal table from the database ,you append this field in the   second line.&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>Sat, 01 Sep 2007 08:51:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/int-table-problem/m-p/2790414#M650930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-01T08:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: int table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table-problem/m-p/2790415#M650931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sarabjit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There should be some way to identify that which of them is the header item..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like you must have some field in the internal table telling that this is the header item record..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF header EQ 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR tab2-matnr1.&lt;/P&gt;&lt;P&gt;tab2-matnr1 = tab-matnr.&lt;/P&gt;&lt;P&gt;tab2-qty = tab-qty.&lt;/P&gt;&lt;P&gt;APPEND tab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tab2-matnr2 = tab-matnr.&lt;/P&gt;&lt;P&gt;tab2-qty = tab-qty.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I remember one of my requirements.. i feel the qty for the header item will be in field BMENG while the qty of sub items will be in MENGE..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What  do you say?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Vikas Bittera.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2007 09:49:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/int-table-problem/m-p/2790415#M650931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-01T09:49:42Z</dc:date>
    </item>
  </channel>
</rss>

