<?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: Data Fetch in Internal Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535858#M1071801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the only prob with this solution is it is showing the 1st materail no 2 times for 2 months and showing both the values in the samr field of month (eg. may).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the remaining is working fine thanx.....a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Oct 2008 12:50:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-04T12:50:06Z</dc:date>
    <item>
      <title>Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535843#M1071786</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;i have a prob in displaying the records &lt;/P&gt;&lt;P&gt;i have got the records in the internal table. the records which r there in my criteria has the follw . strct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matnr plant month stock&lt;/P&gt;&lt;P&gt;001    xxx    2      15&lt;/P&gt;&lt;P&gt;001    xxx    6       5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i m getting these values but i just wat the values like tis,&lt;/P&gt;&lt;P&gt;matnr plant apr may june jul aug sep &lt;/P&gt;&lt;P&gt;001    xxx    0    15                     5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz help me out..&lt;/P&gt;&lt;P&gt;thanxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: NILESH S. on Oct 3, 2008 1:56 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 11:55:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535843#M1071786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T11:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535844#M1071787</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;u declare two itabs. and in one itab store that matnr and remaining details. &lt;/P&gt;&lt;P&gt;and one more ITAB store that months Matnr, JAN, FEB,MAR,.....DEC.&lt;/P&gt;&lt;P&gt;while displaying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab1&lt;/P&gt;&lt;P&gt;read table itab2 with key itab2-matnr = itab1-matnr.&lt;/P&gt;&lt;P&gt;write: itab1-matnr, itab1-desc, itab2-mar,itab2-apr.....&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shankar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:00:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535844#M1071787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535845#M1071788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare your table structure with 12 seperate month fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you select your data, put the stock value of a month in the appropriate month field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No need for 2 tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Maen Anachronos on Oct 3, 2008 2:03 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:03:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535845#M1071788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535846#M1071789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it will be very helpful if both these answers will be in detailed for...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:06:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535846#M1071789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535847#M1071790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Create an internal table with header line say it_tabl2 with the fields as specified by you ie as &lt;STRONG&gt;matnr plant apr may june jul aug sep&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say the internal table you have initially is it_table1 with header line. Do as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_table1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_tabl2-matnr  = it_table1-matnr.&lt;/P&gt;&lt;P&gt;it_tabl2-plant  = it_table1-plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case it_tabl2-month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_tabl2-jan  = it_table1-stock.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when '2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_tabl2-feb  = it_table1-stock.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when '3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_tabl2-mar  = it_table1-stock.&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;when '5'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_tabl2-may  = it_table1-stock.&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;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append it_tabl2-jan .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear it_table1.&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;Now display the contents of the internal table it_tabl2 in which ever way you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Murthy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: pr murthy on Oct 3, 2008 2:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:07:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535847#M1071790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535848#M1071791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry ,&lt;/P&gt;&lt;P&gt;its not correct its giving me only the first record...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535848#M1071791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535849#M1071792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can i have the second option in details plz.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:19:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535849#M1071792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535850#M1071793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare your table structure with 12 seperate month fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you select your data, put the stock value of a month in the appropriate month field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No need for 2 tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Maen Anachronos on Oct 3, 2008 2:03 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had tried this but for 1 material if i select 3 months it will be displayed 3 times in the table &amp;amp; so on the o/p screen....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:22:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535850#M1071793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535851#M1071794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know how your program looks like. But apparently your doing an append for each record found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select all months for a material, distribute the month values into their corresponding month field and then do an append.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535851#M1071794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535852#M1071795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thats what i want in little details..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535852#M1071795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535853#M1071796</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; thats what i want in little details..&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="6" __jive_macro_name="size"&gt;Select all months for a material, distribute the month values into their corresponding month field and then do an append.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535853#M1071796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535854#M1071797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Nilesh,&lt;/P&gt;&lt;P&gt;               Why my code will give only first record correct. Its going to give result as I have written my logic inside a loop, not just for first record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;sorry ,
its not correct its giving me only the first record...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way I am not here to be judjed by you dear friend, I may not be able to get your requirement correct, but I am sure my code is going to work for your requirement. You must explaine if you think I did not get your requirement correct. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Murthy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: pr murthy on Oct 3, 2008 2:56 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:56:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535854#M1071797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535855#M1071798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;c im doing this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have foll. struct .&lt;/P&gt;&lt;P&gt;tell me where to place append&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a b c &lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;   select  &lt;STRONG&gt;matnr&lt;/STRONG&gt;......&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;      select werks &lt;STRONG&gt;matnr&lt;/STRONG&gt; lfmon ...&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           by if cond.&lt;/P&gt;&lt;P&gt;       apr = the value.&lt;/P&gt;&lt;P&gt;       i.e. sending values into corresponding months..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;endselect&lt;/P&gt;&lt;P&gt;endselect.&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 i placed apend after 1st endselect its giving me unwanted matnr...&lt;/P&gt;&lt;P&gt;so what to do now...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535855#M1071798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535856#M1071799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hint: &lt;SPAN __default_attr="6" __jive_macro_name="size"&gt;use sy-subrc after the first endselect.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 12:59:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535856#M1071799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T12:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535857#M1071800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilesh,&lt;/P&gt;&lt;P&gt;No need to change ur whole logic. Check this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SORT itab BY matnr werks.
WRITE: /1 'matnr'
              20 ' plant'
             25 'Jan'
             35 'Feb
.
.
.
            135 'Dec'.
             may june jul aug sep  " Give the positions appropriately(As per ur field length)

LOOP AT itab INTO wa.
AT NEW werks.
WRITE: /1 wa-matnr,
              20 wa-werks.
ENDAT.
CASE wa-month.
WHEN '1'.
WRITE: 25 wa-stock.
WHEN '2'.
WRITE: 35 wa-stock.
.
.
.
WHEN '12'.
WRITE: 135 wa-stock.
ENDCASE.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This surely solves ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changed AT END OF to AT NEW:-)&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Reddy Vemuru on Oct 3, 2008 6:46 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 13:15:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535857#M1071800</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-10-03T13:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535858#M1071801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the only prob with this solution is it is showing the 1st materail no 2 times for 2 months and showing both the values in the samr field of month (eg. may).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the remaining is working fine thanx.....a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2008 12:50:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535858#M1071801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-04T12:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535859#M1071802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilesh,&lt;/P&gt;&lt;P&gt;Since we are using the AT event wrt to plant(Werks) it is showing the material number more than once i.e once for the combination of material and plant. If u want to segregate the data at material level then use the AT END OF matnr instead of AT END OF werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U told quantity is printing at same month(May). For this either both plants has stock in May or u might be giving wrong positions in write statements. Check these and get back in case of any issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Oct 2008 09:15:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535859#M1071802</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-10-05T09:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Data Fetch in Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535860#M1071803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 05:54:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-fetch-in-internal-table/m-p/4535860#M1071803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T05:54:26Z</dc:date>
    </item>
  </channel>
</rss>

