<?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: Quotation configuration update using BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920446#M382472</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I recall that we wrote a BDC on VA22 for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Aug 2008 06:07:19 GMT</pubDate>
    <dc:creator>sagar-acharya</dc:creator>
    <dc:date>2008-08-07T06:07:19Z</dc:date>
    <item>
      <title>Quotation configuration update using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920441#M382467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are developing a FM for inbound processing of SD quotations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main purpose is to update quotation configuration (VC). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the steps we are following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Fetch quotation details using BAPI_QUOTATION_GETDETAILBOS.&lt;/P&gt;&lt;P&gt;2) Change characteristic values in table parameter QUOTATIONCFGSCUVALS.&lt;/P&gt;&lt;P&gt;3) Use BAPI_CUSTOMERQUOTATION_CHANGE to change VC. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 3rd step, we are passing all configuration related tables. But still the quotation VC does not get updated. Also note that I do not get any error message in RETURN table. We would like to avoid using BDC on VA22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_CUSTOMERQUOTATION_CHANGE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      salesdocument                = bapivbeln-vbeln&lt;/P&gt;&lt;P&gt;      QUOTATION_HEADER_IN          = bapisdh1&lt;/P&gt;&lt;P&gt;      quotation_header_inx         = bapisdh1x&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SIMULATION                   =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    BEHAVE_WHEN_ERROR            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    INT_NUMBER_ASSIGNMENT        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    LOGIC_SWITCH                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      return                       = i_return&lt;/P&gt;&lt;P&gt;      QUOTATION_ITEM_IN            = i_item&lt;/P&gt;&lt;P&gt;      QUOTATION_ITEM_INX           = i_itemx&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    PARTNERS                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    PARTNERCHANGES               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    PARTNERADDRESSES             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    CONDITIONS_IN                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    CONDITIONS_INX               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      QUOTATION_CFGS_REF           = i_curefm&lt;/P&gt;&lt;P&gt;      QUOTATION_CFGS_INST          = i_cuinsm&lt;/P&gt;&lt;P&gt;      QUOTATION_CFGS_PART_OF       = i_cuprtm&lt;/P&gt;&lt;P&gt;      QUOTATION_CFGS_VALUE         = i_cuvalm&lt;/P&gt;&lt;P&gt;      QUOTATION_CFGS_BLOB          = i_cublbm&lt;/P&gt;&lt;P&gt;      QUOTATION_CFGS_VK            = i_cuvkm&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    QUOTATION_CFGS_REFINST       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SCHEDULE_LINES               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SCHEDULE_LINESX              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    QUOTATION_TEXT               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    QUOTATION_KEYS               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    EXTENSIONIN                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    NFMETALLITMS                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;	.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      wait   = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    return =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;	.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please help here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2007 11:29:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920441#M382467</guid>
      <dc:creator>sagar-acharya</dc:creator>
      <dc:date>2007-02-14T11:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: Quotation configuration update using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920442#M382468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;For Return table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF syst-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;READ TABLE i_return INTO wa_return&lt;/P&gt;&lt;P&gt;WITH KEY type = 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT syst-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and make sure the parameters you are passing is correct...&lt;/P&gt;&lt;P&gt;Before you are calling the FM ,you shud append data to the tables and pass to the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will be useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2007 11:37:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920442#M382468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-14T11:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Quotation configuration update using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920443#M382469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sagar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please confirm if you are passing an IMP value :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bapisdh1x-UPDATEFLAG = 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2007 11:41:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920443#M382469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-14T11:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Quotation configuration update using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920444#M382470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I am passing bapisdh1x-UPDATEFLAG = 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2007 11:42:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920444#M382470</guid>
      <dc:creator>sagar-acharya</dc:creator>
      <dc:date>2007-02-14T11:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Quotation configuration update using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920445#M382471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sagar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please update where is this Quotation Configuration field is maintained?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it on Item level and is the field 'CONFIG_ID'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so please confirm if you are maintianing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_itemx-CONFIG_ID = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2007 11:50:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920445#M382471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-14T11:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Quotation configuration update using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920446#M382472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I recall that we wrote a BDC on VA22 for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 06:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quotation-configuration-update-using-bapi/m-p/1920446#M382472</guid>
      <dc:creator>sagar-acharya</dc:creator>
      <dc:date>2008-08-07T06:07:19Z</dc:date>
    </item>
  </channel>
</rss>

