<?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: Replace the BAPI_PO_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977303#M702887</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to se37 and open both the bapis and check the parameters(both import and export, tables) dey hav different dictionary types so u've to type ur paramters and pass to new bapi accordingly...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Nov 2007 05:52:05 GMT</pubDate>
    <dc:creator>former_member188827</dc:creator>
    <dc:date>2007-11-15T05:52:05Z</dc:date>
    <item>
      <title>Replace the BAPI_PO_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977299#M702883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New BAPI - &amp;lt;b&amp;gt;BAPI_PO_CREATE1&amp;lt;/b&amp;gt; in place of &amp;lt;b&amp;gt;BAPI_PO_CREATE&amp;lt;/b&amp;gt;, I was not able to pass the current parameters in &amp;lt;b&amp;gt;BAPI_PO_CREATE1&amp;lt;/b&amp;gt;, witch all ready available in &amp;lt;b&amp;gt;BAPI_PO_CREATE&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one please suggest me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gourisankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 09:49:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977299#M702883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T09:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Replace the BAPI_PO_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977300#M702884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create1 is for transaction ME21N enjoy transaction&lt;/P&gt;&lt;P&gt;and create is for ME21 old transaction &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the documentation of bapi and pass teh values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 09:52:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977300#M702884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T09:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Replace the BAPI_PO_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977301#M702885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to pass the same parameter to BAPI_PO_CREATE1,Can you please guide me how to pass currectly.The same parameters i have to pass the BAPI_PO_CREATE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below i am provind the coding also,please look and help me.&lt;/P&gt;&lt;P&gt;&lt;/P&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 05:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977301#M702885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-15T05:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Replace the BAPI_PO_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977302#M702886</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 below links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="163729"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2756575"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 05:46:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977302#M702886</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-11-15T05:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Replace the BAPI_PO_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977303#M702887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to se37 and open both the bapis and check the parameters(both import and export, tables) dey hav different dictionary types so u've to type ur paramters and pass to new bapi accordingly...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 05:52:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-the-bapi-po-create/m-p/2977303#M702887</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-11-15T05:52:05Z</dc:date>
    </item>
  </channel>
</rss>

