<?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: Get values in selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954678#M1602171</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help me for this matter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 19 Jun 2011 15:20:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-19T15:20:46Z</dc:date>
    <item>
      <title>Get values in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954673#M1602166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to get the values in selection screen to print in the ALV top of the page&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose if there's a selection for customer range, how can i print the customer name according to the customer number selected in the selection screen in the ALV top of the page?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2011 06:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954673#M1602166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-19T06:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Get values in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954674#M1602167</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;Yes you can print it at top of page.&lt;/P&gt;&lt;P&gt;If you use FM 'REUSE_ALV_GRID_DISPLAY' to display  your ALV ,&lt;/P&gt;&lt;P&gt;first create Form to write your top of page then &lt;/P&gt;&lt;P&gt;on I_CALLBACK_TOP_OF_PAGE  = 'F_TOP-OF-PAGE' fill in your form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard,&lt;/P&gt;&lt;P&gt;Ikrar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ikrarSAP on Jun 19, 2011 11:19 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2011 09:09:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954674#M1602167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-19T09:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get values in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954675#M1602168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i know how to print something in top of page. but i need to know how can i pass the data in selection if there's a range. so if the user gives customer range like customer 1 to 5, then i need to print it in top of page the names of customer 1 and customer 5.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2011 09:56:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954675#M1602168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-19T09:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Get values in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954676#M1602169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi venura12,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose your selection screen has a selection-options s_kunnr for kna1-kunnr. You can find the customer name in table KNA1field NAME1, i.e. if the ALV TOP_OF_PAGE event is assigned to the FORM with that name, it could be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM TOP_OF_PAGE.
  DATA:
    lv_kunnr TYPE kna1-kunnr,
    lv_name1 TYPE kna1-name1.
  SELECT kunnr name1 
    INTO (lv_kunnr,lv_name1)
    FROM kna1
    WHERE kunnr in s_kunnr.
  WRITE: / lv_kunnr,lv_name1.
  ENDSELECT.
ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please remember for future questions: If you ask something regarding ALV then mention the ALV technique used: Functional LIST or GRID, old-style object-oriented CL_GUI_ALV_GRID, SAP-released-for-customer-use CL_SALV_TABLE, full screen or control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2011 10:11:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954676#M1602169</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-06-19T10:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Get values in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954677#M1602170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply, from your code i'm only getting the customer who selected in the second box of the customer range. I need to get the customer name in first box and second box of the selection screen to print in top of page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using an ALV GRID DISPLAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: venura12 on Jun 19, 2011 2:21 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2011 12:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954677#M1602170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-19T12:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Get values in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954678#M1602171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help me for this matter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2011 15:20:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954678#M1602171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-19T15:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Get values in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954679#M1602172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please help me anyone...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2011 19:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954679#M1602172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-19T19:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Get values in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954680#M1602173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please give me a good answer anyone&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 02:53:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954680#M1602173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T02:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Get values in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954681#M1602174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sorry but this is a very simple question and Clemens has given you more than enough to work out the solution for yourself. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thread locked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 03:27:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-values-in-selection-screen/m-p/7954681#M1602174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T03:27:42Z</dc:date>
    </item>
  </channel>
</rss>

