<?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_CONTRACT_CREATEFROMDATA - extensionin short dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-contract-createfromdata-extensionin-short-dump/m-p/7936703#M1600301</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;I fixed the problem myself using the following &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="237019"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used simulation = ' '.&lt;/P&gt;&lt;P&gt;I moved the item numbers to the item and itemx tables with U as the item-updateflag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I.E. it is important for the item table to contain the item numbers and an update flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leanne&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jul 2011 11:08:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-07-04T11:08:53Z</dc:date>
    <item>
      <title>BAPI_CONTRACT_CREATEFROMDATA - extensionin short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-contract-createfromdata-extensionin-short-dump/m-p/7936700#M1600298</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;I am currently copying a contract to another sales organisation. I am desparate - any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created additional fields in vbap (extended: bape_vbap, bape_vbap, vbapkoz, vbapkozx). I have tried using BAPI_CONTRACT_CREATEFROMDATA to create the new contract using the extension to add the new fields. I get a short dump with the title 'DBIF_RSQL_INTERNAL_ERROR' and the following key words:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*************************************&lt;/P&gt;&lt;P&gt;"DBIF_RSQL_INTERNAL_ERROR" " " &lt;/P&gt;&lt;P&gt;"SAPLV45U" or "LV45UF0V"       &lt;/P&gt;&lt;P&gt;"VBAP_BEARBEITEN"              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Termination occurred in the ABAP program "SAPLV45U" - in "VBAP_BEARBEITEN".  &lt;/P&gt;&lt;P&gt;The main program was "RSM13000 ".                                                                                &lt;/P&gt;&lt;P&gt;In the source code you have the termination point in line 169                &lt;/P&gt;&lt;P&gt;of the (Include) program "LV45UF0V".                                         &lt;/P&gt;&lt;P&gt;The program "SAPLV45U" was started in the update system.                     &lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Leanne&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 08:05:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-contract-createfromdata-extensionin-short-dump/m-p/7936700#M1600298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-04T08:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_CONTRACT_CREATEFROMDATA - extensionin short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-contract-createfromdata-extensionin-short-dump/m-p/7936701#M1600299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used BAPI_SALESORDER_CHANGE for updating the extension fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA: ls_order_header_inx TYPE bapisdh1x,&lt;/P&gt;&lt;P&gt;        ls_parex            TYPE bapiparex,&lt;/P&gt;&lt;P&gt;        ls_bape             TYPE bape_vbak,&lt;/P&gt;&lt;P&gt;        ls_bapex            TYPE bape_vbakx,&lt;/P&gt;&lt;P&gt;        lt_parex            TYPE STANDARD TABLE OF bapiparex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE iv_vbeln TO ls_bape-vbeln.&lt;/P&gt;&lt;P&gt;  ls_bape-zz_fields1 = is_vbak_disc-zz_fields1.&lt;/P&gt;&lt;P&gt;  ls_bape-zz_fields2 =  is_vbak_disc-zz_fields2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ls_parex-structure = 'BAPE_VBAK'.&lt;/P&gt;&lt;P&gt;  ls_parex-valuepart1 = ls_bape.&lt;/P&gt;&lt;P&gt;  APPEND ls_parex TO lt_parex.&lt;/P&gt;&lt;P&gt;  CLEAR ls_parex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE  iv_vbeln TO ls_bapex-vbeln.&lt;/P&gt;&lt;P&gt;    ls_bapex-zz_zz_fields1  = 'X'.&lt;/P&gt;&lt;P&gt;    ls_bapex-zz_hb_zz_fields2 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ls_parex-structure = 'BAPE_VBAKX'.&lt;/P&gt;&lt;P&gt;  ls_parex-valuepart1 = ls_bapex.&lt;/P&gt;&lt;P&gt;  APPEND ls_parex TO lt_parex .&lt;/P&gt;&lt;P&gt;  CLEAR ls_parex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ls_order_header_inx-updateflag = 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_SALESORDER_CHANGE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      salesdocument    = iv_vbeln&lt;/P&gt;&lt;P&gt;      order_header_inx = ls_order_header_inx&lt;/P&gt;&lt;P&gt;      simulation       = iv_nocommit&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      return           = et_return&lt;/P&gt;&lt;P&gt;      extensionin      = lt_parex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 08:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-contract-createfromdata-extensionin-short-dump/m-p/7936701#M1600299</guid>
      <dc:creator>Shahid</dc:creator>
      <dc:date>2011-07-04T08:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_CONTRACT_CREATEFROMDATA - extensionin short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-contract-createfromdata-extensionin-short-dump/m-p/7936702#M1600300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The header (VBAK) works but the item (VBAP) does not work. I have tried with iv_nocommit = ' ' and iv_nocommit = 'X'. I do not get a short dump, but the data is not updated. Any more ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 09:58:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-contract-createfromdata-extensionin-short-dump/m-p/7936702#M1600300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-04T09:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_CONTRACT_CREATEFROMDATA - extensionin short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-contract-createfromdata-extensionin-short-dump/m-p/7936703#M1600301</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;I fixed the problem myself using the following &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="237019"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used simulation = ' '.&lt;/P&gt;&lt;P&gt;I moved the item numbers to the item and itemx tables with U as the item-updateflag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I.E. it is important for the item table to contain the item numbers and an update flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leanne&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 11:08:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-contract-createfromdata-extensionin-short-dump/m-p/7936703#M1600301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-04T11:08:53Z</dc:date>
    </item>
  </channel>
</rss>

