<?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_SALESORDER_CHANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279489#M784260</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the return-table for any errors or warnings....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have success-messages only, CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jan 2008 14:49:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-14T14:49:05Z</dc:date>
    <item>
      <title>BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279483#M784254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has any one successfully implemented the BAPI_SALESORDER_CHANGE Bapi to change the Z fields in a sales order ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have extended the corresponding structures,I have used update flag = 'U' and also passed 'X' to update the changed field...but still it is not updating the fields &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have gone through lot of threads in SDN but not able to find any thread which has solution &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one help me out on this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;1. We are able to create the Sales order with                BAPI_SALESORDER_CREATEFROMDAT2 ...able to populate all the Z Fields also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I am using 4.7EE version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:34:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279483#M784254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279484#M784255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here´s a coding example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It´s not for salesorder but contracts, but it works exactly the same way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: ls_vbak                TYPE vbak,&lt;/P&gt;&lt;P&gt;        ls_hcest               TYPE /lig/sdt_hcest.&lt;/P&gt;&lt;P&gt;  DATA: ls_extensionin         TYPE bapiparex,&lt;/P&gt;&lt;P&gt;        lt_extensionin         TYPE bapiparextab,&lt;/P&gt;&lt;P&gt;        ls_contract_header_in  TYPE bapisdh1,&lt;/P&gt;&lt;P&gt;        ls_contract_header_inx TYPE bapisdh1x,&lt;/P&gt;&lt;P&gt;        lt_return              TYPE tt_bapiret2,&lt;/P&gt;&lt;P&gt;        l_return               TYPE bapiret2,&lt;/P&gt;&lt;P&gt;        ls_bape_vbak           TYPE bape_vbak,&lt;/P&gt;&lt;P&gt;        ls_bape_vbakx          TYPE bape_vbakx.&lt;/P&gt;&lt;P&gt;  DATA: l_length_key           TYPE i,&lt;/P&gt;&lt;P&gt;        l_length_data          TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill BAPI structures&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ls_contract_header_inx-updateflag = 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ls_bape_vbak-vbeln = i_vbeln.&lt;/P&gt;&lt;P&gt;  ls_bape_vbak-/lig/hccestat = i_cestat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ls_bape_vbakx-vbeln = i_vbeln.&lt;/P&gt;&lt;P&gt;  ls_bape_vbakx-/lig/hccestat = yhcon_true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DESCRIBE FIELD ls_extensionin-structure LENGTH l_length_key IN CHARACTER MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: ls_extensionin, l_length_data.&lt;/P&gt;&lt;P&gt;  ls_extensionin-structure  = yhcon_bape_vbak.&lt;/P&gt;&lt;P&gt;  DESCRIBE FIELD ls_bape_vbak LENGTH l_length_data IN CHARACTER MODE.&lt;/P&gt;&lt;P&gt;  ls_extensionin+l_length_key(l_length_data) = ls_bape_vbak.&lt;/P&gt;&lt;P&gt;  APPEND ls_extensionin TO lt_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: ls_extensionin, l_length_data.&lt;/P&gt;&lt;P&gt;  ls_extensionin-structure  = yhcon_bape_vbakx.&lt;/P&gt;&lt;P&gt;  DESCRIBE FIELD ls_bape_vbakx LENGTH l_length_data IN CHARACTER MODE.&lt;/P&gt;&lt;P&gt;  ls_extensionin+l_length_key(l_length_data) = ls_bape_vbakx.&lt;/P&gt;&lt;P&gt;  APPEND ls_extensionin TO lt_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call standard BAPI to do the job&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_CUSTOMERCONTRACT_CHANGE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      salesdocument       = i_vbeln&lt;/P&gt;&lt;P&gt;      contract_header_in  = ls_contract_header_in&lt;/P&gt;&lt;P&gt;      contract_header_inx = ls_contract_header_inx&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      return              = lt_return&lt;/P&gt;&lt;P&gt;      extensionin         = lt_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if that works for you....&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;Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:40:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279484#M784255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279485#M784256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you fill-in the EXTENSIONIN structure? Please read the documentation on that parameter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:41:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279485#M784256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279486#M784257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you calling 'BAPI_TRANSACTION_COMMIT' after?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chester&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:43:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279486#M784257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279487#M784258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Srinu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have filled EXTENSIONIN and I can see the data in that..but still not suceeded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I debuged the code to see whether any where it is getting refreshed / deleted...but I didnt find any place where it is doing as mentioned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:45:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279487#M784258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279488#M784259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I am using 'BAPI_TRANSACTION_COMMIT'  after calling &lt;/P&gt;&lt;P&gt;the Function module BAPI_SALESORDER_CHANGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have  gone through lot of threads in SDN...but no where I find the answer, now I am searching in service.sap.com to check my luck !!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:48:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279488#M784259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279489#M784260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the return-table for any errors or warnings....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have success-messages only, CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:49:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279489#M784260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279490#M784261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am checking the return Table and if not Error / Abort types of messages are not there then I am calling the 'BAPI_TRANSACTION_COMMIT.....it is going to this function module !!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:53:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279490#M784261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279491#M784262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the extensioninx structure  are you  definitely filling the posnr structure with an item number rather than an 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a common mistake.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279491#M784262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279492#M784263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You said you extended the corresponding structures, did you extend all of them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For VBAK e.g. you need to extend&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBAK&lt;/P&gt;&lt;P&gt;BAPE_VBAK&lt;/P&gt;&lt;P&gt;BAPE_VBAKX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to pass the values for BAPE_VBAK and BAPE_VBAKX into your extension in order for the extension to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279492#M784263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279493#M784264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Michael, we have extended these structures....we are able to create the Sales order by using the BAPI_SALESORDER_CREATEFROMDAT2.....in that we are populating the Z fields and there is no problem at alll....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 15:00:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279493#M784264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T15:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279494#M784265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the returntable contain any success-meesages or nothing at all?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don´t get ANY messages you should try to debug on a deeper level... &lt;/P&gt;&lt;P&gt;The BAPI calls FM SD_SALESDOCUMENT_CHANGE which also has a returntable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´ve had a similar problem these days where the BAPI did not return an error, but one of the FMs did...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 15:32:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279494#M784265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T15:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279495#M784266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;K ...I will debug the code and come back to you all after some time !!!&lt;/P&gt;&lt;P&gt;thanx for the inputs &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 15:49:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279495#M784266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T15:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279496#M784267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you manage to solve this problem? I'm currently facing the same issue and have checked out other threads and also OSS but couldn't find any solutions. Would you be able to shed some light on this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Adeline.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 12:57:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change/m-p/3279496#M784267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T12:57:42Z</dc:date>
    </item>
  </channel>
</rss>

