<?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: dump error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245554#M484719</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing same problem in creating dynemic internal table. my program is not working when it gets this dynemic internal table logic gets executed more than 36 times. &lt;/P&gt;&lt;P&gt;I am havin 4.6 ver. so if you have any alternative to resolve this problem thn please guide me.&lt;/P&gt;&lt;P&gt;I am stuk up at this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Maharshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Jul 2009 05:55:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-02T05:55:12Z</dc:date>
    <item>
      <title>dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245541#M484706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vat does this statements mean&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; catch system-exceptions generate_subpool_dir_full = 9.&lt;/P&gt;&lt;P&gt;   generate subroutine pool lt_source name l_name&lt;/P&gt;&lt;P&gt;            message l_message line l_line word l_word.&lt;/P&gt;&lt;P&gt; endcatch.&lt;/P&gt;&lt;P&gt; case sy-subrc.&lt;/P&gt;&lt;P&gt;   when 0.&lt;/P&gt;&lt;P&gt;   when 9.&lt;/P&gt;&lt;P&gt;     raise generate_subpool_dir_full.&lt;/P&gt;&lt;P&gt;   when others.&lt;/P&gt;&lt;P&gt;     message x000(0k) with l_message l_line l_word.&lt;/P&gt;&lt;P&gt; endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 02:23:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245541#M484706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T02:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245542#M484707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pratyu Usha,&lt;/P&gt;&lt;P&gt; This error comes along with the dynamic internal table creation. How many times u r creating the dynamic internal table in one internal session?. When u use create_dynamic_table method, it internally creates the subroutine pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-SatyaPriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 02:58:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245542#M484707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T02:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245543#M484708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is my part of code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help in resolving this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  xfc-fieldname = 'BUKRS'.&lt;/P&gt;&lt;P&gt;  xfc-datatype  = 'CHAR'.&lt;/P&gt;&lt;P&gt;  xfc-inttype   = 'C'.&lt;/P&gt;&lt;P&gt;  xfc-intlen    = 4.&lt;/P&gt;&lt;P&gt;  xfc-decimals  = 0.&lt;/P&gt;&lt;P&gt;  APPEND xfc TO ifc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  xfc-fieldname = 'ZUONR'.&lt;/P&gt;&lt;P&gt;  xfc-datatype  = 'CHAR'.&lt;/P&gt;&lt;P&gt;  xfc-inttype   = 'C'.&lt;/P&gt;&lt;P&gt;  xfc-intlen    = 18.&lt;/P&gt;&lt;P&gt;  xfc-decimals  = 0.&lt;/P&gt;&lt;P&gt;  APPEND xfc TO ifc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  xfc-fieldname = 'KUNNR'.&lt;/P&gt;&lt;P&gt;  xfc-datatype  = 'CHAR'.&lt;/P&gt;&lt;P&gt;  xfc-inttype   = 'C'.&lt;/P&gt;&lt;P&gt;  xfc-intlen    = 10.&lt;/P&gt;&lt;P&gt;  xfc-decimals  = 0.&lt;/P&gt;&lt;P&gt;  APPEND xfc TO ifc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  xfc-fieldname = 'NAME1'.&lt;/P&gt;&lt;P&gt;  xfc-datatype  = 'CHAR'.&lt;/P&gt;&lt;P&gt;  xfc-inttype   = 'C'.&lt;/P&gt;&lt;P&gt;  xfc-intlen    = 35.&lt;/P&gt;&lt;P&gt;  xfc-decimals  = 0.&lt;/P&gt;&lt;P&gt;  APPEND xfc TO ifc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_sgtxt_f3.&lt;/P&gt;&lt;P&gt;      CONCATENATE it_sgtxt_f3-sgtxt 'Amount' INTO l_str&lt;/P&gt;&lt;P&gt;      SEPARATED BY space.&lt;/P&gt;&lt;P&gt;      xfc-fieldname = l_str.&lt;/P&gt;&lt;P&gt;      xfc-datatype  = 'CURR'.&lt;/P&gt;&lt;P&gt;      xfc-inttype   = 'C'.&lt;/P&gt;&lt;P&gt;      xfc-intlen    = 13.&lt;/P&gt;&lt;P&gt;      xfc-decimals  = 2.&lt;/P&gt;&lt;P&gt;      APPEND xfc TO ifc.&lt;/P&gt;&lt;P&gt;    CLEAR : l_str, xfc, it_sgtxt_f3.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT ifc[] IS INITIAL.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create dynamic internal table and assign to FS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;                 EXPORTING&lt;/P&gt;&lt;P&gt;                    it_fieldcatalog = ifc&lt;/P&gt;&lt;P&gt;                 IMPORTING&lt;/P&gt;&lt;P&gt;                    ep_table        = dy_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;during calling this method i get that dump.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i run a prog which i copied of Rich's example in one of his blog it does not give dump for me. that prog also calls the same method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 03:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245543#M484708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T03:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245544#M484709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pratyu Usha,&lt;/P&gt;&lt;P&gt; Can u please post what exactly is coming in ur field catalogue that u r passing to create an internal table. Give one or two lines of this table it_sgtxt_f3. What is there in sgtxt field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_sgtxt_f3.&lt;/P&gt;&lt;P&gt;CONCATENATE it_sgtxt_f3-sgtxt 'Amount' INTO l_str&lt;/P&gt;&lt;P&gt;SEPARATED BY space.&lt;/P&gt;&lt;P&gt;xfc-fieldname = l_str.&lt;/P&gt;&lt;P&gt;xfc-datatype = 'CURR'.&lt;/P&gt;&lt;P&gt;xfc-inttype = 'C'.&lt;/P&gt;&lt;P&gt;xfc-intlen = 13.&lt;/P&gt;&lt;P&gt;xfc-decimals = 2.&lt;/P&gt;&lt;P&gt;APPEND xfc TO ifc.&lt;/P&gt;&lt;P&gt;CLEAR : l_str, xfc, it_sgtxt_f3.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-SatyaPriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 03:19:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245544#M484709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T03:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245545#M484710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sgtxt has the charge codes 301 302 303 304 etc... which i needed as columns..&lt;/P&gt;&lt;P&gt;i am able to see the correct format in the IFC table during debug&lt;/P&gt;&lt;P&gt;but gives dump at the std program SAPLSKBH include LSKBHF06 line 269&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*&amp;gt;&amp;gt;&amp;gt; Y9CK026407
  catch system-exceptions generate_subpool_dir_full = 9.
    generate subroutine pool lt_source name l_name
             message l_message line l_line word l_word.
  endcatch.
  case sy-subrc.
    when 0.
    when 9.
      raise generate_subpool_dir_full.
    when others.
      message x000(0k) with l_message l_line l_word.
  endcase.
