<?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 statment in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562163#M254105</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;PRE&gt;&lt;CODE&gt;select * from ZTABLE into corresponding fields of table itab
where zreqno in  s_reqno.
or zdate in s_date
or zreqby in s_reqnam.
or zapprname in  s_appnam.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but check the performamce.&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;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Sep 2006 04:30:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-13T04:30:30Z</dc:date>
    <item>
      <title>Select statment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562161#M254103</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;I have 4 fields in Selection screen.&lt;/P&gt;&lt;P&gt;No one is mandatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User wishes to select the details from a table by giving inputs in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have coded as..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ZTABLE into corresponding fields of table itab&lt;/P&gt;&lt;P&gt;where zreqno = s_reqno-low&lt;/P&gt;&lt;P&gt;or zdate in s_date&lt;/P&gt;&lt;P&gt;or zreqby = s_reqnam-low&lt;/P&gt;&lt;P&gt;or zapprname = s_appnam-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System is not able to fetch correct records from Table with given inputs...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What will be the right code..????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 04:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562161#M254103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T04:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Select statment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562162#M254104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;select * from ZTABLE into corresponding fields of table itab
where zreqno in s_reqno
or zdate in s_date
or zreqby in s_reqnam
or zapprname in s_appnam.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 04:29:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562162#M254104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T04:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select statment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562163#M254105</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;PRE&gt;&lt;CODE&gt;select * from ZTABLE into corresponding fields of table itab
where zreqno in  s_reqno.
or zdate in s_date
or zreqby in s_reqnam.
or zapprname in  s_appnam.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but check the performamce.&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;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 04:30:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562163#M254105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T04:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select statment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562164#M254106</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;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;select * from ZTABLE into corresponding fields of table itab
where zreqno in s_reqno
or zdate in s_date
or zreqby in s_reqnam
or zapprname in s_appnam.&amp;lt;/b&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 04:30:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562164#M254106</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-13T04:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: Select statment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562165#M254107</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 think in this case,&lt;/P&gt;&lt;P&gt;you better define &lt;/P&gt;&lt;P&gt;*------&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;s_reqno-low = &amp;lt;least value&amp;gt;&lt;/P&gt;&lt;P&gt;s_reqnam-low = &amp;lt;least value&amp;gt;&lt;/P&gt;&lt;P&gt;s_appnam-low = &amp;lt;least value&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*---and now continue with your select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Aditya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 05:07:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statment/m-p/1562165#M254107</guid>
      <dc:creator>former_member184495</dc:creator>
      <dc:date>2006-09-13T05:07:39Z</dc:date>
    </item>
  </channel>
</rss>

