<?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 BAPI_PO_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create/m-p/1011757#M79057</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am Using BAPI_PO_CREATE to create PO from Basic IDOC type PORDCR04. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the Segments of this IDOC type has been extended with 'Z' segment containing two fields 'Unit of Net weight' and 'Total Net weight'. I want to pass the value of these fields in the BAPI and want to update the fields GEWEI and NTGEW in table EKPO and it should be displayed in the PO (ME23N) as well .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried finding some fields in BAPI_PO_CREATE (via Se37) but there is no field available for these. How this is possible (pass the value to BAPI and update in DB tables) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Manik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Aug 2005 09:54:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-18T09:54:26Z</dc:date>
    <item>
      <title>BAPI_PO_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create/m-p/1011757#M79057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am Using BAPI_PO_CREATE to create PO from Basic IDOC type PORDCR04. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the Segments of this IDOC type has been extended with 'Z' segment containing two fields 'Unit of Net weight' and 'Total Net weight'. I want to pass the value of these fields in the BAPI and want to update the fields GEWEI and NTGEW in table EKPO and it should be displayed in the PO (ME23N) as well .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried finding some fields in BAPI_PO_CREATE (via Se37) but there is no field available for these. How this is possible (pass the value to BAPI and update in DB tables) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Manik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2005 09:54:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create/m-p/1011757#M79057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-18T09:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create/m-p/1011758#M79058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to copy the standard FM (IDOC_INPUT_PORDCR) to accomplish this, as Z-segment are not read.&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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2005 10:24:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create/m-p/1011758#M79058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-18T10:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create/m-p/1011759#M79059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Copy the standard function module and call the BAPI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  call BAPI-function in this system                                  *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_PO_CREATE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        PO_HEADER                  = PO_HEADER&lt;/P&gt;&lt;P&gt;        PO_HEADER_ADD_DATA         = PO_HEADER_ADD_DATA&lt;/P&gt;&lt;P&gt;        HEADER_ADD_DATA_RELEVANT   = HEADER_ADD_DATA_RELEVANT&lt;/P&gt;&lt;P&gt;        PO_ADDRESS                 = PO_ADDRESS&lt;/P&gt;&lt;P&gt;        SKIP_ITEMS_WITH_ERROR      = SKIP_ITEMS_WITH_ERROR&lt;/P&gt;&lt;P&gt;        ITEM_ADD_DATA_RELEVANT     = ITEM_ADD_DATA_RELEVANT&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        PURCHASEORDER              = PURCHASEORDER&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        PO_ITEMS                   = PO_ITEMS&lt;/P&gt;&lt;P&gt;        PO_ITEM_ADD_DATA           = PO_ITEM_ADD_DATA&lt;/P&gt;&lt;P&gt;        PO_ITEM_SCHEDULES          = PO_ITEM_SCHEDULES&lt;/P&gt;&lt;P&gt;        PO_ITEM_ACCOUNT_ASSIGNMENT = PO_ITEM_ACCOUNT_ASSIGNMENT&lt;/P&gt;&lt;P&gt;        PO_ITEM_TEXT               = PO_ITEM_TEXT&lt;/P&gt;&lt;P&gt;        RETURN                     = RETURN&lt;/P&gt;&lt;P&gt;        PO_LIMITS                  = PO_LIMITS&lt;/P&gt;&lt;P&gt;        PO_CONTRACT_LIMITS         = PO_CONTRACT_LIMITS&lt;/P&gt;&lt;P&gt;        PO_SERVICES                = PO_SERVICES&lt;/P&gt;&lt;P&gt;        PO_SRV_ACCASS_VALUES       = PO_SRV_ACCASS_VALUES&lt;/P&gt;&lt;P&gt;        PO_SERVICES_TEXT           = PO_SERVICES_TEXT&lt;/P&gt;&lt;P&gt;        PO_BUSINESS_PARTNER        = PO_BUSINESS_PARTNER&lt;/P&gt;&lt;P&gt;        EXTENSIONIN                = EXTENSIONIN&lt;/P&gt;&lt;P&gt;        POADDRDELIVERY             = POADDRDELIVERY&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS                     = 1.&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;&lt;/P&gt;&lt;P&gt;Aveek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2005 10:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create/m-p/1011759#M79059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-18T10:27:31Z</dc:date>
    </item>
  </channel>
</rss>

