<?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: Selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565232#M857992</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;It is very much possible to put the custom control on default selection screen number '1000' for that program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE80,  Select type 'Program' and give your report name and press ennter,  Under Screen it will display the screen number 1000, just double click on that and press the Layout button and do what ever you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helpfull..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sivaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Mar 2008 08:13:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-27T08:13:32Z</dc:date>
    <item>
      <title>Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565227#M857987</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;Can we add custom control on selection screen( i.e. 1000 ) ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 07:50:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565227#M857987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T07:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565228#M857988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;what do u mean by custom Control.?&lt;/P&gt;&lt;P&gt;U can add push button,Icon etc in Selection Screen in Application Toolbar .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:02:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565228#M857988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565229#M857989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is possible ...here is the process for creating a logo in the selection-screen..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT Zf13 .&lt;/P&gt;&lt;P&gt;DATA:docking TYPE REF TO cl_gui_docking_container,&lt;/P&gt;&lt;P&gt;picture_control_1 TYPE REF TO cl_gui_picture,&lt;/P&gt;&lt;P&gt;url(256) TYPE c .&lt;/P&gt;&lt;P&gt;DATA : begin of imakt occurs 0,&lt;/P&gt;&lt;P&gt;matnr like makt-matnr,&lt;/P&gt;&lt;P&gt;spras like makt-spras,&lt;/P&gt;&lt;P&gt;maktx like makt-maktx,&lt;/P&gt;&lt;P&gt;end of imakt.&lt;/P&gt;&lt;P&gt;DATA: itrepid LIKE sy-repid.&lt;/P&gt;&lt;P&gt;itrepid = sy-repid.&lt;/P&gt;&lt;P&gt;parameters:p_matnr like makt-matnr.&lt;/P&gt;&lt;P&gt;select matnr spras maktx from makt into table imakt where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;loop at imakt.&lt;/P&gt;&lt;P&gt;write:/ imakt-matnr,&lt;/P&gt;&lt;P&gt;imakt-spras,&lt;/P&gt;&lt;P&gt;imakt-maktx.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;PERFORM show_pic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;**&amp;amp; Form show_pic&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;FORM show_pic.&lt;/P&gt;&lt;P&gt;CREATE OBJECT picture_control_1 EXPORTING parent = docking.&lt;/P&gt;&lt;P&gt;CHECK sy-subrc = 0.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;set_3d_border&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;border = 5.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;set_display_mode&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;display_mode = cl_gui_picture=&amp;gt;display_mode_stretch.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;set_position&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;height = 55&lt;/P&gt;&lt;P&gt;left = 750&lt;/P&gt;&lt;P&gt;top = 08&lt;/P&gt;&lt;P&gt;width = 350.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;load_picture_from_url&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;url = 'C:\zpic.gif'.&lt;/P&gt;&lt;P&gt;*here you give the path where your pic is stored on the desktop&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:05:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565229#M857989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565230#M857990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandipan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your responce.&lt;/P&gt;&lt;P&gt;How to put pushbuttons and icons on selection screen.Is there any procedure to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz do needful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:09:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565230#M857990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565231#M857991</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;Check the following link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/2a/755b94ca5911d299af5c9604c10e27/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/2a/755b94ca5911d299af5c9604c10e27/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:13:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565231#M857991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565232#M857992</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;It is very much possible to put the custom control on default selection screen number '1000' for that program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE80,  Select type 'Program' and give your report name and press ennter,  Under Screen it will display the screen number 1000, just double click on that and press the Layout button and do what ever you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helpfull..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sivaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:13:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565232#M857992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565233#M857993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this code for push buttons&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


TABLES sscrfields.
TYPE-POOLS icon.

SELECTION-SCREEN:
      PUSHBUTTON 2(10)  but1 USER-COMMAND cli1,
      PUSHBUTTON 12(30) but2 USER-COMMAND cli2
                           VISIBLE LENGTH 10.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this for adding Buuton beside F8.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES sscrfields.
TYPE-POOLS icon.

SELECTION-SCREEN:
     PUSHBUTTON 2(10)  but1 USER-COMMAND cli1,
      PUSHBUTTON 12(30) but2 USER-COMMAND cli2
                           VISIBLE LENGTH 10.
*
*
*

*
SELECTION-SCREEN: BEGIN OF BLOCK b01 WITH FRAME TITLE text-001.
SELECTION-SCREEN: FUNCTION KEY 1.
SELECTION-SCREEN:END OF BLOCK b01.


