<?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: BAPI_PO_CREATE1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879696#M51392</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nuno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you fill in the PO_ITEM, SCHED_LINE with some values on the POSCHEDULE structure and filled the same values on the POSCHEDULEX structure? See below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  v_schdule_line       = v_schdule_line + 1.
  v_poitem             = v_poitem + 1.

  poschedule-po_item        = v_poitem * 10.
  poschedule-sched_line     = v_schdule_line.
  poschedule-delivery_date  = &amp;lt;DATE&amp;gt;.

  append poschedule.
  clear  poschedule.

*--Fill X structures
  poschedulex-po_item       = v_poitem * 10.
  poschedulex-sched_line    = v_schdule_line.
  poschedulex-po_itemx      = 'X'.
  poschedulex-delivery_date = 'X'.
  poschedulex-sched_linex   = 'X'.

  append poschedulex.
  clear  poschedulex.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your PO item numbers on the POITEM, POSCHEDULE and POSCHEDULEX structures should be same for the same item and the schedule line number should be the same on POSCHEDULE and the corresponding POSCHEDULEX structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if your po line item and schedule line item numbers are internally assigned, you need to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Mar 2005 22:03:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-03-16T22:03:23Z</dc:date>
    <item>
      <title>BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879693#M51389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'am using BAPI_PO_CREATE1 but the delivery date is not&lt;/P&gt;&lt;P&gt;passed to the created PO, i'am filling the tables poschedule and poschedulex but the items delivery date is not modified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;poschedule-po_item &lt;/P&gt;&lt;P&gt;poschedule-del_datcat_ext &lt;/P&gt;&lt;P&gt;poschedule-shed_line&lt;/P&gt;&lt;P&gt;poschedule-delivery_date &lt;/P&gt;&lt;P&gt;poschedule-quantity&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;poschedulex-po_item &lt;/P&gt;&lt;P&gt;poschedulex-del_datcat_ext &lt;/P&gt;&lt;P&gt;poschedulex-shed_line&lt;/P&gt;&lt;P&gt;poschedulex-delivery_date&lt;/P&gt;&lt;P&gt;poschedulex-quantity&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Nuno Gonçalves&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2005 11:24:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879693#M51389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-16T11:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879694#M51390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nuno i had the same problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to fill this fields to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      poschedule-delivery_date  = record_det-eeind_010.&lt;/P&gt;&lt;P&gt;      poschedulex-delivery_date = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      poschedule-stat_date      = record_det-eeind_010.&lt;/P&gt;&lt;P&gt;      poschedulex-stat_date     = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      poschedule-po_date        = record_det-eeind_010.&lt;/P&gt;&lt;P&gt;      poschedulex-po_date       = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this can help you. If it helps please don`t forget to reward the answer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Carlos A. Lerzundy &lt;/P&gt;&lt;P&gt;Venezuela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2005 12:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879694#M51390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-16T12:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879695#M51391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos, i've tried to fill the other two fields but&lt;/P&gt;&lt;P&gt;the result is the same, but thanks anyaway.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2005 18:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879695#M51391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-16T18:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879696#M51392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nuno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you fill in the PO_ITEM, SCHED_LINE with some values on the POSCHEDULE structure and filled the same values on the POSCHEDULEX structure? See below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  v_schdule_line       = v_schdule_line + 1.
  v_poitem             = v_poitem + 1.

  poschedule-po_item        = v_poitem * 10.
  poschedule-sched_line     = v_schdule_line.
  poschedule-delivery_date  = &amp;lt;DATE&amp;gt;.

  append poschedule.
  clear  poschedule.

*--Fill X structures
  poschedulex-po_item       = v_poitem * 10.
  poschedulex-sched_line    = v_schdule_line.
  poschedulex-po_itemx      = 'X'.
  poschedulex-delivery_date = 'X'.
  poschedulex-sched_linex   = 'X'.

  append poschedulex.
  clear  poschedulex.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your PO item numbers on the POITEM, POSCHEDULE and POSCHEDULEX structures should be same for the same item and the schedule line number should be the same on POSCHEDULE and the corresponding POSCHEDULEX structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if your po line item and schedule line item numbers are internally assigned, you need to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2005 22:03:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879696#M51392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-16T22:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879697#M51393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What was the issue Nuno?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2005 20:45:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879697#M51393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-04T20:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879698#M51394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nuno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also facing the same problem like, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  poschedule-del_datcat_ext = 'M'.&lt;/P&gt;&lt;P&gt;  poschedule-delivery_date  = '20050101'.&lt;/P&gt;&lt;P&gt;  -&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;  poschedulex-del_datcat_ext = 'X'&lt;/P&gt;&lt;P&gt;  poschedulex-del_datcat_ext = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the BAPI is taking as current date and the date category format is 'D'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly let me know, if you have any answer for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciated your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2005 02:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/879698#M51394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-25T02:03:42Z</dc:date>
    </item>
  </channel>
</rss>

