<?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 Problem in BAPI_PO_CREATE1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367342#M181455</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have used bapi BAPI_PO_CREATE1 for material po ans service po its works fine for Account Assignment as WBS Element..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; But For Account Assignment as Fund Center it gives me error message like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error on PO No 9100000027 Error is No funds center entered/derived in item 00010 5000 215001 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you have some solution then help me for same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 May 2006 04:47:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-02T04:47:07Z</dc:date>
    <item>
      <title>Problem in BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367342#M181455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have used bapi BAPI_PO_CREATE1 for material po ans service po its works fine for Account Assignment as WBS Element..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; But For Account Assignment as Fund Center it gives me error message like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error on PO No 9100000027 Error is No funds center entered/derived in item 00010 5000 215001 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you have some solution then help me for same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2006 04:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367342#M181455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-02T04:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367343#M181456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Priyank &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check with the following Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : l_po_header LIKE bapimepoheader.&lt;/P&gt;&lt;P&gt;DATA : l_po_headerx LIKE bapimepoheaderx.&lt;/P&gt;&lt;P&gt;DATA : l_purchaseorder LIKE bapimepoheader-po_number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF t_return OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bapiret2.&lt;/P&gt;&lt;P&gt;DATA : END OF t_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF t_po_items OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bapimepoitem.&lt;/P&gt;&lt;P&gt;DATA : END OF t_po_items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF t_po_itemsx OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bapimepoitemx.&lt;/P&gt;&lt;P&gt;DATA : END OF t_po_itemsx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : t_po_account LIKE bapimepoaccount OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : t_po_accountx LIKE bapimepoaccountx OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Populate these parameters according to your requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_PO_CREATE1'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      poheader                     = l_po_header&lt;/P&gt;&lt;P&gt;     poheaderx                    = l_po_headerx&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     exppurchaseorder             = l_purchaseorder&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;     return                       = t_return&lt;/P&gt;&lt;P&gt;     poitem                       = t_po_items&lt;/P&gt;&lt;P&gt;     poitemx                      = t_po_itemsx&lt;/P&gt;&lt;P&gt;     poaccount                    = t_po_account&lt;/P&gt;&lt;P&gt;     poaccountx                   = t_po_accountx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2006 05:43:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367343#M181456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-02T05:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367344#M181457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sreenivasulu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have passed all these tables but its gives error same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2006 06:48:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367344#M181457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-02T06:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367345#M181458</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;Have you passed 'X' to field FUNDS_CTR of structure BAPIMEPOACCOUNTX in case of fund center assignment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2006 07:59:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367345#M181458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-02T07:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367346#M181459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have passed all these, actually its work fine but fund center and commitment item are not passed in newly created PO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PO is also generate but these two values are not come in PO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2006 08:46:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367346#M181459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-03T08:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367347#M181460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Priyank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to do the following,&lt;/P&gt;&lt;P&gt;In BAPI_PO_CREATE1 u need to fill in POITEM and POITEMX for funds and commitment and then it will be transfered to the PO irrespective of account assignment. Fill the structure BAPIMEPOITEM-FUNDS_CTR and BAPIMEPOITEM-CMMT_ITEM and set the BAPIMEPOITEMX-FUNDS_CTR and  BAPIMEPOITEMX-CMMT_ITEM to X.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2006 09:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-po-create1/m-p/1367347#M181460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-03T09:04:46Z</dc:date>
    </item>
  </channel>
</rss>

