<?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: loop at ITAB where condition in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747274#M324097</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT ITAB WHERE FKART = 'YRE' OR FKART = 'YPR'.
l_stk2 = l_stk2 + ITAB2-FKLMG.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Dec 2006 04:46:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-19T04:46:32Z</dc:date>
    <item>
      <title>loop at ITAB where condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747272#M324095</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 i want to use Loop at itab where fkart eq 'YRE' and fkart eq 'YPR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB WHERE ?&lt;/P&gt;&lt;P&gt;     l_stk2 = l_stk2 + ITAB2-FKLMG.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;here in the itab if any(YRE,YPR) one of the condition matches then populate the data.How to write the statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rajendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 04:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747272#M324095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T04:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: loop at ITAB where condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747273#M324096</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 this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB WHERE YRE = 'value' or YPR = 'value'.&lt;/P&gt;&lt;P&gt;l_stk2 = l_stk2 + ITAB2-FKLMG.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 04:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747273#M324096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T04:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: loop at ITAB where condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747274#M324097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT ITAB WHERE FKART = 'YRE' OR FKART = 'YPR'.
l_stk2 = l_stk2 + ITAB2-FKLMG.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 04:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747274#M324097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T04:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: loop at ITAB where condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747275#M324098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;  Use this code:&lt;/P&gt;&lt;P&gt;  LOOP AT itab WHERE fkart EQ 'YRE' OR fkart EQ 'YPR'.&lt;/P&gt;&lt;P&gt;  ....&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 04:47:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747275#M324098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T04:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: loop at ITAB where condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747276#M324099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  I dint think the condition you have said will ever come a varaible can never have 2 values at the same time.&lt;/P&gt;&lt;P&gt;My understanding is your requiremetn is when fkart eq 'YRE' or fkart eq 'YPR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code for this is as given below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT ITAB WHERE fkart eq 'YRE' or 
                                    fkart eq 'YPR'.


ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 04:47:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747276#M324099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T04:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: loop at ITAB where condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747277#M324100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP AT ITAB WHERE FKART = 'YRE OR FKART = 'YPR'.&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;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 04:48:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747277#M324100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T04:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: loop at ITAB where condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747278#M324101</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;LOOP AT ITAB WHERE FKART = 'YRE AND FKART = 'YPR'.&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;Regards,&lt;/P&gt;&lt;P&gt;Star Shankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 05:55:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-itab-where-condition/m-p/1747278#M324101</guid>
      <dc:creator>p291102</dc:creator>
      <dc:date>2006-12-19T05:55:17Z</dc:date>
    </item>
  </channel>
</rss>

