<?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 Problem disalying alv using dynamic internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117537#M1187010</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 have 4 radiobutton for each radiobutton there is one internaltable to be displayed in alv.&lt;/P&gt;&lt;P&gt;My requirement is intead of calling the function module reuse_alv_grid_display everytime for&lt;/P&gt;&lt;P&gt;each of the internal table I want to create a dynamic internal tble for the function module.&lt;/P&gt;&lt;P&gt;   My question is how to create a dynamic internal table which will hold the fields &amp;amp; data of&lt;/P&gt;&lt;P&gt;different interna table when diffrent radiobuttons are checked.&lt;/P&gt;&lt;P&gt;   Areciate your time to help.&lt;/P&gt;&lt;P&gt;   Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Feb 2009 15:30:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-06T15:30:26Z</dc:date>
    <item>
      <title>Problem disalying alv using dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117537#M1187010</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 have 4 radiobutton for each radiobutton there is one internaltable to be displayed in alv.&lt;/P&gt;&lt;P&gt;My requirement is intead of calling the function module reuse_alv_grid_display everytime for&lt;/P&gt;&lt;P&gt;each of the internal table I want to create a dynamic internal tble for the function module.&lt;/P&gt;&lt;P&gt;   My question is how to create a dynamic internal table which will hold the fields &amp;amp; data of&lt;/P&gt;&lt;P&gt;different interna table when diffrent radiobuttons are checked.&lt;/P&gt;&lt;P&gt;   Areciate your time to help.&lt;/P&gt;&lt;P&gt;   Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2009 15:30:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117537#M1187010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-06T15:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem disalying alv using dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117538#M1187011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Using Field Symbols ist possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXAMPLE:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  field-symbols: &amp;lt;dyn_table&amp;gt; type standard table, 
               &amp;lt;dyn_wa&amp;gt;, 
               &amp;lt;dyn_field&amp;gt;. 

Methods:
cl_alv_table_create=&amp;gt;create_dynamic_table 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will resolve the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gurpreet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2009 15:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117538#M1187011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-06T15:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem disalying alv using dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117539#M1187012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take that FM reuse_alv_grid_display into one perform and call every time that perform for each radio button and take bewlo table parameteras for that perfrom&lt;/P&gt;&lt;P&gt;1) your output table for that radio button&lt;/P&gt;&lt;P&gt;2) field catalog for that radio button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2009 15:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117539#M1187012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-06T15:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem disalying alv using dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117540#M1187013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2009 09:18:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117540#M1187013</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-02-07T09:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem disalying alv using dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117541#M1187014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi follow following logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;i_table&amp;gt; type standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when rb1 is checked.&lt;/P&gt;&lt;P&gt;assign itab1 to &amp;lt;i_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform alv_disp using &amp;lt;i_table&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when rb2 is checked.&lt;/P&gt;&lt;P&gt;assign itab2 to &amp;lt;i_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform alv_disp using &amp;lt;i_table&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when rb3 is checked.&lt;/P&gt;&lt;P&gt;assign itab3 to &amp;lt;i_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform alv_disp using &amp;lt;i_table&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when rb4 is checked.&lt;/P&gt;&lt;P&gt;assign itab4 to &amp;lt;i_table&amp;gt;.&lt;/P&gt;&lt;P&gt;perform alv_disp using &amp;lt;i_table&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;form alv_disp&lt;/P&gt;&lt;P&gt;form alv_disp  using p_i_table type standard table.&lt;/P&gt;&lt;P&gt;perform create fieldcatelog changing i_fc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; call the fm and pass the table p_i_table and i_fc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; form create fieldcaelog&lt;/P&gt;&lt;P&gt;here create field catelog ..either by fm reuse_alv_fieldcatelog_merge ...in this just pass the structure name based on the radiobutton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope its useful &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2009 10:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117541#M1187014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-07T10:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem disalying alv using dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117542#M1187015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;q&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 15:34:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-disalying-alv-using-dynamic-internal-table/m-p/5117542#M1187015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T15:34:07Z</dc:date>
    </item>
  </channel>
</rss>

