<?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: select statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528842#M241883</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;wrong-&amp;gt;&lt;/P&gt;&lt;P&gt;select kunnr parvw kunn2 pernr &lt;/P&gt;&lt;P&gt;into table loc_int_knvp &lt;/P&gt;&lt;P&gt;from knvp for all entries in t_reqd &lt;/P&gt;&lt;P&gt;where kunnr = t_reqd-kunnr &lt;/P&gt;&lt;P&gt;and ( parvw = wc_zn or parvw = wc_zi ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write-&amp;gt;&lt;/P&gt;&lt;P&gt;select kunnr parvw kunn2 pernr &lt;/P&gt;&lt;P&gt;into corresponding fileds of table loc_int_knvp &lt;/P&gt;&lt;P&gt;from knvp for all entries in t_reqd &lt;/P&gt;&lt;P&gt;where kunnr = t_reqd-kunnr &lt;/P&gt;&lt;P&gt;and ( parvw = wc_zn or parvw = wc_zi ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it may reduse of the original time period as itis taking now .&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>Thu, 24 Aug 2006 11:24:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-24T11:24:21Z</dc:date>
    <item>
      <title>select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528838#M241879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used select statement in my coding as"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; select kunnr parvw kunn2 pernr             &lt;/P&gt;&lt;P&gt; into   table loc_int_knvp                  &lt;/P&gt;&lt;P&gt; from   knvp for all entries in t_reqd      &lt;/P&gt;&lt;P&gt; where  kunnr =  t_reqd-kunnr               &lt;/P&gt;&lt;P&gt; and    ( parvw = wc_zn or parvw = wc_zi ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But performance point of view it is taking somuch time .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So could u please give any alternative solution for that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please send to jonam38@yahoo.co.in urgently&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2006 10:08:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528838#M241879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T10:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528839#M241880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF you are using FOR ALL ENTRIES addition to SELECT first check that table is not initial.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;if t_reqd[] is not initial.&amp;lt;/b&amp;gt;
select kunnr parvw kunn2 pernr 
into table loc_int_knvp 
from knvp for all entries in t_reqd 
where kunnr = t_reqd-kunnr 
and ( parvw = wc_zn or parvw = wc_zi ). 
&amp;lt;b&amp;gt;endif.&amp;lt;/b&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2006 10:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528839#M241880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T10:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528840#M241881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sort the t_reqd table on kunnr field before the select.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort t_reqd by kunnr.&lt;/P&gt;&lt;P&gt;select kunnr parvw kunn2 pernr &lt;/P&gt;&lt;P&gt;into table loc_int_knvp &lt;/P&gt;&lt;P&gt;from knvp for all entries in t_reqd &lt;/P&gt;&lt;P&gt;where kunnr = t_reqd-kunnr &lt;/P&gt;&lt;P&gt;and ( parvw = wc_zn or parvw = wc_zi ). &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>Thu, 24 Aug 2006 10:15:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528840#M241881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T10:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528841#M241882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;put like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if t_redq[] is not initial.&lt;/P&gt;&lt;P&gt;select kunnr parvw kunn2 pernr &lt;/P&gt;&lt;P&gt;into table loc_int_knvp &lt;/P&gt;&lt;P&gt;from knvp for all entries in t_reqd &lt;/P&gt;&lt;P&gt;where kunnr = t_reqd-kunnr &lt;/P&gt;&lt;P&gt;and ( parvw = wc_zn or parvw = wc_zi ). &lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and check WC_ZN also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2006 10:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528841#M241882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T10:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528842#M241883</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;wrong-&amp;gt;&lt;/P&gt;&lt;P&gt;select kunnr parvw kunn2 pernr &lt;/P&gt;&lt;P&gt;into table loc_int_knvp &lt;/P&gt;&lt;P&gt;from knvp for all entries in t_reqd &lt;/P&gt;&lt;P&gt;where kunnr = t_reqd-kunnr &lt;/P&gt;&lt;P&gt;and ( parvw = wc_zn or parvw = wc_zi ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write-&amp;gt;&lt;/P&gt;&lt;P&gt;select kunnr parvw kunn2 pernr &lt;/P&gt;&lt;P&gt;into corresponding fileds of table loc_int_knvp &lt;/P&gt;&lt;P&gt;from knvp for all entries in t_reqd &lt;/P&gt;&lt;P&gt;where kunnr = t_reqd-kunnr &lt;/P&gt;&lt;P&gt;and ( parvw = wc_zn or parvw = wc_zi ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it may reduse of the original time period as itis taking now .&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>Thu, 24 Aug 2006 11:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/1528842#M241883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T11:24:21Z</dc:date>
    </item>
  </channel>
</rss>

