<?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: query on select stmt in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009779#M957947</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Martin has a point..I agree to him..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jun 2008 08:20:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-24T08:20:39Z</dc:date>
    <item>
      <title>query on select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009774#M957942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;below is the extraction logic&lt;/P&gt;&lt;P&gt;1.	Select all invoice documents from Table VBRK where Sales Organization VBRK-VKORG, Distribution Channel VBRK- VTWEG and Division VBRK-SPART matches to Sales Organization, Distribution Channel and Division specified in the selection parameters and SD Document Catergory VBRK- VBTYP &amp;lt;&amp;gt; N u2013 Invoice Cancellation type S1 and S2.&lt;/P&gt;&lt;P&gt;2.	Select all invoice documents from the above where all Sold-to party/Ship-to party customers VBRK-KUNAG and payer customers VBRK-KUNRG matches to Sold-to party/Ship-to party and payer specified in the selection parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to write the select stmts for the abluve logic??.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009774#M957942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: query on select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009775#M957943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why ask others to write your code. How will you learn. Try it yourself then if you have problems then ask.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:15:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009775#M957943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: query on select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009776#M957944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select * &lt;/P&gt;&lt;P&gt;  from vbrk&lt;/P&gt;&lt;P&gt;   into table i_vbr&lt;/P&gt;&lt;P&gt;where vkorg  in s_vkorg&lt;/P&gt;&lt;P&gt;    and vtweg in s_vtweg&lt;/P&gt;&lt;P&gt;    and sprat in s_sprat&lt;/P&gt;&lt;P&gt;    and kunag in s_kunag&lt;/P&gt;&lt;P&gt;    and kunrg in s_kunrg.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009776#M957944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: query on select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009777#M957945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;The specification is so clear, and if you are not able to build a SQL query out of the info U've.. you need training! Get trained 1st, learn and work.. or at least give it a try..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Raghu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:18:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009777#M957945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: query on select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009778#M957946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Usha Devi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do you feel the need to respond to this in a way to only receive points. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oh and by the why, that SQL you have provided.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:19:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009778#M957946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: query on select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009779#M957947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Martin has a point..I agree to him..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:20:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009779#M957947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: query on select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009780#M957948</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;I will lock this thread. This is not a question that should be discussed in this forum. Your specification is so close to real code that even without any ABAP knowledge a look into some demo programs and the online help for 'SELECT' will solve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Martin said: If you tried it and have any particular problems then we can discuss them here. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jan Stallkamp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-select-stmt/m-p/4009780#M957948</guid>
      <dc:creator>JanStallkamp</dc:creator>
      <dc:date>2008-06-24T08:32:16Z</dc:date>
    </item>
  </channel>
</rss>

