<?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: Dynamic data select from table is giving dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-select-from-table-is-giving-dump/m-p/2023557#M414476</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if you are doing the following in your program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;T_TAB&amp;gt; TYPE STANDARD TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: g_tabref type ref to data.   "Reference to your table structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA g_tabref type standard table of (pa_tab).&lt;/P&gt;&lt;P&gt;ASSIGN g_tabref-&amp;gt;* to &amp;lt;T_TAB&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM (PA_TAB) INTO TABLE &amp;lt;T_TAB&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you require any further info. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy SAP. Reward points of useful&lt;/P&gt;&lt;P&gt;Rajasekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 24 Mar 2007 01:16:27 GMT</pubDate>
    <dc:creator>rajasekhar_matukumalli3</dc:creator>
    <dc:date>2007-03-24T01:16:27Z</dc:date>
    <item>
      <title>Dynamic data select from table is giving dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-select-from-table-is-giving-dump/m-p/2023554#M414473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Below statement is giving Dump after it move all the data in my dynamic table.&lt;/P&gt;&lt;P&gt;When i see in debug. All my recored are avilable in &amp;lt;T_TAB&amp;gt; Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT * FROM (pa_tab) INTO CORRESPONDING FIELDS OF TABLE &amp;lt;T_TAB&amp;gt;.&lt;/P&gt;&lt;P&gt; -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Information on where terminated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The termination occurred in the ABAP program "ZFIR_ZTABLE_UPLOAD" in&lt;/P&gt;&lt;P&gt; "F_DOWNLOAD".&lt;/P&gt;&lt;P&gt;The main program was "ZFIR_ZTABLE_UPLOAD ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The termination occurred in line 403 of the source code of the (Include)&lt;/P&gt;&lt;P&gt; program "ZFIR_ZTABLE_UPLOAD"&lt;/P&gt;&lt;P&gt;of the source code of program "ZFIR_ZTABLE_UPLOAD" (when calling the editor&lt;/P&gt;&lt;P&gt; 4030).&lt;/P&gt;&lt;P&gt;Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in&lt;/P&gt;&lt;P&gt; the&lt;/P&gt;&lt;P&gt;procedure "F_DOWNLOAD" "(FORM)" but was not handled locally, not declared in&lt;/P&gt;&lt;P&gt; the&lt;/P&gt;&lt;P&gt;RAISING clause of the procedure.&lt;/P&gt;&lt;P&gt;The procedure is in the program "ZFIR_ZTABLE_UPLOAD ". Its source code starts&lt;/P&gt;&lt;P&gt; in line 399&lt;/P&gt;&lt;P&gt;of the (Include) program "ZFIR_ZTABLE_UPLOAD ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Amit Gupta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 21:57:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-select-from-table-is-giving-dump/m-p/2023554#M414473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T21:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic data select from table is giving dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-select-from-table-is-giving-dump/m-p/2023555#M414474</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;Whether (pa_tab) and &amp;lt;t_tab&amp;gt; structure are same ?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 22:17:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-select-from-table-is-giving-dump/m-p/2023555#M414474</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-03-23T22:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic data select from table is giving dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-select-from-table-is-giving-dump/m-p/2023556#M414475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;lt;T_TAB&amp;gt; shouldn't be type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to do it that way:&lt;/P&gt;&lt;P&gt;DATA: dref TYPE REF TO data.&lt;/P&gt;&lt;P&gt;CREATE DATA dref TYPE (pa_tab).&lt;/P&gt;&lt;P&gt;ASSIGN dref-&amp;gt;* TO &amp;lt;T_TAB&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Wojciech&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 22:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-select-from-table-is-giving-dump/m-p/2023556#M414475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T22:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic data select from table is giving dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-select-from-table-is-giving-dump/m-p/2023557#M414476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if you are doing the following in your program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;T_TAB&amp;gt; TYPE STANDARD TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: g_tabref type ref to data.   "Reference to your table structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA g_tabref type standard table of (pa_tab).&lt;/P&gt;&lt;P&gt;ASSIGN g_tabref-&amp;gt;* to &amp;lt;T_TAB&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM (PA_TAB) INTO TABLE &amp;lt;T_TAB&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you require any further info. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy SAP. Reward points of useful&lt;/P&gt;&lt;P&gt;Rajasekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Mar 2007 01:16:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-select-from-table-is-giving-dump/m-p/2023557#M414476</guid>
      <dc:creator>rajasekhar_matukumalli3</dc:creator>
      <dc:date>2007-03-24T01:16:27Z</dc:date>
    </item>
  </channel>
</rss>