*&amp;lt;&amp;lt;&amp;lt; Y9CK026407

  if r_oo_class is initial.
    perform (l_form) in program (l_name). this is line 269
  else.
    perform (l_form) in program (l_name) using r_oo_class.
  endif.
endform.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;the variable l_name is being initialised here instead shud be some temp name like this "%_TXYZ"XYZ Soem number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 03:40:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245545#M484710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T03:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245546#M484711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pratyu Usha, &lt;/P&gt;&lt;P&gt; No what I mean to say is that, fieldnames of field catalogue should not start with number say like " 301 Amount ", so u better concatenate like this "Amount 301". Check this out in ur field catalogue....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-SatyaPriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 03:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245546#M484711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T03:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245547#M484712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its still the same after changing to Amount 301.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i dont think, that is the problem..coz i see that the field catalog is being filled and i cud notice it during debug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its very urgent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 03:50:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245547#M484712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T03:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245548#M484713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And also fieldnames cannot be duplicated in ur field catalogue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-SatyaPriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 03:50:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245548#M484713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T03:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245549#M484714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pratyu USha,&lt;/P&gt;&lt;P&gt; Remove this &amp;lt;b&amp;gt;SEPARATED BY space.&amp;lt;/b&amp;gt; in concatenate statement in ur field catalogue and check. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-SatyaPriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 03:59:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245549#M484714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T03:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245550#M484715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check that and let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 04:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245550#M484715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T04:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245551#M484716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pratyu Usha,&lt;/P&gt;&lt;P&gt; Is ur problem solved?. If yes, please close this thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-SatyaPriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 04:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245551#M484716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T04:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245552#M484717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Satya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i was passing Type C to currency, that was the problem.. now its solved..&lt;/P&gt;&lt;P&gt;thanks for ur help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 04:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245552#M484717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T04:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245553#M484718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi pratyusha,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;but when i run a prog which i copied of Rich's example in one of his blog it does not give dump for me. that prog also calls the same method&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u provide me that blog in which he has solved 36 dump limitaions in 4.7 server?.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anuj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 10:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245553#M484718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T10:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245554#M484719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing same problem in creating dynemic internal table. my program is not working when it gets this dynemic internal table logic gets executed more than 36 times. &lt;/P&gt;&lt;P&gt;I am havin 4.6 ver. so if you have any alternative to resolve this problem thn please guide me.&lt;/P&gt;&lt;P&gt;I am stuk up at this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Maharshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2009 05:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2245554#M484719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-02T05:55:12Z</dc:date>
    </item>
  </channel>
</rss>

