<?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: Select-screen problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412386#M538189</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;Call From a Program&lt;/P&gt;&lt;P&gt;From any program in which selection screens are defined, you can call these screens at any&lt;/P&gt;&lt;P&gt;point of the program flow using the following statement:&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN &amp;lt;numb&amp;gt; [STARTING AT &amp;lt;x1&amp;gt; &amp;lt;y1&amp;gt;]&lt;/P&gt;&lt;P&gt;[ENDING AT &amp;lt;x2&amp;gt; &amp;lt;y2&amp;gt;].&lt;/P&gt;&lt;P&gt;This statement calls selection screen number &amp;lt;numb&amp;gt;. The selection screen called must be&lt;/P&gt;&lt;P&gt;defined in the calling program either as the standard selection screen (screen number 1000) or&lt;/P&gt;&lt;P&gt;as a user-defined selection screen (any screen number). You must always use CALL&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN to call selection screens, and not CALL SCREEN. If you use CALL&lt;/P&gt;&lt;P&gt;SCREEN, the system will not be able to process the selection screen.&lt;/P&gt;&lt;P&gt;You can display a user-defined selection screen as a modal dialog box using the STARTING AT&lt;/P&gt;&lt;P&gt;and ENDING AT additions. This is possible even if you have not used the AS WINDOW addition&lt;/P&gt;&lt;P&gt;in the definition of the selection screen. However, you are recommended to do so, since&lt;/P&gt;&lt;P&gt;warnings and error messages that occur during selection screen processing will then&lt;/P&gt;&lt;P&gt;also be displayed as modal dialog boxes (see example below).&lt;/P&gt;&lt;P&gt;When it returns from the selection screen to the program, the CALL SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;statement sets the return value SY-SUBRC as follows:&lt;/P&gt;&lt;P&gt;  SY-SUBRC = 0 if the user has chosen Execute on the selection screen&lt;/P&gt;&lt;P&gt;  SY-SUBRC = 4 if the user has chosen Cancel on the selection screen&lt;/P&gt;&lt;P&gt;Any time a selection screen is processed, the selection screen events are triggered.&lt;/P&gt;&lt;P&gt;System field SY-DYNNR of the associated event blocks contains the number of the selection&lt;/P&gt;&lt;P&gt;screen that is currently active.&lt;/P&gt;&lt;P&gt;REPORT SELSCREENDEF.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK SEL1 WITH FRAME TITLE TIT1.&lt;/P&gt;&lt;P&gt;PARAMETERS: CITYFR LIKE SPFLI-CITYFROM,&lt;/P&gt;&lt;P&gt;CITYTO LIKE SPFLI-CITYTO.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK SEL1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN INCLUDE BLOCKS SEL1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK SEL2&lt;/P&gt;&lt;P&gt;WITH FRAME TITLE TIT2.&lt;/P&gt;&lt;P&gt;PARAMETERS: AIRPFR LIKE SPFLI-AIRPFROM,&lt;/P&gt;&lt;P&gt;AIRPTO LIKE SPFLI-AIRPTO.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK SEL2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 500.&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;TIT1 = 'Cities'.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;CASE SY-DYNNR.&lt;/P&gt;&lt;P&gt;WHEN '0500'.&lt;/P&gt;&lt;P&gt;MESSAGE W159(AT) WITH 'Screen 500'.&lt;/P&gt;&lt;P&gt;WHEN '1000'.&lt;/P&gt;&lt;P&gt;MESSAGE W159(AT) WITH 'Screen 1000'.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;TIT1 = 'Cities for Airports'.&lt;/P&gt;&lt;P&gt;TIT2 = 'Airports'.&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 500 STARTING AT 10 10.&lt;/P&gt;&lt;P&gt;TIT1 = 'Cities again'.&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 1000 STARTING AT 10 10.&lt;/P&gt;&lt;P&gt;This executable program contains definitions for the standard selection screen and&lt;/P&gt;&lt;P&gt;the user-defined screen number 500. Selection screen 500 is defined to be displayed&lt;/P&gt;&lt;P&gt;as a modal dialog box and contains the SEL1 block of the standard selection screen.&lt;/P&gt;&lt;P&gt;Note the phase in which the titles of the screens are defined. For the purpose of&lt;/P&gt;&lt;P&gt;demonstration, the program calls warning messages with message class AT during&lt;/P&gt;&lt;P&gt;the AT SELECTION-SCREEN event.&lt;/P&gt;&lt;P&gt;When you start the program, the following sequence of screens is displayed:&lt;/P&gt;&lt;P&gt;1. The standard selection screen. If the user chooses Execute, the system displays&lt;/P&gt;&lt;P&gt;the warning SCREEN 1000 in the status bar.&lt;/P&gt;&lt;P&gt;2. Once the user has confirmed the warning by choosing Enter, selection screen 500&lt;/P&gt;&lt;P&gt;is called as a modal dialog box. When the user chooses Execute, the system&lt;/P&gt;&lt;P&gt;displays the warning SCREEN 500, also in a dialog box.&lt;/P&gt;&lt;P&gt;3. When the user has confirmed this warning, the standard selection screen is called&lt;/P&gt;&lt;P&gt;again, but this time as a modal dialog box. Since you cannot define the standard&lt;/P&gt;&lt;P&gt;selection screen as a modal dialog box, the warning message displayed when the&lt;/P&gt;&lt;P&gt;user chooses Execute appears in the status bar and not as a modal dialog box.&lt;/P&gt;&lt;P&gt;Consequently, you can only exit this selection screen using Cancel, since there is no&lt;/P&gt;&lt;P&gt;Enter function in the dialog box to confirm the warning message.&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>Tue, 03 Jul 2007 13:50:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-03T13:50:58Z</dc:date>
    <item>
      <title>Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412384#M538187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;I have create one selection screen as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN BEGIN OF SCREEN 1001 ."AS WINDOW.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN BEGIN OF BLOCK B0 WITH FRAME TITLE TEXT-101.&lt;/P&gt;&lt;P&gt;  SELECT-OPTIONS  :  SO_PLANT  FOR  ZTAB_PP_PARAM-ZPLANT NO INTERVALS NO-EXTENSION OBLIGATORY.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF BLOCK B0 .&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF SCREEN 1001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and call in follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL SELECTION-SCREEN  1001 STARTING AT 5 5  ENDING AT 50 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its working properly &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my problem if in the appear window has scroll in there end.&lt;/P&gt;&lt;P&gt;if i removed Block part its working&lt;/P&gt;&lt;P&gt;you can check Tcode CEWB that is standred code inthe bigining nice window displayed  i want to create that type window.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please try to help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 13:33:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412384#M538187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T13:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412385#M538188</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;Display length is not enough to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try to call the screen like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 1001 STARTING AT 5 5 ENDING AT 100 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award points if its useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards'&lt;/P&gt;&lt;P&gt;Sreenivasa reddy pocha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 13:50:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412385#M538188</guid>
      <dc:creator>sreenivasa_reddy1</dc:creator>
      <dc:date>2007-07-03T13:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412386#M538189</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;Call From a Program&lt;/P&gt;&lt;P&gt;From any program in which selection screens are defined, you can call these screens at any&lt;/P&gt;&lt;P&gt;point of the program flow using the following statement:&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN &amp;lt;numb&amp;gt; [STARTING AT &amp;lt;x1&amp;gt; &amp;lt;y1&amp;gt;]&lt;/P&gt;&lt;P&gt;[ENDING AT &amp;lt;x2&amp;gt; &amp;lt;y2&amp;gt;].&lt;/P&gt;&lt;P&gt;This statement calls selection screen number &amp;lt;numb&amp;gt;. The selection screen called must be&lt;/P&gt;&lt;P&gt;defined in the calling program either as the standard selection screen (screen number 1000) or&lt;/P&gt;&lt;P&gt;as a user-defined selection screen (any screen number). You must always use CALL&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN to call selection screens, and not CALL SCREEN. If you use CALL&lt;/P&gt;&lt;P&gt;SCREEN, the system will not be able to process the selection screen.&lt;/P&gt;&lt;P&gt;You can display a user-defined selection screen as a modal dialog box using the STARTING AT&lt;/P&gt;&lt;P&gt;and ENDING AT additions. This is possible even if you have not used the AS WINDOW addition&lt;/P&gt;&lt;P&gt;in the definition of the selection screen. However, you are recommended to do so, since&lt;/P&gt;&lt;P&gt;warnings and error messages that occur during selection screen processing will then&lt;/P&gt;&lt;P&gt;also be displayed as modal dialog boxes (see example below).&lt;/P&gt;&lt;P&gt;When it returns from the selection screen to the program, the CALL SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;statement sets the return value SY-SUBRC as follows:&lt;/P&gt;&lt;P&gt;  SY-SUBRC = 0 if the user has chosen Execute on the selection screen&lt;/P&gt;&lt;P&gt;  SY-SUBRC = 4 if the user has chosen Cancel on the selection screen&lt;/P&gt;&lt;P&gt;Any time a selection screen is processed, the selection screen events are triggered.&lt;/P&gt;&lt;P&gt;System field SY-DYNNR of the associated event blocks contains the number of the selection&lt;/P&gt;&lt;P&gt;screen that is currently active.&lt;/P&gt;&lt;P&gt;REPORT SELSCREENDEF.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK SEL1 WITH FRAME TITLE TIT1.&lt;/P&gt;&lt;P&gt;PARAMETERS: CITYFR LIKE SPFLI-CITYFROM,&lt;/P&gt;&lt;P&gt;CITYTO LIKE SPFLI-CITYTO.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK SEL1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN INCLUDE BLOCKS SEL1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK SEL2&lt;/P&gt;&lt;P&gt;WITH FRAME TITLE TIT2.&lt;/P&gt;&lt;P&gt;PARAMETERS: AIRPFR LIKE SPFLI-AIRPFROM,&lt;/P&gt;&lt;P&gt;AIRPTO LIKE SPFLI-AIRPTO.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK SEL2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 500.&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;TIT1 = 'Cities'.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;CASE SY-DYNNR.&lt;/P&gt;&lt;P&gt;WHEN '0500'.&lt;/P&gt;&lt;P&gt;MESSAGE W159(AT) WITH 'Screen 500'.&lt;/P&gt;&lt;P&gt;WHEN '1000'.&lt;/P&gt;&lt;P&gt;MESSAGE W159(AT) WITH 'Screen 1000'.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;TIT1 = 'Cities for Airports'.&lt;/P&gt;&lt;P&gt;TIT2 = 'Airports'.&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 500 STARTING AT 10 10.&lt;/P&gt;&lt;P&gt;TIT1 = 'Cities again'.&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 1000 STARTING AT 10 10.&lt;/P&gt;&lt;P&gt;This executable program contains definitions for the standard selection screen and&lt;/P&gt;&lt;P&gt;the user-defined screen number 500. Selection screen 500 is defined to be displayed&lt;/P&gt;&lt;P&gt;as a modal dialog box and contains the SEL1 block of the standard selection screen.&lt;/P&gt;&lt;P&gt;Note the phase in which the titles of the screens are defined. For the purpose of&lt;/P&gt;&lt;P&gt;demonstration, the program calls warning messages with message class AT during&lt;/P&gt;&lt;P&gt;the AT SELECTION-SCREEN event.&lt;/P&gt;&lt;P&gt;When you start the program, the following sequence of screens is displayed:&lt;/P&gt;&lt;P&gt;1. The standard selection screen. If the user chooses Execute, the system displays&lt;/P&gt;&lt;P&gt;the warning SCREEN 1000 in the status bar.&lt;/P&gt;&lt;P&gt;2. Once the user has confirmed the warning by choosing Enter, selection screen 500&lt;/P&gt;&lt;P&gt;is called as a modal dialog box. When the user chooses Execute, the system&lt;/P&gt;&lt;P&gt;displays the warning SCREEN 500, also in a dialog box.&lt;/P&gt;&lt;P&gt;3. When the user has confirmed this warning, the standard selection screen is called&lt;/P&gt;&lt;P&gt;again, but this time as a modal dialog box. Since you cannot define the standard&lt;/P&gt;&lt;P&gt;selection screen as a modal dialog box, the warning message displayed when the&lt;/P&gt;&lt;P&gt;user chooses Execute appears in the status bar and not as a modal dialog box.&lt;/P&gt;&lt;P&gt;Consequently, you can only exit this selection screen using Cancel, since there is no&lt;/P&gt;&lt;P&gt;Enter function in the dialog box to confirm the warning message.&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>Tue, 03 Jul 2007 13:50:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412386#M538189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T13:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412387#M538190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Just use CALL SCREEN 1001 STARTING AT 5 5 .&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:29:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412387#M538190</guid>
      <dc:creator>former_member219399</dc:creator>
      <dc:date>2007-07-04T03:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412388#M538191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no dear read my question again&lt;/P&gt;&lt;P&gt;i want a small window not default size&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Starting 5 5 and ending  50 5 is correct i want to decrease there frame size.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:39:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412388#M538191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T03:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412389#M538192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The frame size is because of the statements&lt;/P&gt;&lt;P&gt;selection-screen : begin of block " Statements in your code. just remove that and your frame works.&lt;/P&gt;&lt;P&gt;if you want any title for ur screen just add the title text-001 extensions to your begin of screen 1001 statement like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES : t001w.

