<?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 CALL SUBSCREEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-subscreen/m-p/2700850#M625454</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 am new  to subscreen concepts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i am  having normal screen 200 and  sub screen 300, wn i am calling subscreen 300  using push button, i am gettin syntax error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   as &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Program SAPMZANA_MOD_C&lt;/P&gt;&lt;P&gt;       "." or "ID ... FIELD ..." expected after "SUBSCREEN".&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can somebody  give me a entire sample program. regarding calling subscreens..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&amp;amp; thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Aug 2007 11:50:52 GMT</pubDate>
    <dc:creator>spandana_babu</dc:creator>
    <dc:date>2007-08-16T11:50:52Z</dc:date>
    <item>
      <title>CALL SUBSCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-subscreen/m-p/2700850#M625454</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 am new  to subscreen concepts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i am  having normal screen 200 and  sub screen 300, wn i am calling subscreen 300  using push button, i am gettin syntax error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   as &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Program SAPMZANA_MOD_C&lt;/P&gt;&lt;P&gt;       "." or "ID ... FIELD ..." expected after "SUBSCREEN".&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can somebody  give me a entire sample program. regarding calling subscreens..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&amp;amp; thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 11:50:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-subscreen/m-p/2700850#M625454</guid>
      <dc:creator>spandana_babu</dc:creator>
      <dc:date>2007-08-16T11:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: CALL SUBSCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-subscreen/m-p/2700851#M625455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL SUBSCREEN   subscreen &lt;/P&gt;&lt;P&gt;    [ INCLUDING program screen_number ]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use this command to call the flow logic of a subscreen. You can also define the subscreen in another module pool. You can transfer the module pool name and the screen program number either as constants or dynamically in a data field. You only require the INCLUDING addition at the PBO event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 11:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-subscreen/m-p/2700851#M625455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T11:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: CALL SUBSCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-subscreen/m-p/2700852#M625456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Sample code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection screens as subscreens on screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_sel_screen_as_subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1100 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-010.&lt;/P&gt;&lt;P&gt;PARAMETERS: p1(10) TYPE c,&lt;/P&gt;&lt;P&gt;            p2(10) TYPE c,&lt;/P&gt;&lt;P&gt;            p3(10) TYPE c.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1200 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-020.&lt;/P&gt;&lt;P&gt;PARAMETERS: q1(10) TYPE c OBLIGATORY,&lt;/P&gt;&lt;P&gt;            q2(10) TYPE c OBLIGATORY,&lt;/P&gt;&lt;P&gt;            q3(10) TYPE c OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ok_code TYPE sy-ucomm,&lt;/P&gt;&lt;P&gt;      save_ok TYPE sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: number(4) TYPE n VALUE '1100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE status_0100 OUTPUT.&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'SCREEN_100'.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE cancel INPUT.&lt;/P&gt;&lt;P&gt;  LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT.&lt;/P&gt;&lt;P&gt;  save_ok = ok_code.&lt;/P&gt;&lt;P&gt;  CLEAR ok_code.&lt;/P&gt;&lt;P&gt;  CASE save_ok.&lt;/P&gt;&lt;P&gt;    WHEN 'BUTTON1'.&lt;/P&gt;&lt;P&gt;      number = 1100.&lt;/P&gt;&lt;P&gt;    WHEN 'BUTTON2'.&lt;/P&gt;&lt;P&gt;      number = 1200.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  MESSAGE s888(sabapdocu) WITH text-030 sy-dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This defines two selection screens &amp;#150; 1100 and 1200 &amp;#150; as subscreens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 11:56:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-subscreen/m-p/2700852#M625456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T11:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: CALL SUBSCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-subscreen/m-p/2700853#M625457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;goto your call subscreen statement, mark it (both words) and press F1, in the help there are examples as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 11:56:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-subscreen/m-p/2700853#M625457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T11:56:35Z</dc:date>
    </item>
  </channel>
</rss>

