<?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: calling subscreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091012#M978242</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you are writing code directly in PBO I mean first screen and not in a module in PBO.. is it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a module in PBO and then inside that module you can call subscreens withing IF condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this you are looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx,&lt;/P&gt;&lt;P&gt;ags.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jun 2008 19:49:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-30T19:49:02Z</dc:date>
    <item>
      <title>calling subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091011#M978241</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 to call a subscreen from the PBO of main screen based on certain conditions.&lt;/P&gt;&lt;P&gt;I am unable to use "CALL SUBSCREEN ... INCLUDING ... statement inside an if condition.&lt;/P&gt;&lt;P&gt;Is there any way to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 19:44:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091011#M978241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T19:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: calling subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091012#M978242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you are writing code directly in PBO I mean first screen and not in a module in PBO.. is it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a module in PBO and then inside that module you can call subscreens withing IF condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this you are looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx,&lt;/P&gt;&lt;P&gt;ags.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 19:49:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091012#M978242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T19:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: calling subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091013#M978243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thanks for the reply.&lt;/P&gt;&lt;P&gt;i tried it that way too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it gives an error&lt;/P&gt;&lt;P&gt; "." or "ID ... FIELD ..." expected after "SUBSCREEN".	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the code inside a PBO module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CHECK_DIV OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: gv_abboe(1) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE ZZPARAMETER1 ZZPARAMETER2 ZZPARAMETER3&lt;/P&gt;&lt;P&gt;    FROM ZSD_OSA_PARAM INTO (wa_abboe-ZZPARAMETER1,&lt;/P&gt;&lt;P&gt;    wa_abboe-ZZPARAMETER2, wa_abboe-ZZPARAMETER3 )&lt;/P&gt;&lt;P&gt;    WHERE ZZPROGNAME = 'MV45AFZZ'&lt;/P&gt;&lt;P&gt;      AND ZZPARANAME = 'SALITMADDBSCR'&lt;/P&gt;&lt;P&gt;      AND ZZSEQNUM = '00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;    if vbak-vkorg = wa_abboe-ZZPARAMETER1 and&lt;/P&gt;&lt;P&gt;       vbak-VTWEG = wa_abboe-ZZPARAMETER2 and&lt;/P&gt;&lt;P&gt;       vbak-spart = wa_abboe-ZZPARAMETER3.&lt;/P&gt;&lt;P&gt;      gv_abboe = 'X'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if gv_abboe = 'X'.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN ZABBOEHDR INCLUDING 'SAPMV45A' '9001'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endmodule.	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 19:56:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091013#M978243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T19:56:53Z</dc:date>
    </item>
    <item>
      <title>Re: calling subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091014#M978244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN subscreen_area INCLUDING program screen_number.&lt;/P&gt;&lt;P&gt;A similar call should also exist in PAI of screen.It will also call the PAI modules of the subscreen and will transfer data from subscreen to ABAP program.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN subscreen_area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this [link|http://sap.niraj.tripod.com/id40.html]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 22:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091014#M978244</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-06-30T22:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: calling subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091015#M978245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi for subscreens ,&lt;/P&gt;&lt;P&gt;in pbo : use call sub_screen_area using sy-repid.&lt;/P&gt;&lt;P&gt;n in pai also use:&lt;/P&gt;&lt;P&gt;call subcreen_area.&lt;/P&gt;&lt;P&gt;revert back for clarifications&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 05:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-subscreen/m-p/4091015#M978245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T05:18:19Z</dc:date>
    </item>
  </channel>
</rss>

