<?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 Dynpro in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508152#M1559205</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 your help. My problem was I created a container in my dynpro instead of a subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyway!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Dec 2010 08:05:01 GMT</pubDate>
    <dc:creator>lydia_martinezmartinez</dc:creator>
    <dc:date>2010-12-15T08:05:01Z</dc:date>
    <item>
      <title>Selection-Screen in Dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508148#M1559201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to createa selection-screen in a dynpro, but i'm not capable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've followed the next steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I created a dynpro (&lt;STRONG&gt;100&lt;/STRONG&gt;) Type: Normal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I created a subarea  (&lt;STRONG&gt;Sub_area&lt;/STRONG&gt;) inside the dynpro &lt;STRONG&gt;100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. I created the selection-screen in the top of my modulepool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: pernr.

SELECTION-SCREEN BEGIN OF SCREEN 101 AS SUBSCREEN.
SELECT-OPTIONS r_pernr FOR pernr-pernr.
SELECTION-SCREEN end of screen 101.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. I defined the PBO y the PAI of the screen &lt;STRONG&gt;100&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS BEFORE OUTPUT.
  MODULE status_0100.
  CALL SUBSCREEN sub_area INCLUDING sy-cprog '0101'.

PROCESS AFTER INPUT.
  CALL SUBSCREEN sub_area.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the program returns the next error: &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dynpro        0100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Line             3&lt;/STRONG&gt; --&amp;gt; CALL SUBSCREEN sub_area INCLUDING sy-cprog '0101'.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"Include block not specified, not defined, or spelt incorrectly ."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the error????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyway.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 11:23:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508148#M1559201</guid>
      <dc:creator>lydia_martinezmartinez</dc:creator>
      <dc:date>2010-12-14T11:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen in Dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508149#M1559202</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;i only know to call selection screens via CALL SELECTION-SCREEN  but not as a subscreen of a dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, selection screens must be own dynpros but no subscreens.&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;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 11:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508149#M1559202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-14T11:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen in Dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508150#M1559203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Klaus..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you explain me how i can use this sentence?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyway!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 15:03:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508150#M1559203</guid>
      <dc:creator>lydia_martinezmartinez</dc:creator>
      <dc:date>2010-12-14T15:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen in Dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508151#M1559204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lydia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your code seems to work in my system. This may be a typo with sub_area. Go to screen painter, copy the name and paste it in your statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus Babl will try &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;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 21:47:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508151#M1559204</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-12-14T21:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen in Dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508152#M1559205</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 your help. My problem was I created a container in my dynpro instead of a subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyway!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 08:05:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-in-dynpro/m-p/7508152#M1559205</guid>
      <dc:creator>lydia_martinezmartinez</dc:creator>
      <dc:date>2010-12-15T08:05:01Z</dc:date>
    </item>
  </channel>
</rss>

