<?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: Docking container in Report Selection Screen Program...? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323573#M1919331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to read the row which was double clicked, but after reading that i need to carry that value to the code running in AT-SELECTION-SCREEN-OUTPUT, that means i need to call the &lt;SPAN style="font-size: 13.3333px;"&gt;AT-SELECTION-SCREEN-OUTPUT event after reading the row from ALV.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Oct 2015 14:16:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2015-10-09T14:16:49Z</dc:date>
    <item>
      <title>Docking container in Report Selection Screen Program...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323570#M1919328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gurus,&lt;/P&gt;&lt;P&gt;Hope Every one doing good...!!.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having a requirement in my dash board.&lt;/P&gt;&lt;P&gt;I developed a dash board with some radio buttons and input fields. I placed a docking container in the same selection screen where data is displayed in&lt;/P&gt;&lt;P&gt;ALV GRID DISPLAY. when i click a radio button the code in AT SELECTION SCREEN OUTPUT event will run and the relevant data will be displayed in docking container. I used double click event&amp;nbsp; to get the record from alv display in docking container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Up to here it worked fine.&lt;/P&gt;&lt;P&gt;my requirement is, I need to read the double clicked record and place it in the input field on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i double click on alv record, i am not able to go to the code in &lt;SPAN style="font-size: 13.3333px;"&gt; AT SELECTION SCREEN OUTPUT event.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest if there is any possibility to achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2015 15:36:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323570#M1919328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-07T15:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Docking container in Report Selection Screen Program...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323571#M1919329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;AT SELECTION SCREEN OUTPUT is PBO, so y&lt;/SPAN&gt;ou have to trigger a PAI/PBO cycle for this, add a call of CL_GUI_CFW=&amp;gt;SET_NEW_OK_CODE in the double-click handling method.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 11:42:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323571#M1919329</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2015-10-09T11:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Docking container in Report Selection Screen Program...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323572#M1919330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After double click in your ALV, you are in the ALV event handler method. You have to declare the event as PAI-relevant (&lt;SPAN style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; background-color: #f6f6f6;"&gt;SET_REGISTERED_EVENT -&amp;gt; APPL_EVENT = 'X&lt;/SPAN&gt;').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This results in a PAI/PBO rollup of all ALV events, which makes you able to handle the event in PAI (AT SELECTION-SCREEN) and PBO (AT SELECTION-SCREEN OUTUT) as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main problem would be to get your program know, which row has been selected / double clicked within the ALV.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 12:03:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323572#M1919330</guid>
      <dc:creator>ralf_wenzel_heuristika</dc:creator>
      <dc:date>2015-10-09T12:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Docking container in Report Selection Screen Program...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323573#M1919331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to read the row which was double clicked, but after reading that i need to carry that value to the code running in AT-SELECTION-SCREEN-OUTPUT, that means i need to call the &lt;SPAN style="font-size: 13.3333px;"&gt;AT-SELECTION-SCREEN-OUTPUT event after reading the row from ALV.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 14:16:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323573#M1919331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-09T14:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Docking container in Report Selection Screen Program...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323574#M1919332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply raymond,&lt;/P&gt;&lt;P&gt;I will try this and let you know how it worked....!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 14:27:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/docking-container-in-report-selection-screen-program/m-p/11323574#M1919332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-09T14:27:45Z</dc:date>
    </item>
  </channel>
</rss>

