<?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 Dump DBIF_RSQL_SQL_ERROR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728838#M1299575</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I am getting a Dump DBIF_RSQL_SQL_ERROR in a select query which fetches data from BKPF table. The database error text is ........: "ORA-01555: snapshot too old: rollback segment  number 14 with name "_SYSSMU14$" too small" . Kindly suggest a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 May 2009 05:07:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-29T05:07:44Z</dc:date>
    <item>
      <title>Dump DBIF_RSQL_SQL_ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728838#M1299575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I am getting a Dump DBIF_RSQL_SQL_ERROR in a select query which fetches data from BKPF table. The database error text is ........: "ORA-01555: snapshot too old: rollback segment  number 14 with name "_SYSSMU14$" too small" . Kindly suggest a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 05:07:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728838#M1299575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T05:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dump DBIF_RSQL_SQL_ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728839#M1299576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u paste the select query here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 05:11:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728839#M1299576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T05:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dump DBIF_RSQL_SQL_ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728840#M1299577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;  This is the select query,&lt;/P&gt;&lt;P&gt;        select (bkpf_fields) from bkpf into&lt;/P&gt;&lt;P&gt;         corresponding fields of bkpf&lt;/P&gt;&lt;P&gt;          where bukrs in br_bukrs&lt;/P&gt;&lt;P&gt;          and   blart in br_blart&lt;/P&gt;&lt;P&gt;          and   budat in br_budat&lt;/P&gt;&lt;P&gt;          and   xblnr in br_xblnr&lt;/P&gt;&lt;P&gt;          and   belnr in br_belnr&lt;/P&gt;&lt;P&gt;          and   gjahr in br_gjahr&lt;/P&gt;&lt;P&gt;          and   bstat in br_bstat&lt;/P&gt;&lt;P&gt;          and   awtyp in br_awtyp&lt;/P&gt;&lt;P&gt;          and   awkey in br_awkey&lt;/P&gt;&lt;P&gt;          and   awsys in br_awsys&lt;/P&gt;&lt;P&gt;          and   cpudt in br_cpudt&lt;/P&gt;&lt;P&gt;          and   bldat in br_bldat&lt;/P&gt;&lt;P&gt;          and   usnam in br_usnam&lt;/P&gt;&lt;P&gt;          and   (bkpf_where)&lt;/P&gt;&lt;P&gt;          order by primary key.&lt;/P&gt;&lt;P&gt;          if bkpf-bstat eq 'D'.&lt;/P&gt;&lt;P&gt;            select single * from bkdf&lt;/P&gt;&lt;P&gt;              where bukrs eq bkpf-bukrs&lt;/P&gt;&lt;P&gt;              and   belnr eq bkpf-belnr&lt;/P&gt;&lt;P&gt;              and   gjahr eq bkpf-gjahr.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;          save_bukrs = bkpf-bukrs.&lt;/P&gt;&lt;P&gt;          save_belnr = bkpf-belnr.&lt;/P&gt;&lt;P&gt;          save_gjahr = bkpf-gjahr.&lt;/P&gt;&lt;P&gt;          cnt_bkpf = cnt_bkpf + 1.&lt;/P&gt;&lt;P&gt;          b0sg-xarbl = space.&lt;/P&gt;&lt;P&gt;          perform t001_read.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        expiring currencies:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          gd_waers_save = bkpf-waers.&lt;/P&gt;&lt;P&gt;          if not gd_expcur_flag is initial.&lt;/P&gt;&lt;P&gt;            perform item_curr_convert_bkpf using    'SAPDBBRF'&lt;/P&gt;&lt;P&gt;                                                    sy-datlo&lt;/P&gt;&lt;P&gt;                                           changing bkpf.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;         put bkpf.&lt;/P&gt;&lt;P&gt;        endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 05:14:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728840#M1299577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T05:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dump DBIF_RSQL_SQL_ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728841#M1299578</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;Please check ur select query. Check if the sequence, data type and number of fields that u are selecting matches ur target internal table or work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 05:15:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728841#M1299578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T05:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dump DBIF_RSQL_SQL_ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728842#M1299579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please change your query as follows:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select (bkpf_fields) 
from bkpf into
corresponding fields of bkpf
where bukrs in br_bukrs
and belnr in br_belnr
and gjahr in br_gjahr
and blart in br_blart
and bldat in br_bldat
and budat in br_budat
and cpudt in br_cpudt
and usnam in br_usnam
and xblnr in br_xblnr
and bstat in br_bstat
and awtyp in br_awtyp
and awkey in br_awkey
and awsys in br_awsys
and (bkpf_where)
order by primary key.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also please check the fields which are coming in bkpf_fields and the where clause bkpf_where to see if there isnt any mismatch in fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 05:21:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728842#M1299579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T05:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dump DBIF_RSQL_SQL_ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728843#M1299580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;  Thanks for your reply.&lt;/P&gt;&lt;P&gt;  The above query is in standard report SAPDBBRF and also this dump has occured for a particular variant. Just wanted to confirm whether this dump is because of huge amount of data or varaint problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 05:55:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728843#M1299580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T05:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dump DBIF_RSQL_SQL_ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728844#M1299581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. I think so. It is because you get a huge result, and the system has no enough (temporary) space to write the data. You can increase you DB space to avoid this problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2009 02:10:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728844#M1299581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-30T02:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dump DBIF_RSQL_SQL_ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728845#M1299582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may want to take a look at OSS Note 731946 - DBIF_RSQL_SQL_ERROR when inserting a type P variable in DB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ran into it while investigating my DBIF error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 18:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-dbif-rsql-sql-error/m-p/5728845#M1299582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T18:40:49Z</dc:date>
    </item>
  </channel>
</rss>

