<?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 error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2708602#M627683</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;I am using function module , fieldcatalog merge in my program.&lt;/P&gt;&lt;P&gt;its going to dump at some point inside the function module .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trigger Location of Runtime Error&lt;/P&gt;&lt;P&gt;    Program                                 CL_GUI_ALV_GRID===============CP&lt;/P&gt;&lt;P&gt;    Include                                 CL_GUI_ALV_GRID===============CM01G&lt;/P&gt;&lt;P&gt;    Row                                     14&lt;/P&gt;&lt;P&gt;    Module type                             (METHOD)&lt;/P&gt;&lt;P&gt;    Module Name                             SET_SORT_CRITERIA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here its going to dump,&lt;/P&gt;&lt;P&gt;and showing 'No field catalog available.&lt;/P&gt;&lt;P&gt;can anyone pls tell me how to rectify this.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bindu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Aug 2007 09:09:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-21T09:09:12Z</dc:date>
    <item>
      <title>Dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2708602#M627683</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;I am using function module , fieldcatalog merge in my program.&lt;/P&gt;&lt;P&gt;its going to dump at some point inside the function module .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trigger Location of Runtime Error&lt;/P&gt;&lt;P&gt;    Program                                 CL_GUI_ALV_GRID===============CP&lt;/P&gt;&lt;P&gt;    Include                                 CL_GUI_ALV_GRID===============CM01G&lt;/P&gt;&lt;P&gt;    Row                                     14&lt;/P&gt;&lt;P&gt;    Module type                             (METHOD)&lt;/P&gt;&lt;P&gt;    Module Name                             SET_SORT_CRITERIA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here its going to dump,&lt;/P&gt;&lt;P&gt;and showing 'No field catalog available.&lt;/P&gt;&lt;P&gt;can anyone pls tell me how to rectify this.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bindu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 09:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2708602#M627683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T09:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2708603#M627684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;  could u plz send the Fm code&lt;/P&gt;&lt;P&gt;how u populated it........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 09:12:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2708603#M627684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T09:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2708604#M627685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prema,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gv_table = 'T_SUMMARY'(002).&lt;/P&gt;&lt;P&gt;  gv_repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_program_name         = gv_repid&lt;/P&gt;&lt;P&gt;      i_internal_tabname     = gv_table&lt;/P&gt;&lt;P&gt;      i_inclname             = gv_repid&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      ct_fieldcat            = t_fldcat&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      inconsistent_interface = 1&lt;/P&gt;&lt;P&gt;      program_error          = 2&lt;/P&gt;&lt;P&gt;      others                 = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bindu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 09:27:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2708604#M627685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T09:27: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/2708605#M627686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;population is correctly only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did u declare the t_fldcat as an internal table or as a structure....&lt;/P&gt;&lt;P&gt;if u declare it as internaltable then pass only the structure of it...&lt;/P&gt;&lt;P&gt;ie&lt;/P&gt;&lt;P&gt;t_fldcat type slis_t_fieldcat_alv occurs 0 with header line.&lt;/P&gt;&lt;P&gt;then pass t_fldcat[] to FM&lt;/P&gt;&lt;P&gt;just chk this....u again run the same program ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u plz paste the code....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 10:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-error/m-p/2708605#M627686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T10:04:22Z</dc:date>
    </item>
  </channel>
</rss>

