<?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 Debugging- dynamic internal table code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443539#M210761</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;This code (please scroll down) runs perfectly but when I replace this &lt;/P&gt;&lt;P&gt;select statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ZINPUT into table it where FIELD = 'RSAABAP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to this select statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ZINPUT into table it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i get error.Error is 'Load_program_not_found'. I am stuck with this. Can somebody reason out why? &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------" /&gt;&lt;P&gt;REPORT  ZSIMPLE9 message-id zz NO STANDARD PAGE HEADING&lt;/P&gt;&lt;P&gt;LINE-SIZE 178 LINE-COUNT 65.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************&lt;/P&gt;&lt;P&gt;data it like ZINPUT occurs 23 with header line.&lt;/P&gt;&lt;P&gt;*data it1 like DD03L ccurs 170 with header line.&lt;/P&gt;&lt;P&gt;data p_tab(30) type c.&lt;/P&gt;&lt;P&gt;********************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools: slis.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;dyn_table&amp;gt; type standard table,&lt;/P&gt;&lt;P&gt;               &amp;lt;dyn_wa&amp;gt;,&lt;/P&gt;&lt;P&gt;               &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;data: alv_fldcat type slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      it_fldcat type lvc_t_fcat.&lt;/P&gt;&lt;P&gt;type-pools : abap.&lt;/P&gt;&lt;P&gt;data : it_details type abap_compdescr_tab,&lt;/P&gt;&lt;P&gt;       wa_details type abap_compdescr.&lt;/P&gt;&lt;P&gt;data : ref_descr type ref to cl_abap_structdescr.&lt;/P&gt;&lt;P&gt;data: new_table type ref to data,&lt;/P&gt;&lt;P&gt;      new_line  type ref to data,&lt;/P&gt;&lt;P&gt;      wa_it_fldcat type lvc_s_fcat.&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text .&lt;/P&gt;&lt;P&gt;data p_table(30) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SELECT STATEMENT &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ZINPUT into table it where FIELD = 'RSAABAP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it. " Endloop statement for this loop found at the end of the program&lt;/P&gt;&lt;P&gt;p_table = it-FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the structure of the table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ref_descr ?= cl_abap_typedescr=&amp;gt;describe_by_name( p_table ).&lt;/P&gt;&lt;P&gt;it_details[] = ref_descr-&amp;gt;components[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_details into wa_details.&lt;/P&gt;&lt;P&gt;  clear wa_it_fldcat.&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-fieldname = wa_details-name .&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-datatype = wa_details-type_kind.&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-inttype = wa_details-type_kind.&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-intlen = wa_details-length.&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-decimals = wa_details-decimals.&lt;/P&gt;&lt;P&gt;  append wa_it_fldcat to it_fldcat .&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&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 = it_fldcat&lt;/P&gt;&lt;P&gt;             importing&lt;/P&gt;&lt;P&gt;                ep_table        = new_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign new_table-&amp;gt;* to &amp;lt;dyn_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create dynamic work area and assign to FS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;create data new_line like line of &amp;lt;dyn_table&amp;gt;.&lt;/P&gt;&lt;P&gt;assign new_line-&amp;gt;* to &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Select Data from table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;select * into table &amp;lt;dyn_table&amp;gt;&lt;/P&gt;&lt;P&gt;           from (p_table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write out data from table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;loop at &amp;lt;dyn_table&amp;gt; into &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;  do.&lt;/P&gt;&lt;P&gt;    assign component  sy-index  of structure &amp;lt;dyn_wa&amp;gt; to &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      exit.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;if sy-index = 1.&lt;/P&gt;&lt;P&gt;      write:/ &amp;lt;dyn_field&amp;gt;, ';'.&lt;/P&gt;&lt;P&gt;   else.&lt;/P&gt;&lt;P&gt;      write: &amp;lt;dyn_field&amp;gt;, ';'.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt;  enddo.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jun 2006 08:50:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-28T08:50:40Z</dc:date>
    <item>
      <title>Debugging- dynamic internal table code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443539#M210761</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;This code (please scroll down) runs perfectly but when I replace this &lt;/P&gt;&lt;P&gt;select statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ZINPUT into table it where FIELD = 'RSAABAP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to this select statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ZINPUT into table it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i get error.Error is 'Load_program_not_found'. I am stuck with this. Can somebody reason out why? &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------" /&gt;&lt;P&gt;REPORT  ZSIMPLE9 message-id zz NO STANDARD PAGE HEADING&lt;/P&gt;&lt;P&gt;LINE-SIZE 178 LINE-COUNT 65.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************&lt;/P&gt;&lt;P&gt;data it like ZINPUT occurs 23 with header line.&lt;/P&gt;&lt;P&gt;*data it1 like DD03L ccurs 170 with header line.&lt;/P&gt;&lt;P&gt;data p_tab(30) type c.&lt;/P&gt;&lt;P&gt;********************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools: slis.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;dyn_table&amp;gt; type standard table,&lt;/P&gt;&lt;P&gt;               &amp;lt;dyn_wa&amp;gt;,&lt;/P&gt;&lt;P&gt;               &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;data: alv_fldcat type slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      it_fldcat type lvc_t_fcat.&lt;/P&gt;&lt;P&gt;type-pools : abap.&lt;/P&gt;&lt;P&gt;data : it_details type abap_compdescr_tab,&lt;/P&gt;&lt;P&gt;       wa_details type abap_compdescr.&lt;/P&gt;&lt;P&gt;data : ref_descr type ref to cl_abap_structdescr.&lt;/P&gt;&lt;P&gt;data: new_table type ref to data,&lt;/P&gt;&lt;P&gt;      new_line  type ref to data,&lt;/P&gt;&lt;P&gt;      wa_it_fldcat type lvc_s_fcat.&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text .&lt;/P&gt;&lt;P&gt;data p_table(30) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SELECT STATEMENT &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ZINPUT into table it where FIELD = 'RSAABAP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it. " Endloop statement for this loop found at the end of the program&lt;/P&gt;&lt;P&gt;p_table = it-FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the structure of the table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ref_descr ?= cl_abap_typedescr=&amp;gt;describe_by_name( p_table ).&lt;/P&gt;&lt;P&gt;it_details[] = ref_descr-&amp;gt;components[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_details into wa_details.&lt;/P&gt;&lt;P&gt;  clear wa_it_fldcat.&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-fieldname = wa_details-name .&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-datatype = wa_details-type_kind.&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-inttype = wa_details-type_kind.&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-intlen = wa_details-length.&lt;/P&gt;&lt;P&gt;  wa_it_fldcat-decimals = wa_details-decimals.&lt;/P&gt;&lt;P&gt;  append wa_it_fldcat to it_fldcat .&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&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 = it_fldcat&lt;/P&gt;&lt;P&gt;             importing&lt;/P&gt;&lt;P&gt;                ep_table        = new_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign new_table-&amp;gt;* to &amp;lt;dyn_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create dynamic work area and assign to FS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;create data new_line like line of &amp;lt;dyn_table&amp;gt;.&lt;/P&gt;&lt;P&gt;assign new_line-&amp;gt;* to &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Select Data from table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;select * into table &amp;lt;dyn_table&amp;gt;&lt;/P&gt;&lt;P&gt;           from (p_table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write out data from table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;loop at &amp;lt;dyn_table&amp;gt; into &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;  do.&lt;/P&gt;&lt;P&gt;    assign component  sy-index  of structure &amp;lt;dyn_wa&amp;gt; to &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      exit.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;if sy-index = 1.&lt;/P&gt;&lt;P&gt;      write:/ &amp;lt;dyn_field&amp;gt;, ';'.&lt;/P&gt;&lt;P&gt;   else.&lt;/P&gt;&lt;P&gt;      write: &amp;lt;dyn_field&amp;gt;, ';'.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt;  enddo.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 08:50:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443539#M210761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T08:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging- dynamic internal table code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443540#M210762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Info about the Table ZINPUT &lt;/P&gt;&lt;P&gt;ZINPUT has only one field containing list of SAP TAbles&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;RSAABAP&lt;/P&gt;&lt;P&gt;RSAIO&lt;/P&gt;&lt;P&gt;RSAREP&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 08:52:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443540#M210762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T08:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging- dynamic internal table code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443541#M210763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's do this step by step:&lt;/P&gt;&lt;P&gt;1) change the source code (in SE38).&lt;/P&gt;&lt;P&gt;2) activate the report&lt;/P&gt;&lt;P&gt;3) start a new session, (/nSE38 or /oSE38)&lt;/P&gt;&lt;P&gt;4) start your report, fill your selection screen&lt;/P&gt;&lt;P&gt;5) run your program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In which step exactly do you get the error message?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 08:56:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443541#M210763</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2006-06-28T08:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging- dynamic internal table code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443542#M210764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Christian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx for that reply. Syntactically the program is right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the problem when i run the code. the code runs with single p_table entry. but doesn't run with multiple p_table entries. getting error LOAD_PROGRAM_NOT_FOUND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 09:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443542#M210764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T09:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging- dynamic internal table code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443543#M210765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; Load_program_not_found &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to SAP notes &amp;lt;b&amp;gt;874480&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Symptom&lt;/P&gt;&lt;P&gt;Table TCOLL contains entries that are invalid for Basis Release 6.40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other terms&lt;/P&gt;&lt;P&gt;TCOLL, COLL_RNAME, SWNCCOLL, SWNCREORG, SWNCTOTAL, RSAMON40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reason and Prerequisites&lt;/P&gt;&lt;P&gt;There are incorrect entries in the table TCOLL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution&lt;/P&gt;&lt;P&gt;Import the relevant Support Package or make the entries in table TCOLL as described in Note &amp;lt;b&amp;gt;12103&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Alternative solution:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Remove the entries in the table TCOLL for the following reports:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- SWNCCOLL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- SWNCREORG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- SWNCTOTAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Add the following reports:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;- RSSTAT83&lt;/P&gt;&lt;P&gt;- RSSTAT87&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If necessary, remove the entry for the report&lt;/P&gt;&lt;P&gt;- RSAMON40&lt;/P&gt;&lt;P&gt;since it is not started using TCOLL in the standard system. It is essential that you now check the contents of the table TCOLL again, as described in Note 12103.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow this and u will solve the problem..&lt;/P&gt;&lt;P&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;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 09:16:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443543#M210765</guid>
      <dc:creator>sridharreddy_kondam</dc:creator>
      <dc:date>2006-06-28T09:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging- dynamic internal table code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443544#M210766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Karthik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There may some small bug in your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please check this part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside the method &lt;/P&gt;&lt;P&gt;CREATE_DYNAMIC_TABLE &lt;DEL&gt;&amp;gt;LVC_TABLE_CREATE&lt;/DEL&gt;&amp;gt;ALV_TABLE_CREATE&lt;DEL&gt;&amp;gt;fb_table_create&lt;/DEL&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At this point u put the break-point and see what is the value of the variable l_message.&lt;/P&gt;&lt;P&gt;You will get the exact problem in ur code in this message variable&lt;/P&gt;&lt;P&gt;&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;*&amp;lt;&amp;lt;&amp;lt; Y9CK026407&lt;/P&gt;&lt;P&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.                               " FB_TABLE_CREATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will be helpful for u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward the points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 09:22:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443544#M210766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T09:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging- dynamic internal table code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443545#M210767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Tcoll table already has the entries which u have specified. I Just checked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 09:22:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443545#M210767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T09:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging- dynamic internal table code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443546#M210768</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;Thanks for ur spending your time on reading my big code.&lt;/P&gt;&lt;P&gt;all the code needed was&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'clear it_fldcat.' Now the code works fine!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again! &lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 10:02:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-dynamic-internal-table-code/m-p/1443546#M210768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T10:02:52Z</dc:date>
    </item>
  </channel>
</rss>

