<?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: Multiple ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-alv/m-p/4723126#M1108946</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Naimesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you mean with point 4. : Than Refresh the ALV display using the RS_SELFIELD-REFERSH = 'X' in the user command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How should I call it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jirka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Nov 2008 17:43:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-07T17:43:07Z</dc:date>
    <item>
      <title>Multiple ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-alv/m-p/4723123#M1108943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have ALV grid in my report (using REUSE_ALV_GRID_DISPLAY). I have add one icon for Display/change functionality. When I press this icon, some fields in fieldcatalog are changed (flag edit is set o 'X') and after that I recall function module REUSE_ALV_GRID_DISPLAY. It works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is, that if I press back, first I go back to previous ALV and I need to go directly to selection screen. I tried to find some attribut of FM, but I was not succesfull. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jirka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 16:04:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-alv/m-p/4723123#M1108943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T16:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-alv/m-p/4723124#M1108944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of the changing the Field-Catalog and calling the FM REUSE_ALV_GRID_DISPLAY, you should:&lt;/P&gt;&lt;P&gt;1. First call FM REUSE_ALV_GRID_LAYOUT_INFO_GET to get the current field-catalog&lt;/P&gt;&lt;P&gt;2. Change the field catalog to set the Input enable the fields&lt;/P&gt;&lt;P&gt;3. Call FM REUSE_ALV_GRID_LAYOUT_INFO_SET to set the field-catalog&lt;/P&gt;&lt;P&gt;4. Than Refresh the ALV display using the RS_SELFIELD-REFERSH = 'X' in the user command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 16:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-alv/m-p/4723124#M1108944</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-11-07T16:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-alv/m-p/4723125#M1108945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this you can do it with the help of slis_selfield-exit .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can code like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;form user_command using ucomm type sy-ucomm selfield type slis_selfield.

case ucomm.

when 'SOMECODE'.
 selfield-exit = 'X'. "this will exit from the first alv
" call alv again.
 endcase.

endform.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 17:14:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-alv/m-p/4723125#M1108945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T17:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-alv/m-p/4723126#M1108946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Naimesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you mean with point 4. : Than Refresh the ALV display using the RS_SELFIELD-REFERSH = 'X' in the user command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How should I call it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jirka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 17:43:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-alv/m-p/4723126#M1108946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T17:43:07Z</dc:date>
    </item>
  </channel>
</rss>

