<?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: ALV columns dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879874#M369569</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this demo program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCALV_FIELDCAT_TEST                  &lt;/P&gt;&lt;P&gt;(This report allows to modify the fieldcatalog of a corresponding&lt;/P&gt;&lt;P&gt;output table and to view the effects of your changes directly.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Beejal&lt;/P&gt;&lt;P&gt;**Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Jan 2007 11:10:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-30T11:10:53Z</dc:date>
    <item>
      <title>ALV columns dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879872#M369567</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;How to create Dynamically ALV columns??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 11:00:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879872#M369567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T11:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: ALV columns dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879873#M369568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refer below links  - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/ravikumar.allampallam/blog/2005/05/31/expand-the-list-of-columns-in-a-report-dynamically&lt;/P&gt;&lt;P&gt;/people/subramanian.venkateswaran2/blog/2004/11/19/dynamic-internal-table&lt;/P&gt;&lt;P&gt;/people/rich.heilman2/blog/2005/07/27/dynamic-internal-tables-and-structures--abap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 11:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879873#M369568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T11:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: ALV columns dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879874#M369569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this demo program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCALV_FIELDCAT_TEST                  &lt;/P&gt;&lt;P&gt;(This report allows to modify the fieldcatalog of a corresponding&lt;/P&gt;&lt;P&gt;output table and to view the effects of your changes directly.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Beejal&lt;/P&gt;&lt;P&gt;**Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 11:10:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879874#M369569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T11:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: ALV columns dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879875#M369570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anju,&lt;/P&gt;&lt;P&gt; This will create columns dynamically,check it out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: dt_outtab TYPE REF TO data.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;outtab&amp;gt; TYPE STANDARD TABLE.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;                  EXPORTING i_structure_name       = 'ZSOME_EXISTING_STRUCTURE'&lt;/P&gt;&lt;P&gt;                            i_client_never_display = 'X'&lt;/P&gt;&lt;P&gt;                  CHANGING  ct_fieldcat = t_fcat.&lt;/P&gt;&lt;P&gt;s_fcat-fieldname = 'NEW_FIELD'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;...supply all other fieldcat attributes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;APPEND s_fcat TO t_fcat.&lt;/P&gt;&lt;P&gt;CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;                     EXPORTING it_fieldcatalog = t_fcat&lt;/P&gt;&lt;P&gt;                     IMPORTING ep_table        = dt_outtab.&lt;/P&gt;&lt;P&gt;ASSIGN dt_outtab-&amp;gt;* TO &amp;lt;outtab&amp;gt;.&lt;/P&gt;&lt;P&gt;*... create your ALV&lt;/P&gt;&lt;P&gt;CALL METHOD alv-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;        CHANGING  it_outtab       = &amp;lt;outtab&amp;gt;&lt;/P&gt;&lt;P&gt;                  it_fieldcatalog = t_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mark all helpful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 11:11:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879875#M369570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T11:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: ALV columns dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879876#M369571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can also check:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/ABAP/DynamicInternaltable/DynamicInternalTable.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/ABAP/DynamicInternaltable/DynamicInternalTable.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 11:15:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-columns-dynamically/m-p/1879876#M369571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T11:15:47Z</dc:date>
    </item>
  </channel>
</rss>

