<?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 call  a sub screen at user command? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176920#M462468</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You just need to write in PAI module...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module USER_COMMAND INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN 'XYZ'.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN sub_area. &lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is regarding module pool program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on Selections screen of report this is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if helpful,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tejas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Apr 2007 10:00:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-25T10:00:16Z</dc:date>
    <item>
      <title>how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176917#M462465</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 want to call subscreen on my main screen at user command ...how to do that?&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 09:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176917#M462465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T09:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176918#M462466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;  first define a screen as subscreen while creating a screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;  when '&amp;lt;funcitoncode&amp;gt;'.&lt;/P&gt;&lt;P&gt;   call subscreen &amp;lt;scrno&amp;gt;.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 09:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176918#M462466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T09:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176919#M462467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PBO.&lt;/P&gt;&lt;P&gt;Call subscreen &amp;lt;SUBSCREEN NAME&amp;gt; Including sy-repid(PROGRAM NAME) G_DYNNR(SCREEN NUMBER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module user_command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call subscreen &amp;lt;subscreen name&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module user_command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  when 'BUT1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     g_dynnr = 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  when 'BUT2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     g_dynnr = 300.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 09:57:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176919#M462467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T09:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176920#M462468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You just need to write in PAI module...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module USER_COMMAND INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN 'XYZ'.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN sub_area. &lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is regarding module pool program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on Selections screen of report this is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if helpful,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tejas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 10:00:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176920#M462468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T10:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176921#M462469</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;just call that screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL SUBSCREEN SUB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 10:00:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176921#M462469</guid>
      <dc:creator>former_member632991</dc:creator>
      <dc:date>2007-04-25T10:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176922#M462470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;   try like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case -sy-ucomm.&lt;/P&gt;&lt;P&gt;case '1'.&lt;/P&gt;&lt;P&gt;      &amp;lt;b&amp;gt;CALL SUB-SCREEN &amp;lt;scrren no &amp;gt; STARTING AT  &amp;lt;x pos&amp;gt; &amp;lt;y pos&amp;gt; ENDING AT  &amp;lt;x pos&amp;gt; &amp;lt;y pos&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 10:03:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176922#M462470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T10:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176923#M462471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Check the code written below....&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z8CKG_TABSTRIP_SELSCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of tabbed block tabb1 for 4 lines.&lt;/P&gt;&lt;P&gt;selection-screen tab (15) text-006 user-command ucomm1&lt;/P&gt;&lt;P&gt; default screen 101.&lt;/P&gt;&lt;P&gt;selection-screen tab (15) text-007 user-command ucomm2&lt;/P&gt;&lt;P&gt; default screen 102.&lt;/P&gt;&lt;P&gt;selection-screen tab (17) text-008 user-command ucomm3&lt;/P&gt;&lt;P&gt; default screen 103.&lt;/P&gt;&lt;P&gt;selection-screen end of block tabb1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 101 as subscreen.&lt;/P&gt;&lt;P&gt;parameter: p_field1 type i.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 101.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 102 as subscreen.&lt;/P&gt;&lt;P&gt;parameter: p_field2 type i.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 102.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 103 as subscreen.&lt;/P&gt;&lt;P&gt;parameter: p_field3 type i.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 103.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if it solves ur query&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chinmay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 10:05:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176923#M462471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T10:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176924#M462472</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;if i am doing this its giving me error : -  "," or "ID ... FIELD ..." expected after "SUBSCREEN".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 10:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176924#M462472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T10:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176925#M462473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is because of that u have not created a subscreen in the normal screen.&lt;/P&gt;&lt;P&gt;e.g Screen 100 is ur normal screen.&lt;/P&gt;&lt;P&gt;In the layout of this screen u ll find a subscreen button and just place it and u have to name it.This will become the ID for the subscreen. U have to pass this ID while calling the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN ID( name of ur subscreen without single quotes) INCLUDING sy-repid sy-dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 10:49:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176925#M462473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T10:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to call  a sub screen at user command?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176926#M462474</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 have created sub screen area .sub screen statement is not working in any module ...but its working in flow logic windows..i want to  call subscreen on user command  ..for that i have to write call statement in some module as if &amp;amp; case statement are not supported in flow logic windows....how to do it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 03:54:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-sub-screen-at-user-command/m-p/2176926#M462474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T03:54:51Z</dc:date>
    </item>
  </channel>
</rss>

