<?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: Getting Dump when tested in Q System while creating the Dynamic table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-dump-when-tested-in-q-system-while-creating-the-dynamic-table/m-p/1438284#M208728</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;compare the sap-program in sytems Q and D from&lt;/P&gt;&lt;P&gt;...perform (l_form) in program (&amp;lt;b&amp;gt;l_name&amp;lt;/b&amp;gt;).&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;per RFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2006 10:11:15 GMT</pubDate>
    <dc:creator>andreas_mann3</dc:creator>
    <dc:date>2006-06-20T10:11:15Z</dc:date>
    <item>
      <title>Getting Dump when tested in Q System while creating the Dynamic table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-dump-when-tested-in-q-system-while-creating-the-dynamic-table/m-p/1438283#M208727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;I am getting short dump error, when I tested a program in Q system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually dump is triggered when calling the FM&lt;/P&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 = IT_FIELDCAT&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;        EP_TABLE = &amp;lt;FS_DATA&amp;gt;&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;      GENERATE_SUBPOOL_DIR_FULL = 1&lt;/P&gt;&lt;P&gt;      OTHERS                    = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside this method Form name: &amp;lt;b&amp;gt;FB_TABLE_CREATE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Exactly I am getting here&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  if r_oo_class is initial.&lt;/P&gt;&lt;P&gt;    perform (l_form) in program (l_name).&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    perform (l_form) in program (l_name) using r_oo_class.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endform. &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Telling that the program not Found&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program " " not found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happened?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are various possibilities:&lt;/P&gt;&lt;P&gt;program library.&lt;/P&gt;&lt;P&gt;The current ABAP/4 program "SAPLSKBH " had to be terminated because&lt;/P&gt;&lt;P&gt;one of the statements could not be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is probably due to an error in the ABAP/4 program.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;Error in the SAP Basis system&lt;/P&gt;&lt;P&gt;ABAP/4 processor detected an internal system error.&lt;/P&gt;&lt;P&gt;The current ABAP program "SAPLSKBH " had to be terminated because the ABAP&lt;/P&gt;&lt;P&gt;processor discovered an invalid system state.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyboby tell how to avoid this dump.&lt;/P&gt;&lt;P&gt;The same code is working fine in D system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am filling the fields catalog like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT G_T_FIELDCAT INTO G_R_FIELDCAT WHERE NO_OUT IS INITIAL&lt;/P&gt;&lt;P&gt;                                           AND TECH IS INITIAL.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING G_R_FIELDCAT TO IS_FIELDCAT.&lt;/P&gt;&lt;P&gt;    IS_FIELDCAT-FIELDNAME = G_R_FIELDCAT-FIELDNAME.&lt;/P&gt;&lt;P&gt;    IS_FIELDCAT-INTTYPE   = G_R_FIELDCAT-INTTYPE.&lt;/P&gt;&lt;P&gt;    IS_FIELDCAT-OUTPUTLEN = G_R_FIELDCAT-OUTPUTLEN.&lt;/P&gt;&lt;P&gt;    IS_FIELDCAT-REF_FIELD = G_R_FIELDCAT-FIELDNAME.&lt;/P&gt;&lt;P&gt;    IS_FIELDCAT-REF_TABLE = G_R_FIELDCAT-REF_TABNAME.&lt;/P&gt;&lt;P&gt;    APPEND IS_FIELDCAT TO IT_FIELDCAT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 09:52:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-dump-when-tested-in-q-system-while-creating-the-dynamic-table/m-p/1438283#M208727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T09:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Dump when tested in Q System while creating the Dynamic table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-dump-when-tested-in-q-system-while-creating-the-dynamic-table/m-p/1438284#M208728</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;compare the sap-program in sytems Q and D from&lt;/P&gt;&lt;P&gt;...perform (l_form) in program (&amp;lt;b&amp;gt;l_name&amp;lt;/b&amp;gt;).&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;per RFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-dump-when-tested-in-q-system-while-creating-the-dynamic-table/m-p/1438284#M208728</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-06-20T10:11:15Z</dc:date>
    </item>
  </channel>
</rss>

