<?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: Pricing Condition value change in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624424#M279076</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the FM &amp;lt;b&amp;gt;SD_SALES_ITEM_COND_MAINTAIN.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Sep 2006 06:41:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-20T06:41:00Z</dc:date>
    <item>
      <title>Pricing Condition value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624423#M279075</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;        Can anyone suggest me the name of the BAPI or Function Module, using which we can change the value of particular condition type in an document.&lt;/P&gt;&lt;P&gt;For example, in my sales document i have PR00 condition.and it has some value $100. based on some conditions i want to change the value from $100 to $110.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Durga.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Sep 2006 06:33:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624423#M279075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-20T06:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Pricing Condition value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624424#M279076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the FM &amp;lt;b&amp;gt;SD_SALES_ITEM_COND_MAINTAIN.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Sep 2006 06:41:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624424#M279076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-20T06:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: Pricing Condition value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624425#M279077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please tell me as what are the parameters we need to pass to this function module ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Sep 2006 08:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624425#M279077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-20T08:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Pricing Condition value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624426#M279078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to pass a table IT_KONVKOM_ITEM           LIKE STANDARD TABLE OF KONVKOM containing the condition details to be changed.Check out the structure KONVKOM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Sep 2006 08:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624426#M279078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-20T08:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Pricing Condition value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624427#M279079</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 use BAPI: BAPI_SALESORDER_CHANGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters to be passed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Import Parameters:
  SALESDOCUMENT: Sales Document Number
  ORDER_HEADER_INX: Update flag to be set 'X'.
Tables:
  CONDITIONS_IN: ITM_NUMBER - Sales Document Item Number
                 Condition Type - PR00 in your case
                 Condition Value - 110.00
                 Currency = 'USD'.
   CONDITION_INX: ITM_NUMBER - Sales Document Item Number
                  Condition Type - PR00
                  Update Flag - 'X'
                  Condition Value = 'X'
                  Currency = 'X'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Note that you have explicitly do the commit work using&lt;/P&gt;&lt;P&gt;FM: BAPI_TRANSACTION_COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Sep 2006 09:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624427#M279079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-20T09:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Pricing Condition value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624428#M279080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Durga&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When updating price condition using BAPI_SALESORDER_CHANGE you may run into the problem of duplicating instead of updating your price condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A solution for this problem has been provided by Eswar Rao Boddeti in another thread:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;x&amp;gt;Import Paramters:&amp;lt;/x&amp;gt;
     SALESDOCUMENT - Sales Document Number
     ORDER_HEADER_INX - UPDATEFLAG as &amp;lt;x&amp;gt;'U'&amp;lt;/x&amp;gt;.
     LOGIC_SWITCH - Import Structure - Pass 'X' to LOGIC_SWITCH-COND_HANDL.
  &amp;lt;x&amp;gt;Tables:&amp;lt;/x&amp;gt;
     CONDITIONS_IN - ITM_NUMBER,
                     COND_COUNT, -&amp;gt; Condition counter same as KONV-ZAEHK generally it is &amp;lt;x&amp;gt;'01'&amp;lt;/x&amp;gt;
                     COND_TYPE,
                     COND_VALUE,
                     CURRENCY.
     CONDITIONS_INX - ITM_NUMBER,
                      COND_COUNT,
                      COND_TYPE,
                      UPDATEFLAG as &amp;lt;x&amp;gt;'U'&amp;lt;/x&amp;gt;,
                      CURRENCY.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The condition counter COND_COUNT usually should be = '01'. To retrieve this counter you can use &amp;lt;b&amp;gt;BAPISDORDER_GETDETAILEDLIST&amp;lt;/b&amp;gt; for your sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Nov 2006 05:58:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-condition-value-change/m-p/1624428#M279080</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2006-11-26T05:58:11Z</dc:date>
    </item>
  </channel>
</rss>

