<?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 doubt in prms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-prms/m-p/2200653#M470145</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;          I am created one classical report with selection option, the selection option have ranges, if i give the range ( My data are very very huge ) its giving dump error of Times out.. so how to rectify the error.. urgent..&lt;/P&gt;&lt;P&gt;Gowri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 May 2007 12:54:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-04T12:54:07Z</dc:date>
    <item>
      <title>doubt in prms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-prms/m-p/2200653#M470145</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;          I am created one classical report with selection option, the selection option have ranges, if i give the range ( My data are very very huge ) its giving dump error of Times out.. so how to rectify the error.. urgent..&lt;/P&gt;&lt;P&gt;Gowri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 12:54:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-prms/m-p/2200653#M470145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T12:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in prms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-prms/m-p/2200654#M470146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;declare that select option&lt;/P&gt;&lt;P&gt;as &lt;/P&gt;&lt;P&gt;select-options:s_bukrs for t001-bukrs no intervals no-extension&lt;/P&gt;&lt;P&gt;                                                     obligatory.&lt;/P&gt;&lt;P&gt;and restrict your entries for that field, so that it will not consume lot of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 12:57:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-prms/m-p/2200654#M470146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T12:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in prms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-prms/m-p/2200655#M470147</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;There is a restriction for SELECT clause WHERE condition for not to exceed some 999 criteria. So the solution is, Loop to your RANGES1 table and populate other RANGES2 table until the count reaches to 800. Then Write the Select Clause using RANGES2 table and then Refresh it. Check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data count type i.&lt;/P&gt;&lt;P&gt;data itab like VBAK occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear count.&lt;/P&gt;&lt;P&gt;clear RANGES2.&lt;/P&gt;&lt;P&gt;refresh RANGES2.&lt;/P&gt;&lt;P&gt;loop at RANGES1.&lt;/P&gt;&lt;P&gt;count = count + 1.&lt;/P&gt;&lt;P&gt;append RANGES1 to RANGES2.&lt;/P&gt;&lt;P&gt;if count = 800.&lt;/P&gt;&lt;P&gt;  SELECT * from vbak appending table itba where XXX in RANGES2.&lt;/P&gt;&lt;P&gt;  clear RANGES2.&lt;/P&gt;&lt;P&gt;  refresh RANGES2.&lt;/P&gt;&lt;P&gt;  clear count.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if count &amp;gt; 1.&lt;/P&gt;&lt;P&gt;  SELECT * from vbak appending table itba where XXX in RANGES2.&lt;/P&gt;&lt;P&gt;  clear RANGES2.&lt;/P&gt;&lt;P&gt;  refresh RANGES2.&lt;/P&gt;&lt;P&gt;  clear count.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 13:06:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-prms/m-p/2200655#M470147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T13:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in prms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-prms/m-p/2200656#M470148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gowri,&lt;/P&gt;&lt;P&gt;             Use AT Selection-Screen event in ur report.&lt;/P&gt;&lt;P&gt;validate ur field against any table.display error message if user enters &lt;/P&gt;&lt;P&gt;dump data.&lt;/P&gt;&lt;P&gt;refer this code : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK BL1 WITH FRAME.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : P_VBELN FOR VBUK-VBELN  .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK BL1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT VBELN INTO  CORRESPONDING FIELDS OF TABLE  I_INVOICE&lt;/P&gt;&lt;P&gt;               FROM VBUK&lt;/P&gt;&lt;P&gt;               WHERE VBELN IN P_VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE E101.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 13:06:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-prms/m-p/2200656#M470148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T13:06:33Z</dc:date>
    </item>
  </channel>
</rss>

