<?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: view selection condition in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964084#M396097</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 taking out the single quotes.&lt;/P&gt;&lt;P&gt;  a~zzz IN (04 , 08)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt; Prasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; *Reward if it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Feb 2007 06:42:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-23T06:42:08Z</dc:date>
    <item>
      <title>view selection condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964081#M396094</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 find out that no 'IN' operator in selection condition. what should i do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT c&lt;SUB&gt;aaa c&lt;/SUB&gt;bbb c&lt;SUB&gt;ccc c&lt;/SUB&gt;ddd&lt;/P&gt;&lt;P&gt;   FROM tab1 AS a INNER JOIN tab2 AS b ON a&lt;SUB&gt;xxx = b&lt;/SUB&gt;xxx&lt;/P&gt;&lt;P&gt;                 INNER JOIN tab3 AS c ON b&lt;SUB&gt;yyy = c&lt;/SUB&gt;yyy&lt;/P&gt;&lt;P&gt;   INTO CORRESPONDING FIELDS OF TABLE itab&lt;/P&gt;&lt;P&gt;   WHERE a~xxx = i_xxx AND&lt;/P&gt;&lt;P&gt;         a~zzz IN ('04' , '08') AND&lt;/P&gt;&lt;P&gt;         b~type = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) for IN, how should i define in selection condition in maintain view&lt;/P&gt;&lt;P&gt;2) after i create the view, for the above selection statement, i can simplify to below, correct?&lt;/P&gt;&lt;P&gt;select * from zview where a~xxx = i_xxx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 06:19:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964081#M396094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T06:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: view selection condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964082#M396095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not getting what u r asking,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use in operator liek what u specified directly in the code also.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT c~aaa c~bbb c~ccc c~ddd
FROM tab1 AS a INNER JOIN tab2 AS b ON a~xxx = b~xxx
INNER JOIN tab3 AS c ON b~yyy = c~yyy
INTO CORRESPONDING FIELDS OF TABLE itab
WHERE a~xxx = i_xxx AND
a~zzz IN ( '04' , '08' ) AND
b~type = '1'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 06:26:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964082#M396095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T06:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: view selection condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964083#M396096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi El,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the IN statement in my program and its working perfectly fine.&lt;/P&gt;&lt;P&gt;Why don't you check your program??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 06:27:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964083#M396096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T06:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: view selection condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964084#M396097</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 taking out the single quotes.&lt;/P&gt;&lt;P&gt;  a~zzz IN (04 , 08)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt; Prasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; *Reward if it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 06:42:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964084#M396097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T06:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: view selection condition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964085#M396098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;nothing wrong with that sql statement. the sql statement is working fine.&lt;/P&gt;&lt;P&gt;what i want to know here is if i want to create a view base on the sql statement, I cannot find the 'IN' operator in the selection conditions tab in maintain view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also i have another question is that,&lt;/P&gt;&lt;P&gt;another shorter sql statement is base on view. i would like to know if the shorter sql statement correct if i use view. i think that is the beauty of view to make the processing faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 06:47:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-selection-condition/m-p/1964085#M396098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T06:47:22Z</dc:date>
    </item>
  </channel>
</rss>

