<?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 create selection-screen with Transaction Programming? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584371#M263495</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can define like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK a1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_cust  FOR but000-partner OBLIGATORY, "Business Partner&lt;/P&gt;&lt;P&gt;                s_status FOR zspa_supstat-zzsptstatus  " Status&lt;/P&gt;&lt;P&gt;                         NO INTERVALS NO-EXTENSION&lt;/P&gt;&lt;P&gt;                         MATCHCODE OBJECT zs_supstat_es.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK a1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can assign the transaction for the program in SE93 by selecting the radio button Program and selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Oct 2006 14:21:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-09T14:21:32Z</dc:date>
    <item>
      <title>how to create selection-screen with Transaction Programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584370#M263494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Abapers:&lt;/P&gt;&lt;P&gt;I have a  Transaction Programming assignment, in main scren, I want to create selection-screen, select-options.&lt;/P&gt;&lt;P&gt;How to do that. Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 14:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584370#M263494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T14:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to create selection-screen with Transaction Programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584371#M263495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can define like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK a1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_cust  FOR but000-partner OBLIGATORY, "Business Partner&lt;/P&gt;&lt;P&gt;                s_status FOR zspa_supstat-zzsptstatus  " Status&lt;/P&gt;&lt;P&gt;                         NO INTERVALS NO-EXTENSION&lt;/P&gt;&lt;P&gt;                         MATCHCODE OBJECT zs_supstat_es.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK a1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can assign the transaction for the program in SE93 by selecting the radio button Program and selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 14:21:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584371#M263495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T14:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to create selection-screen with Transaction Programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584372#M263496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can embed a selection screen in your dynpro very easily.  Define the selection screen as a subscreen and then call this subscreen in your dynpro, here is an example program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0006 .

tables: mara.

* Custom Selection Screen 1010
selection-screen begin of screen 1010 as subscreen.
selection-screen begin of block b1 with frame title text-001.
parameters: p_rad1 radiobutton group grp1 default 'X',
            p_rad2 radiobutton group grp1,
            p_rad3 radiobutton group grp1.
select-options: s_matnr for  mara-matnr,
                s_matkl for  mara-matkl,
                s_mtart for  mara-mtart.
selection-screen end of block b1.
selection-screen end of screen 1010.


start-of-selection.

  call screen 100.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
module status_0100 output.
*  SET PF-STATUS 'xxxxxxxx'.
*  SET TITLEBAR 'xxx'.

endmodule.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
module user_command_0100 input.

endmodule.


* Screen screen 100 with a subscreen area called "subscreen_1010"
* Screen Flow Logic follows

*process before output.
*
*  module status_0100.
*
*  call subscreen subscreen_1010 including sy-repid '1010'.
*
*process after input.
*
*  call subscreen subscreen_1010 .
*
*  module user_command_0100.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 14:21:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584372#M263496</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-09T14:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to create selection-screen with Transaction Programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584373#M263497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean Transaction Programming assignment. I think you are working on a Module. I think this thread will help you. &lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="115056"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ibrahim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 14:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584373#M263497</guid>
      <dc:creator>ibrahim_u</dc:creator>
      <dc:date>2006-10-09T14:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to create selection-screen with Transaction Programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584374#M263498</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;1. In the main screen you can define subscreen areas.&lt;/P&gt;&lt;P&gt;2. Create subscreens and assing to the areas.&lt;/P&gt;&lt;P&gt;3. you may also create modal screens and call in the main screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If screen 9000 is your main screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT. &lt;/P&gt;&lt;P&gt;   CALL SUBSCREEN sub INCLUDING sy-repid dynnr. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT. &lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN sub. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 14:27:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-selection-screen-with-transaction-programming/m-p/1584374#M263498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T14:27:16Z</dc:date>
    </item>
  </channel>
</rss>

