<?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: Regarding a select statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-a-select-statement/m-p/3604069#M868048</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ce4e001 into table ... where bukrs eq s_bukrs-low&lt;/P&gt;&lt;P&gt;*AND kndnr IN s_kndnr&lt;/P&gt;&lt;P&gt;AND prctr IN s_prctr*.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Mar 2008 09:54:18 GMT</pubDate>
    <dc:creator>JozsefSzikszai</dc:creator>
    <dc:date>2008-03-25T09:54:18Z</dc:date>
    <item>
      <title>Regarding a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-a-select-statement/m-p/3604068#M868047</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 got a select statement in my program as shown below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ce4e001 where bukrs eq s_bukrs-low.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;check s_kndnr.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;check s_prctr.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;move-corresponding ce4e001 to v_ce4e001.&lt;/P&gt;&lt;P&gt;append v_ce4e001.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to rewrite this select statement with using  into table like&lt;/P&gt;&lt;P&gt;select * from ce4e001 into table v_ce4e001 where bukrs eq s_bukrs-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but my problem is &lt;/P&gt;&lt;P&gt;in the initial select statement they have used two check statements before appending&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now how can i incorporate those two check statements in my new select statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 09:48:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-a-select-statement/m-p/3604068#M868047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T09:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-a-select-statement/m-p/3604069#M868048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ce4e001 into table ... where bukrs eq s_bukrs-low&lt;/P&gt;&lt;P&gt;*AND kndnr IN s_kndnr&lt;/P&gt;&lt;P&gt;AND prctr IN s_prctr*.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 09:54:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-a-select-statement/m-p/3604069#M868048</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-03-25T09:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-a-select-statement/m-p/3604070#M868049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;since the 2 check statements are not dependant from the select, you can do them in front of your new Select into table statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 09:55:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-a-select-statement/m-p/3604070#M868049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T09:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-a-select-statement/m-p/3604071#M868050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;Not sure why the check keywords where embedded within the select statments...it will have no impact if the selection variable where outside.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could rewrite your new code as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check s_kndnr.&lt;/P&gt;&lt;P&gt;check s_prctr.&lt;/P&gt;&lt;P&gt;select * from ce4e001 into table v_ce4e001 where bukrs eq s_bukrs-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign points if it works.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;-Saif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 10:05:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-a-select-statement/m-p/3604071#M868050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T10:05:39Z</dc:date>
    </item>
  </channel>
</rss>

