<?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: SQL error in ALV_GRID in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-error-in-alv-grid/m-p/4248195#M1013963</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you provide the detail code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Aug 2008 05:29:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-06T05:29:33Z</dc:date>
    <item>
      <title>SQL error in ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-error-in-alv-grid/m-p/4248194#M1013962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; When i use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:  GRID TYPE REF TO CL_GUI_ALV_GRID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i  m getting the error like following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; " SQL error 1654 occurred when accessing program "Z1V10007 " part "LREF". "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to resolve this probelm ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajay kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 05:25:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-error-in-alv-grid/m-p/4248194#M1013962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-06T05:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: SQL error in ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-error-in-alv-grid/m-p/4248195#M1013963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you provide the detail code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 05:29:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-error-in-alv-grid/m-p/4248195#M1013963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-06T05:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: SQL error in ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-error-in-alv-grid/m-p/4248196#M1013964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the free space available in the tablespace.. &lt;/P&gt;&lt;P&gt;2. Check when the indexes in ur database ( all indexes.. not just that one) &lt;/P&gt;&lt;P&gt;are rebuilt last time. Rebuilding the indexes at regular intervals is &lt;/P&gt;&lt;P&gt;required as it may contain deleted entries. try a rebuild ( may be later ) &lt;/P&gt;&lt;P&gt;3. Add more space to the tablespace ( add a datafile ) or if you have &lt;/P&gt;&lt;P&gt;another tablespace designated for Indexes and it has sapce in it, the &lt;/P&gt;&lt;P&gt;rebuild ur index in the second tablespace&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Be that your tablespace has reached its max ext. &lt;/P&gt;&lt;P&gt;Check the properties of the table space and make sure your ext value is not &lt;/P&gt;&lt;P&gt;set too low. &lt;/P&gt;&lt;P&gt;If the tablespace reaches it max it wont matter what is set at the table &lt;/P&gt;&lt;P&gt;level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt; other wise the datafile file size would have got exhausted. in that case &lt;/P&gt;&lt;P&gt;either add a new datafile to your tablespace or resize the existing &lt;/P&gt;&lt;P&gt;datafile. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to perform this,&lt;/P&gt;&lt;P&gt;Maybe you can try the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Rebuild the index &lt;/P&gt;&lt;P&gt;- Rebuilt the index in a different tablespace &lt;/P&gt;&lt;P&gt;- Resize the datafile of the tablespace that stores the index &lt;/P&gt;&lt;P&gt;- Add a new datafile to the tablespace that stores the index &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also, Alter index &amp;lt;index name&amp;gt; allocate extent; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohinder&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 05:51:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-error-in-alv-grid/m-p/4248196#M1013964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-06T05:51:51Z</dc:date>
    </item>
  </channel>
</rss>

