<?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_CHANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-change/m-p/2937825#M692494</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;You can join table EKKO and EKPO to find the corresponding PO based on your above criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EKKO-BSART (Document Type)&lt;/P&gt;&lt;P&gt;EKKO-EKGRP (Purchasing Group)&lt;/P&gt;&lt;P&gt;EKKO-AUTLF (Complete Delivery Indicator)&lt;/P&gt;&lt;P&gt;EKPO-MATNR (Material)&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2007 14:45:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-18T14:45:47Z</dc:date>
    <item>
      <title>BAPI_PO_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-change/m-p/2937822#M692491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on an interface where I need to change the price of the PO's, and for this I will be getting an input file which will have the material no's and the price associated to those. I need to select PO's based on the following conditions:&lt;/P&gt;&lt;P&gt;document type = 'NB' and purchasing group = '111' and DCI = ' '.&lt;/P&gt;&lt;P&gt;and then once the PO is selected I need to update the price of the PO's for a specific material from the input file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that I need to use BAPI_PO_CHANGE, but can you please tell me how to select the PO's based on the above criterion, I mean how will deal this situation in this BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rajeev....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 14:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-change/m-p/2937822#M692491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T14:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-change/m-p/2937823#M692492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to EKKO to get the POs satisfying the criteria you have. Then loop at the POs table and call BAPI_PO_GETDETAIL1. Once you have the PO details, identify the fields that you want to update, do the updates and call BAPI_PO_CHANGE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 14:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-change/m-p/2937823#M692492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T14:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-change/m-p/2937824#M692493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to firs textract POS from EKKO table for the entered conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT EBELN&lt;/P&gt;&lt;P&gt;    INTO TABLE IT_EKKO&lt;/P&gt;&lt;P&gt;    FROM EKKO&lt;/P&gt;&lt;P&gt;    WHERE BSART = 'NB' AND&lt;/P&gt;&lt;P&gt;                 EKGRP = 111' AND&lt;/P&gt;&lt;P&gt;                 LOEKZ = SPACE.&lt;/P&gt;&lt;P&gt;I believe DCI in you question is Deletion indicator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you have all PO Nos, select entries from EKPO table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT EBELN&lt;/P&gt;&lt;P&gt;              EBELP&lt;/P&gt;&lt;P&gt;              MATNR&lt;/P&gt;&lt;P&gt;              NETPR&lt;/P&gt;&lt;P&gt;    INTO TABLE IT_EKPO&lt;/P&gt;&lt;P&gt;    FROM EKPO&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN IT_EKKO&lt;/P&gt;&lt;P&gt;    WHERE EBELN = IT_EKKO-EBELN.&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;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 14:45:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-change/m-p/2937824#M692493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T14:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-change/m-p/2937825#M692494</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;You can join table EKKO and EKPO to find the corresponding PO based on your above criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EKKO-BSART (Document Type)&lt;/P&gt;&lt;P&gt;EKKO-EKGRP (Purchasing Group)&lt;/P&gt;&lt;P&gt;EKKO-AUTLF (Complete Delivery Indicator)&lt;/P&gt;&lt;P&gt;EKPO-MATNR (Material)&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 14:45:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-change/m-p/2937825#M692494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T14:45:47Z</dc:date>
    </item>
  </channel>
</rss>