SELECTION-SCREEN : BEGIN OF SCREEN 1001 title text-001.
PARAMETERS       : p_werks LIKE t001w-werks.
SELECTION-SCREEN : END OF SCREEN 1001.

CALL SELECTION-SCREEN 1001 STARTING AT 5 5 ENDING AT 50 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards points for all useful answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:46:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412389#M538192</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-07-04T03:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412390#M538193</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;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1001 ."AS WINDOW.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B0 WITH FRAME TITLE TEXT-101 &amp;lt;b&amp;gt;NO INTERVALS&amp;lt;/b&amp;gt; .&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: SO_PLANT FOR ZTAB_PP_PARAM-ZPLANT NO INTERVALS NO-EXTENSION OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B0 .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 1001 STARTING AT 5 5 ENDING AT &amp;lt;b&amp;gt;60 5&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward all helpful answers.&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:54:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412390#M538193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T03:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412391#M538194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all&lt;/P&gt;&lt;P&gt;but all of you still not getting what i want&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use standard Tcode CEWB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to create a window like that with same size.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:56:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412391#M538194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T03:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412392#M538195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    The addition WITH FRAME draws a frame around a block that is not empty. A maximum of five blocks can be nested. Since Release 6.20, a standard width of 120 columns has been defined for the outer frame (the width was previously 83 columns). The frame of each nested block has been shortened by 4 columns.&lt;/P&gt;&lt;P&gt;  so I think the width of the frame can't be reassigned.&lt;/P&gt;&lt;P&gt;  in the trx you mentioned it is a screen (modal dialog box) not a selection screen.&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 04:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412392#M538195</guid>
      <dc:creator>former_member219399</dc:creator>
      <dc:date>2007-07-04T04:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412393#M538196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Nelson ,,,&lt;/P&gt;&lt;P&gt;This  code  is  working as  like   Tcode CEWB  .... Please  try the  below &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF SCREEN 1001 ."AS WINDOW.
