<?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 ALV . in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927427#M940584</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumit Verma ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the following link&lt;/P&gt;&lt;P&gt;[http://www.saptechnical.com/Tutorials/ALV/DynamicALV/Demo.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Surya Pydikondala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 May 2008 09:40:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-30T09:40:16Z</dc:date>
    <item>
      <title>Dynamic ALV .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927422#M940579</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;&lt;/P&gt;&lt;P&gt;I need to create a dynamic alv , ie. the number of columns that is to be displayed will depend on the user selection on the selection screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u help me with this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sumit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 07:02:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927422#M940579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T07:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic ALV .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927423#M940580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;VERY EASY USE OO ALV &lt;/P&gt;&lt;P&gt;AND TAKE HELP OF &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing Field Catalog or Layout after First Display&lt;/P&gt;&lt;P&gt;During runtime, it is possible to set a new layout or a new field catalog after first displaying of the list. These components have set/get methods to accomplish this.&lt;/P&gt;&lt;P&gt;For the field catalog : get_frontend_fieldcatalog&lt;/P&gt;&lt;P&gt;set_frontend_fieldcatalog&lt;/P&gt;&lt;P&gt;For the layout : get_frontend_layout&lt;/P&gt;&lt;P&gt;set_frontend_layout&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 07:07:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927423#M940580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T07:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic ALV .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927424#M940581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Malay ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u send me the sample code for this...will be really helpful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:01:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927424#M940581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic ALV .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927425#M940582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no problem....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as me sending u code for this part only... assuming u comfortable with rest of  alv...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.. ..&lt;/P&gt;&lt;P&gt;DATA ls_fcat TYPE lvc_s_fcat .&lt;/P&gt;&lt;P&gt;DATA lt_fcat TYPE lvc_t_fcat .&lt;/P&gt;&lt;P&gt;DATA ls_layout TYPE lvc_s_layo .&lt;/P&gt;&lt;P&gt;CALL METHOD gr_alvgrid-&amp;gt;get_frontend_fieldcatalog&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;et_fieldcatalog = lt_fcat[] .&lt;/P&gt;&lt;P&gt;LOOP AT lt_fcat INTO ls_fcat .&lt;/P&gt;&lt;P&gt;IF ls_fcat-fieldname = 'PAYMENTSUM' .&lt;/P&gt;&lt;P&gt;ls_fcat-no_out = space .&lt;/P&gt;&lt;P&gt;MODIFY lt_fcat FROM ls_fcat .&lt;/P&gt;&lt;P&gt;ENDIF .&lt;/P&gt;&lt;P&gt;ENDLOOP .&lt;/P&gt;&lt;P&gt;CALL METHOD gr_alvgrid-&amp;gt;set_frontend_fieldcatalog&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;it_fieldcatalog = lt_fcat[] .&lt;/P&gt;&lt;P&gt;CALL METHOD gr_alvgrid-&amp;gt;get_frontend_layout&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;es_layout = ls_layout .&lt;/P&gt;&lt;P&gt;ls_layout-grid_title = 'Flights (with Payment Sums)' .&lt;/P&gt;&lt;P&gt;CALL METHOD gr_alvgrid-&amp;gt;set_frontend_layout&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;is_layout = ls_layout&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927425#M940582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic ALV .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927426#M940583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use one more thing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make 3 button..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select query for column which u want to display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example in one view select c1,c2  for secomd select c1,c2,c3 ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now fill internal table for this column only and pass it to alv_grid_display and show the data...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:47:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927426#M940583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic ALV .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927427#M940584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumit Verma ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the following link&lt;/P&gt;&lt;P&gt;[http://www.saptechnical.com/Tutorials/ALV/DynamicALV/Demo.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Surya Pydikondala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 09:40:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927427#M940584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T09:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic ALV .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927428#M940585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sumit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may want to have a look at [Creating Flat and Complex Internal Tables Dynamically using RTTI|https://wiki.sdn.sap.com/wiki/display/Snippets/Creating&lt;EM&gt;Flat&lt;/EM&gt;and&lt;EM&gt;Complex&lt;/EM&gt;Internal&lt;EM&gt;Tables&lt;/EM&gt;Dynamically&lt;EM&gt;using&lt;/EM&gt;RTTI]&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;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Jul 2008 19:10:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/3927428#M940585</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-07-06T19:10:25Z</dc:date>
    </item>
  </channel>
</rss>

