<?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: How to insert a standard selection screen on moduled program? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-a-standard-selection-screen-on-moduled-program/m-p/6451411#M1413862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siaong,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like the way you are creating your Selection screen of your 1 screen by defining fields in the PBO of that screen, In the same manner Declare fields in the PBO of 2nd screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jan 2010 07:49:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-20T07:49:38Z</dc:date>
    <item>
      <title>How to insert a standard selection screen on moduled program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-a-standard-selection-screen-on-moduled-program/m-p/6451410#M1413861</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 am using a module program of PBO and PAI. The selection-screen is used only for program type I  and not M. However, I have a requirement of using a selection-screen on my first screen and second screen.&lt;/P&gt;&lt;P&gt;The flow:&lt;/P&gt;&lt;P&gt;Main screen (selection-screen) --&amp;gt; 2nd screen (selection-screen) --&amp;gt; 3rd screen (Display output)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how do I insert it for such a delicate case? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 07:43:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-a-standard-selection-screen-on-moduled-program/m-p/6451410#M1413861</guid>
      <dc:creator>siongchao_ng</dc:creator>
      <dc:date>2010-01-20T07:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to insert a standard selection screen on moduled program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-a-standard-selection-screen-on-moduled-program/m-p/6451411#M1413862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siaong,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like the way you are creating your Selection screen of your 1 screen by defining fields in the PBO of that screen, In the same manner Declare fields in the PBO of 2nd screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 07:49:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-a-standard-selection-screen-on-moduled-program/m-p/6451411#M1413862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-20T07:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to insert a standard selection screen on moduled program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-a-standard-selection-screen-on-moduled-program/m-p/6451412#M1413863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I only used selction-screen before i executable report program not in module program.&lt;/P&gt;&lt;P&gt;What is the steps for me to use selection-screen statement in module program??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Create  screen 100 type subscreen.&lt;/P&gt;&lt;P&gt;2. In the Top include program, insert the folowing code:&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;       PARAMETERS PY_AREA TYPE PA0001-ABKRS.&lt;/P&gt;&lt;P&gt;     SELECTION-SCREEN END OF SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Create screen 200 type subscreen.&lt;/P&gt;&lt;P&gt;4. In the Top Include program, insert the folloing code:&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 LINE.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN COMMENT 5(20) label1.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN PUSHBUTTON 30(10) text-a01 USER-COMMAND CLI1 VISIBLE LENGTH 10.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN COMMENT 45(10) v_red.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN PUSHBUTTON 60(15) text-a02  USER-COMMAND CLI2 VISIBLE LENGTH 10.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END of LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN COMMENT 5(20) label2.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN PUSHBUTTON 30(10) text-a01 USER-COMMAND CLI3 VISIBLE LENGTH 10.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN COMMENT 45(10) v_amber.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN PUSHBUTTON 60(15) text-a02  USER-COMMAND CLI4 VISIBLE LENGTH 10.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the above correct?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 08:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-a-standard-selection-screen-on-moduled-program/m-p/6451412#M1413863</guid>
      <dc:creator>siongchao_ng</dc:creator>
      <dc:date>2010-01-20T08:04:45Z</dc:date>
    </item>
  </channel>
</rss>

