<?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: intenal table problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235848#M481520</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 the same Internal table any number of times.&lt;/P&gt;&lt;P&gt;first fetch data and move that data into another internal tables&lt;/P&gt;&lt;P&gt;Then REFRESH and CLEAR the Internal table and again use it and populate data into it. and again move this data to another ITAb and again clear and REFRESH it and use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 May 2007 04:41:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-10T04:41:21Z</dc:date>
    <item>
      <title>intenal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235846#M481518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_ITAB,&lt;/P&gt;&lt;P&gt;           kk like MSEG-dmbtr,&lt;/P&gt;&lt;P&gt;           gg like MSKA-kalab,&lt;/P&gt;&lt;P&gt;           dd like VBRK-netwr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; END OF IT_ITAB,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;supoose that i have internal table like that (IT_ITAB )it has KK, GG and DD variable....so i want to run that internal table another month that mean same intenal table run two manth and get  the data in to one internal table. so tel me how should i do it.?  when i excute the program i want to run same internal table separatly and get the data only one internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regard&lt;/P&gt;&lt;P&gt;nawa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 May 2007 04:28:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235846#M481518</guid>
      <dc:creator>Nawanandana</dc:creator>
      <dc:date>2007-05-10T04:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: intenal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235847#M481519</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;Your question is not very Clear..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_ITAB  occurs 0,&lt;/P&gt;&lt;P&gt;              kk like MSEG-dmbtr,&lt;/P&gt;&lt;P&gt;              gg like MSKA-kalab,&lt;/P&gt;&lt;P&gt;              dd like VBRK-netwr,&lt;/P&gt;&lt;P&gt;           END OF IT_ITAB,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_ITAB1  occurs 0,&lt;/P&gt;&lt;P&gt;              kk like MSEG-dmbtr,&lt;/P&gt;&lt;P&gt;              gg like MSKA-kalab,&lt;/P&gt;&lt;P&gt;              dd like VBRK-netwr,&lt;/P&gt;&lt;P&gt;           END OF IT_ITAB1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process IT_TAB --&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process IT_TAB1 --&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND LINES OF IT_TAB1 to IT_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another solution : - if you want both the data in a Single table but still be able to distinguish then add another field &lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_ITAB1  occurs 0,&lt;/P&gt;&lt;P&gt;              TABL(1),&lt;/P&gt;&lt;P&gt;              kk like MSEG-dmbtr,&lt;/P&gt;&lt;P&gt;              gg like MSKA-kalab,&lt;/P&gt;&lt;P&gt;              dd like VBRK-netwr,&lt;/P&gt;&lt;P&gt;           END OF IT_ITAB1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you are filling the data in this table fill the field TABL with the Value '1' or "2"&lt;/P&gt;&lt;P&gt;when you want to process  use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_tab1 where TABLE = '1'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_tab1 where TABLE = '2'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this answers your question...&lt;/P&gt;&lt;P&gt;if so Kindly reward points ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 May 2007 04:39:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235847#M481519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-10T04:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: intenal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235848#M481520</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 the same Internal table any number of times.&lt;/P&gt;&lt;P&gt;first fetch data and move that data into another internal tables&lt;/P&gt;&lt;P&gt;Then REFRESH and CLEAR the Internal table and again use it and populate data into it. and again move this data to another ITAb and again clear and REFRESH it and use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 May 2007 04:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235848#M481520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-10T04:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: intenal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235849#M481521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_ITAB,&lt;/P&gt;&lt;P&gt;kk like MSEG-dmbtr,&lt;/P&gt;&lt;P&gt;gg like MSKA-kalab,&lt;/P&gt;&lt;P&gt;dd like VBRK-netwr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END OF IT_ITAB.&lt;/P&gt;&lt;P&gt;data : it_tab1 like it_tab with header line.&lt;/P&gt;&lt;P&gt;first get the data in it_itab and move them to it_tab1.refresh and clear it_itab and again get it in it_itab and move to it_itab1,then u will get all of ur data into it_itab1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 May 2007 05:08:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235849#M481521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-10T05:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: intenal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235850#M481522</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;If you want the data for each month in columns &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kk/01 | gg/01 | dd/01 | kk/02 | gg/02 | dd/02&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to construct a dynamic internal table. Refer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://www.sap-img.com/ab030.htm"&amp;gt;http://www.sap-img.com/ab030.htm&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else You can append any number of months record into the same internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rusidar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 May 2007 05:28:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/intenal-table-problem/m-p/2235850#M481522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-10T05:28:37Z</dc:date>
    </item>
  </channel>
</rss>

