<?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 Shipping point in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953442#M392517</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 have a custom table with fields :&lt;/P&gt;&lt;P&gt;belnr, posnr, btyp, aufnr, ebeln, ebelp, livbeln, liposnr,matnr,wadat,kunnr,werks,bmeinh,getri,inaktiv,wabukz,erdat,aedat,loekz.&lt;/P&gt;&lt;P&gt;Custom Transaction with fields :&lt;/P&gt;&lt;P&gt;vbeln (field name belnr) , aufnr, delivery vbeln ( field name livbeln ),werks, mat .avail.dat ( mbdat ), transport.plan date(tddat),&lt;/P&gt;&lt;P&gt;matnr, and sales order item (posnr).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to select sales order , item from custom table based on plant (werks) shipping point , and delivery creation date.&lt;/P&gt;&lt;P&gt;how can i relate shipping point and delivery creation date to my query.&lt;/P&gt;&lt;P&gt;For delivery creation date, it should be selected based on current date+-2 and should choose MBDAT OR TDDAT which ever is earlier based on current date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would appreciate if anyone can give me som idea and full points r rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx.&lt;/P&gt;&lt;P&gt;Rag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Feb 2007 05:34:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-21T05:34:37Z</dc:date>
    <item>
      <title>Shipping point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953442#M392517</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 have a custom table with fields :&lt;/P&gt;&lt;P&gt;belnr, posnr, btyp, aufnr, ebeln, ebelp, livbeln, liposnr,matnr,wadat,kunnr,werks,bmeinh,getri,inaktiv,wabukz,erdat,aedat,loekz.&lt;/P&gt;&lt;P&gt;Custom Transaction with fields :&lt;/P&gt;&lt;P&gt;vbeln (field name belnr) , aufnr, delivery vbeln ( field name livbeln ),werks, mat .avail.dat ( mbdat ), transport.plan date(tddat),&lt;/P&gt;&lt;P&gt;matnr, and sales order item (posnr).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to select sales order , item from custom table based on plant (werks) shipping point , and delivery creation date.&lt;/P&gt;&lt;P&gt;how can i relate shipping point and delivery creation date to my query.&lt;/P&gt;&lt;P&gt;For delivery creation date, it should be selected based on current date+-2 and should choose MBDAT OR TDDAT which ever is earlier based on current date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would appreciate if anyone can give me som idea and full points r rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx.&lt;/P&gt;&lt;P&gt;Rag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 05:34:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953442#M392517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T05:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: Shipping point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953443#M392518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;v_date = sy-datum + 2.

SELECT vbeln posnr 
              from zxxx
              into table i_zxxx
              where werks IN s_werks
               AND  vstel IN s_vstel
               AND  erdat =  v_date
              AND   ( mbdat &amp;gt;= sy-datum OR 
                          tddat &amp;gt;= sy-datum ).

SORT i_zxxx.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 05:39:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953443#M392518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T05:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Shipping point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953444#M392519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;This is just for your idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First try to get sales details from vbak and vbap&lt;/P&gt;&lt;P&gt;Here you get sales order number,item&lt;/P&gt;&lt;P&gt;After get delivery details from likp and lips,you pass vbeln here and you get delivery number,item and also shipping details&lt;/P&gt;&lt;P&gt;For material  availability check EKET table(use ebeln and ebelp)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 05:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953444#M392519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T05:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Shipping point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953445#M392520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Judith,&lt;/P&gt;&lt;P&gt;    ur solution was helpful.&lt;/P&gt;&lt;P&gt;thx and full points r rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 05:45:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953445#M392520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T05:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Shipping point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953446#M392521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi RK,&lt;/P&gt;&lt;P&gt;    the idea was help ful.&lt;/P&gt;&lt;P&gt;thx.&lt;/P&gt;&lt;P&gt;points r rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 05:46:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-point/m-p/1953446#M392521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T05:46:09Z</dc:date>
    </item>
  </channel>
</rss>

