<?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: SAP Query with Date Range in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237851#M1984996</link>
    <description>&lt;P&gt;Thank you, Matija! It works.&lt;/P&gt;</description>
    <pubDate>Tue, 15 Sep 2020 06:20:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2020-09-15T06:20:58Z</dc:date>
    <item>
      <title>SAP Query with Date Range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237846#M1984991</link>
      <description>&lt;P&gt;Hi! I am new to the query generator. How do I create a summary of all issue for production rows (IGE1) with posting date range? I tried using the query wizard, but I cannot seem to add the filter for posting date range. Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2020 09:36:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237846#M1984991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-09-07T09:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Query with Date Range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237847#M1984992</link>
      <description>&lt;P&gt;Hi and welcome to
the SAP Community!&lt;/P&gt;&lt;P&gt;Thank
you for visiting SAP Community to get answers to your questions. Since you're
asking a question here for the first time, I recommend that you familiarize
yourself with &lt;A href="https://community.sap.com/resources/questions-and-answers"&gt;https://community.sap.com/resources/questions-and-answers&lt;/A&gt;
(if you haven't already), as it provides tips for preparing questions that draw
responses from our members. For example, you can outline what steps you took to
find answers (and why they weren't helpful) and share screenshots of what
you've seen/done. The more details you provide, the more likely it is that
members will be able to assist you.&lt;/P&gt;&lt;P&gt;Should
you wish, you can revise your question by selecting Actions, then Edit
(although once someone answers your question, you'll lose the ability to edit
the question -- but if that happens, you can leave more details in a comment).&lt;/P&gt;&lt;P&gt;Finally,
if you're hoping to connect with readers, please consider adding a picture to
your profile. Here's how you do it: &lt;A href="https://www.youtube.com/watch?v=F5JdUbyjfMA&amp;amp;list=PLpQebylHrdh5s3gwy-h6RtymfDpoz3vDS"&gt;https://www.youtube.com/watch?v=F5JdUbyjfMA&amp;amp;list=PLpQebylHrdh5s3gwy-h6RtymfDpoz3vDS&lt;/A&gt;.
By personalizing your profile with a photo of you, you encourage readers to
respond.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Julia
SAP Community Moderator&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2020 09:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237847#M1984992</guid>
      <dc:creator>former_member30</dc:creator>
      <dc:date>2020-09-07T09:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Query with Date Range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237848#M1984993</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;the reason you cannot find the filter is because the date itself is saved in the header table (OIGE). You need to join those two tables:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT *
FROM IGE1 T0
INNER JOIN OIGE T1 ON T0."DocEntry" = T1."DocEntry"
WHERE T1."DocDate" &amp;gt; [%0] AND  T1."DocDate" &amp;lt;= [%1]&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Matija&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2020 06:43:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237848#M1984993</guid>
      <dc:creator>mgregur</dc:creator>
      <dc:date>2020-09-08T06:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Query with Date Range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237849#M1984994</link>
      <description>&lt;P&gt;Hi Matija,&lt;/P&gt;&lt;P&gt;Thank you! It works. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Can you also help me figure out how I can add the header details of OIGE, specifically the document number?&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 00:08:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237849#M1984994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-09-11T00:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Query with Date Range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237850#M1984995</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Document Number is OIGE."DocNum" so just add it to your select.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Matija&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 06:06:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237850#M1984995</guid>
      <dc:creator>mgregur</dc:creator>
      <dc:date>2020-09-11T06:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Query with Date Range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237851#M1984996</link>
      <description>&lt;P&gt;Thank you, Matija! It works.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2020 06:20:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237851#M1984996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-09-15T06:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Query with Date Range</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237852#M1984997</link>
      <description>&lt;P&gt;I have a simple query for that.&lt;/P&gt;&lt;P&gt;SELECT T1.[ItemCode], T1.[Dscription], SUM(T1.[Quantity]) FROM OIGE T0 INNER JOIN IGE1 T1 ON T0.[DocEntry] = T1.[DocEntry] WHERE T0.[DocDate] BETWEEN [%0] AND [%1] GROUP BY T1.[ItemCode], T1.[Dscription], T1.[Quantity] ORDER BY T1.[ItemCode]&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 02:45:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-query-with-date-range/m-p/12237852#M1984997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2021-01-26T02:45:11Z</dc:date>
    </item>
  </channel>
</rss>

