<?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 Function module for Open Sales Orders. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-open-sales-orders/m-p/1120126#M108709</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u any one tell me is there any standard function module to&lt;/P&gt;&lt;P&gt;retrieve OPEN-SALES orders. I tried to debug VA05 but not of use...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Sanjay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Feb 2006 06:44:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-01T06:44:17Z</dc:date>
    <item>
      <title>Function module for Open Sales Orders.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-open-sales-orders/m-p/1120126#M108709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u any one tell me is there any standard function module to&lt;/P&gt;&lt;P&gt;retrieve OPEN-SALES orders. I tried to debug VA05 but not of use...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Sanjay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2006 06:44:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-open-sales-orders/m-p/1120126#M108709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-01T06:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for Open Sales Orders.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-open-sales-orders/m-p/1120127#M108710</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;check the table VBUK for the sales order header status.&lt;/P&gt;&lt;P&gt;                VBUP for item status&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vijay Babu Dudla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2006 06:58:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-open-sales-orders/m-p/1120127#M108710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-01T06:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for Open Sales Orders.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-open-sales-orders/m-p/1120128#M108711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;  you can get open sales orders from vbuk and vbup &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT&lt;/P&gt;&lt;P&gt;         A~VBELN&lt;/P&gt;&lt;P&gt;         A~GBSTK&lt;/P&gt;&lt;P&gt;         B~GBSTA FROM VBUK AS A&lt;/P&gt;&lt;P&gt;         INNER JOIN VBUP AS B&lt;/P&gt;&lt;P&gt;         ON A&lt;SUB&gt;VBELN = B&lt;/SUB&gt;VBELN  INTO TABLE T_OPENS&lt;/P&gt;&lt;P&gt;         FOR ALL ENTRIES IN T_VBELN WHERE A~VBELN = T_VBELN-VBELN&lt;/P&gt;&lt;P&gt;        AND  A~GBSTK IN ('A','B')&lt;/P&gt;&lt;P&gt;         AND B~GBSTA IN ('A','B').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in t_vebeln table is haveing sales orders by user selection you can get it like this&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;varma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2006 07:17:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-open-sales-orders/m-p/1120128#M108711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-01T07:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for Open Sales Orders.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-open-sales-orders/m-p/1120129#M108712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for the response. Actually i am aware of this join logic. I was looking for a function module which gives me complete details including the delivery information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I found it...&lt;/P&gt;&lt;P&gt;SD_SALES_ORDER_STATUS_WWW&lt;/P&gt;&lt;P&gt;Thank you Sujith for FM details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Sanjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2006 07:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-open-sales-orders/m-p/1120129#M108712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-01T07:56:41Z</dc:date>
    </item>
  </channel>
</rss>