SELECT-OPTIONS : SO_PLANT FOR ZTAB_PP_PARAM-ZPLANT NO INTERVALS NO-EXTENSION OBLIGATORY.
SELECTION-SCREEN END OF SCREEN 1001.


CALL SELECTION-SCREEN 1001 STARTING AT 5 5 ENDING AT 50 2.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points if it is usefull ...&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 04:35:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412393#M538196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T04:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412394#M538197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Girish&lt;/P&gt;&lt;P&gt;see in the CEWB there is no any scroll bars&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i run this code part scroll bar is comming that is the problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 04:53:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412394#M538197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T04:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412395#M538198</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;chack it its same as cewb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables:mara.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1001 ."AS WINDOW.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B0 WITH FRAME TITLE TEXT-101 NO INTERVALS .&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: matnr FOR mara-matnr NO INTERVALS NO-EXTENSION OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B0 .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 1001 STARTING AT 1 1 ENDING AT 60 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 04:57:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412395#M538198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T04:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412396#M538199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES : t001w.

SELECTION-SCREEN BEGIN OF SCREEN 1001 ."AS WINDOW.
SELECTION-SCREEN BEGIN OF BLOCK b0 WITH FRAME TITLE text-101.
SELECT-OPTIONS : so_plant FOR t001w-werks NO INTERVALS NO-EXTENSION
OBLIGATORY.
SELECTION-SCREEN END OF BLOCK b0 .
SELECTION-SCREEN END OF SCREEN 1001.

call selection-screen 1001 starting at 2 2 ending at 85 5.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now check this... Hope this is what you require...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You just need to adjust the co ordinates and thats all it works &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 05:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412396#M538199</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-07-04T05:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412397#M538200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all I got the correct answerer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 05:52:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412397#M538200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T05:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Select-screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412398#M538201</link>
      <description>&lt;P&gt;This is really helpful. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2022 13:14:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-screen-problem/m-p/2412398#M538201</guid>
      <dc:creator>s_shallah</dc:creator>
      <dc:date>2022-11-17T13:14:23Z</dc:date>
    </item>
  </channel>
</rss>

