<?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 what is dynamic table? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050968#M968328</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is dynamic table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Jul 2008 12:28:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-01T12:28:52Z</dc:date>
    <item>
      <title>what is dynamic table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050968#M968328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is dynamic table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 12:28:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050968#M968328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T12:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: what is dynamic table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050969#M968329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dynamic table is a kind of internal table that is populated on runtime.&lt;/P&gt;&lt;P&gt;You decide on runtime, what all fields you want in your internal table.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS are used to create such an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 12:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050969#M968329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T12:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: what is dynamic table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050970#M968330</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;  In a dynamic table the table "coloums" will be determined during the run time.&lt;/P&gt;&lt;P&gt;Sometime they may be a requirement where based on certain conditionds the table field to be displayed in such case dynamic tables are used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Jaya Vani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 12:33:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050970#M968330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T12:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: what is dynamic table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050971#M968331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dynamic table are those whose fields are decided at RUNTIME based on the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code where we have created a Dynamic Internal table for uploading DATA from Application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------" /&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;*----&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt;  ref_table_des ?=&lt;/P&gt;&lt;P&gt;    cl_abap_typedescr=&amp;gt;describe_by_name( wa_file-file_structure ).&lt;/P&gt;&lt;P&gt;  tb_details = ref_table_des-&amp;gt;components[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT tb_details INTO wa_details.&lt;/P&gt;&lt;P&gt;    CLEAR wa_fieldcat.&lt;/P&gt;&lt;P&gt;    wa_fieldcat-fieldname = wa_details-name .&lt;/P&gt;&lt;P&gt;    wa_fieldcat-datatype = wa_details-type_kind.&lt;/P&gt;&lt;P&gt;    wa_fieldcat-inttype = wa_details-type_kind.&lt;/P&gt;&lt;P&gt;    wa_fieldcat-intlen = wa_details-length.&lt;/P&gt;&lt;P&gt;    wa_fieldcat-decimals = wa_details-decimals.&lt;/P&gt;&lt;P&gt;    APPEND wa_fieldcat TO tb_fieldcat.&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 the dynamic table and assign to FS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&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 = tb_fieldcat&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      ep_table        = tb_dynamic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN tb_dynamic-&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 wa_line LIKE LINE OF &amp;lt;dyn_table&amp;gt;.&lt;/P&gt;&lt;P&gt;  ASSIGN wa_line-&amp;gt;* TO &amp;lt;dyn_wa&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;Sachin M M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 12:36:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050971#M968331</guid>
      <dc:creator>sachin_mathapati</dc:creator>
      <dc:date>2008-07-01T12:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: what is dynamic table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050972#M968332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Chk the link...&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="751825"&gt;&lt;/A&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>Tue, 01 Jul 2008 12:37:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050972#M968332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T12:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: what is dynamic table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050973#M968333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a  good webblogs reg ur issue. Have a look into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_blogpost" href="https://community.sap.com/" __jive_macro_name="blogpost" modifiedtitle="true" __default_attr="40600"&gt;&lt;/A&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;Nani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 13:03:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-dynamic-table/m-p/4050973#M968333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T13:03:07Z</dc:date>
    </item>
  </channel>
</rss>

