<?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 from selection-screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860992#M48026</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume you mean you want an ALV grid to appear on your selection-screen.  I believe this is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, what you can do is create a normal ABAP screen, with a container for your ALV grid as well as a subscreen.  Then you can include your selection-screen in the subscreen, but it has to be defined along the lines of:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF SCREEN nnnn AS SUBSCREEN.
...
SELECTION-SCREEN END OF SCREEN nnnn.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Essentially the same result, but in reverse.  Of course, you don't get variant support out of the bag, but it can still be done with a bit of effort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 May 2005 13:21:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-05-06T13:21:55Z</dc:date>
    <item>
      <title>ALV from selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860989#M48023</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;  I have a selection screen and i want to output an ALV(objects) without creating a Dynpro, how can i do that in a OO ALV?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2005 12:32:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860989#M48023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-06T12:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: ALV from selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860990#M48024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use fm REUSE_ALV_GRID_DISPLAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-sample is prg BCALV_TEST_GRID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2005 12:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860990#M48024</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-05-06T12:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: ALV from selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860991#M48025</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;For OO ALV, use this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA obj_alv TYPE REF TO cl_gui_alv_grid.

CREATE OBJECT obj_alv
  EXPORTING i_parent = cl_gui_cintainer=&amp;gt;screen0.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2005 13:09:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860991#M48025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-06T13:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: ALV from selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860992#M48026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume you mean you want an ALV grid to appear on your selection-screen.  I believe this is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, what you can do is create a normal ABAP screen, with a container for your ALV grid as well as a subscreen.  Then you can include your selection-screen in the subscreen, but it has to be defined along the lines of:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF SCREEN nnnn AS SUBSCREEN.
...
SELECTION-SCREEN END OF SCREEN nnnn.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Essentially the same result, but in reverse.  Of course, you don't get variant support out of the bag, but it can still be done with a bit of effort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2005 13:21:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860992#M48026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-06T13:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV from selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860993#M48027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Tis possible to display ALV in selection screen...Hope this code sample would help you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap&lt;/A&gt; code sample to display and edit data from text file using alv.pdf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Immanuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2005 13:47:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860993#M48027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-06T13:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: ALV from selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860994#M48028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ah, yes.  I did overlook the docking container.  Technically not part of the selection-screen, but if the result for the user is the same, then why not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2005 14:05:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860994#M48028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-06T14:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: ALV from selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860995#M48029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John ,&lt;/P&gt;&lt;P&gt; Hope you are done...!!!&lt;/P&gt;&lt;P&gt;How useful was that code sample to you??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Immanuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 12:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860995#M48029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-09T12:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: ALV from selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860996#M48030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a pity that the REUSE_ALV_GRID_DISPLAY and REUSE_ALV_LIST_DISPLAY are not released for customer use! (Look at the attributes). (I had SAP tell me this after I reported a problem we had with REUSE_ALV_GRID_DISPLAY).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 12:44:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-from-selection-screen/m-p/860996#M48030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-09T12:44:19Z</dc:date>
    </item>
  </channel>
</rss>

