<?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 SAPSQL_ARRAY_INSERT_DUPREC in iw21 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapsql-array-insert-duprec-in-iw21/m-p/8349475#M1639952</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we have upgraded EHP1 to EHP4 .After upgradation, if i am trying to create the notification in iw21 and assign an order to the notification and while saving it is getting saved. and issueing order no as 'X'(X belongs to different order type )..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if i run Tcode iw22 ,if i check the order no (X) linked to the notification order no is  not available. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i see the st22 it is telling the error "SAPSQL_ARRAY_INSERT_DUPREC' and if i see the ABAP editor it is showing the error in &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;funtion module STATUS_UPDATE  in include  LBSVUU01 from the program SAPLCOZV&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;  IF sy-tabix &amp;gt; 0. &lt;/P&gt;&lt;P&gt;    INSERT jsto CLIENT SPECIFIED &lt;/P&gt;&lt;P&gt;                FROM TABLE jsto_ins." &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have searched for the notes 970434, 82295.But i think that will not solve the issue. i dont know which note should be applied. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please help me to solve the issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Nov 2011 12:19:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-23T12:19:20Z</dc:date>
    <item>
      <title>SAPSQL_ARRAY_INSERT_DUPREC in iw21</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapsql-array-insert-duprec-in-iw21/m-p/8349475#M1639952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we have upgraded EHP1 to EHP4 .After upgradation, if i am trying to create the notification in iw21 and assign an order to the notification and while saving it is getting saved. and issueing order no as 'X'(X belongs to different order type )..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if i run Tcode iw22 ,if i check the order no (X) linked to the notification order no is  not available. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i see the st22 it is telling the error "SAPSQL_ARRAY_INSERT_DUPREC' and if i see the ABAP editor it is showing the error in &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;funtion module STATUS_UPDATE  in include  LBSVUU01 from the program SAPLCOZV&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;  IF sy-tabix &amp;gt; 0. &lt;/P&gt;&lt;P&gt;    INSERT jsto CLIENT SPECIFIED &lt;/P&gt;&lt;P&gt;                FROM TABLE jsto_ins." &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have searched for the notes 970434, 82295.But i think that will not solve the issue. i dont know which note should be applied. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please help me to solve the issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2011 12:19:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapsql-array-insert-duprec-in-iw21/m-p/8349475#M1639952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-23T12:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAPSQL_ARRAY_INSERT_DUPREC in iw21</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapsql-array-insert-duprec-in-iw21/m-p/8349476#M1639953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Such problems usually occur because of misaligned number ranges or incorrect custom code (enhancements, user exits and the like). It is difficult to give you the exact reason without analyzing the actual dump you are getting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program terminates because it tries to insert a new status entry for the notification in the status table (JSTO). Apparently an entry with the same key exists already in this table that belongs to an already existing notification. The key for JSTO is derived from the notification number, it starts with QM...&lt;/P&gt;&lt;P&gt;Check the dump to see what the notification number is (in internal table jsto_ins) and verify the number range statuses. Adjust the number range of the notification type if necessary so that it doesn't overlap with already existing notifications in the DB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, if you do have custom code / enhancements that are executed, it's possible that there is an illegal COMMIT that causes standard tables to get updated too early. If the number ranges are OK, that's also a possible area to check.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2011 23:08:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapsql-array-insert-duprec-in-iw21/m-p/8349476#M1639953</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2011-11-23T23:08:00Z</dc:date>
    </item>
  </channel>
</rss>