INITIALIZATION.
*
** Add displayed ICON  to application toolbar.
  MOVE icon_xls TO sscrfields-functxt_01.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There was some mistake in the previous code.&lt;/P&gt;&lt;P&gt;Try This One. &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sandipan Ghosh on Mar 27, 2008 2:22 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:22:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565233#M857993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565234#M857994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi use this prog for push button...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZSELECTIONSCREEN001&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZSELECTIONSCREEN001.&lt;/P&gt;&lt;P&gt;tables:mara,&lt;/P&gt;&lt;P&gt;       marc,&lt;/P&gt;&lt;P&gt;       mard,&lt;/P&gt;&lt;P&gt;       sscrfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_mara occurs 0,&lt;/P&gt;&lt;P&gt;      matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;      meins like mara-meins,&lt;/P&gt;&lt;P&gt;      mtart like mara-mtart,&lt;/P&gt;&lt;P&gt;      pstat like mara-pstat,&lt;/P&gt;&lt;P&gt;      ernam like mara-ernam,&lt;/P&gt;&lt;P&gt;      end of it_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 100  as subscreen.&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;select-options:matno for mara-matnr.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 200 as subscreen.&lt;/P&gt;&lt;P&gt;selection-screen begin of block b2 with frame title text-002.&lt;/P&gt;&lt;P&gt;select-options:industry  for mara-meins.&lt;/P&gt;&lt;P&gt;selection-screen end of block b2.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 300 as subscreen.&lt;/P&gt;&lt;P&gt;selection-screen begin of block b3 with frame title text-003.&lt;/P&gt;&lt;P&gt;select-options:mattype for mara-mtart.&lt;/P&gt;&lt;P&gt;selection-screen end of block b3.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 300.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: FUNCTION KEY 1,&lt;/P&gt;&lt;P&gt;                  FUNCTION KEY 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF TABBED BLOCK SUB FOR 15 LINES,&lt;/P&gt;&lt;P&gt;                  END OF BLOCK SUB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SSCRFIELDS-FUNCTXT_01 = '@0D@'.&lt;/P&gt;&lt;P&gt;  SSCRFIELDS-FUNCTXT_02 = '@0E@'.&lt;/P&gt;&lt;P&gt;  SUB-PROG = SY-REPID.&lt;/P&gt;&lt;P&gt;  SUB-DYNNR = 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  CASE SY-DYNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WHEN 100.&lt;/P&gt;&lt;P&gt;      IF SSCRFIELDS-UCOMM = 'FC01'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 300.&lt;/P&gt;&lt;P&gt;      ELSEIF SSCRFIELDS-UCOMM = 'FC02'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 200.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WHEN 200.&lt;/P&gt;&lt;P&gt;      IF SSCRFIELDS-UCOMM = 'FC01'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 100.&lt;/P&gt;&lt;P&gt;      ELSEIF SSCRFIELDS-UCOMM = 'FC02'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 300.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 300.&lt;/P&gt;&lt;P&gt;      IF SSCRFIELDS-UCOMM = 'FC01'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 200.&lt;/P&gt;&lt;P&gt;      ELSEIF SSCRFIELDS-UCOMM = 'FC02'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 100.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select matnr&lt;/P&gt;&lt;P&gt;         meins&lt;/P&gt;&lt;P&gt;         mtart&lt;/P&gt;&lt;P&gt;         pstat&lt;/P&gt;&lt;P&gt;         ernam&lt;/P&gt;&lt;P&gt;         from mara&lt;/P&gt;&lt;P&gt;         into table it_mara&lt;/P&gt;&lt;P&gt;         up to 100 rows&lt;/P&gt;&lt;P&gt;         where matnr in matno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         loop at it_mara.&lt;/P&gt;&lt;P&gt;         write:/ it_mara-matnr,&lt;/P&gt;&lt;P&gt;                  it_mara-meins,&lt;/P&gt;&lt;P&gt;                  it_mara-mtart,&lt;/P&gt;&lt;P&gt;                  it_mara-pstat,&lt;/P&gt;&lt;P&gt;                  it_mara-ernam.&lt;/P&gt;&lt;P&gt;         endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 10:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3565234#M857994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T10:35:54Z</dc:date>
    </item>
  </channel>
</rss>

