<?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: Dialog Programming(module pool):call a screen to subscreen area. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502362#M1065237</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 replaced syrepid with function group as suggested :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MODULE EXPORT_DATA.&lt;/P&gt;&lt;P&gt; CALL SUBSCREEN SUB INCLUDING 'Z_TX1' DYNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL SUBSCREEN SUB.&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where ztx1 is the function group and dynnr is the subscreen tht&lt;/P&gt;&lt;P&gt;i am passing dynamically using the function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can see the code below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM  Z_SUBSCREEN1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : ZMATNR LIKE MARA-MATNR.&lt;/P&gt;&lt;P&gt;DATA : DYNNR LIKE SY-DYNNR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100 OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; SET PF-STATUS 'xxxxxxxx'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SET TITLEBAR 'TITLE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  EXPORT_DATA  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE EXPORT_DATA OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_EXPORT_FUN'&lt;/P&gt;&lt;P&gt;                          EXPORTING Z_INPUT = ZMATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " EXPORT_DATA  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100 INPUT.&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 'EXP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_IMPORT_FUN'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   DYNNR         = dynnr.&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;          write :dynnr.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Oct 2008 11:12:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-03T11:12:57Z</dc:date>
    <item>
      <title>Dialog Programming(module pool):call a screen to subscreen area.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502358#M1065233</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;&lt;/P&gt;&lt;P&gt;I want to call a screen created in the function group into my &lt;/P&gt;&lt;P&gt;subscreen area of current screen of main program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done the below way :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Created a screen 100 in the module pool program z_bpmodule.&lt;/P&gt;&lt;P&gt;2.created a subscreen area SUB in screen 100.&lt;/P&gt;&lt;P&gt;3. I hav created function group :zfungroup&lt;/P&gt;&lt;P&gt;and  a screen 300,a function module Z_EXPORT_FUN for exporting the data to the screen 300 from report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my prog is lik below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM  Z_SUBSCREEN1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : ZMATNR LIKE MARA-MATNR.&lt;/P&gt;&lt;P&gt;DATA : DYNNR LIKE SY-DYNNR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100 OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; SET PF-STATUS 'xxxxxxxx'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SET TITLEBAR 'TITLE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  EXPORT_DATA  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE EXPORT_DATA OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_EXPORT_FUN'&lt;/P&gt;&lt;P&gt;                          EXPORTING Z_INPUT = ZMATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " EXPORT_DATA  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WHEN 'EXP'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; DYNNR = '0300'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the flow logic is lik this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt; MODULE STATUS_0100.&lt;/P&gt;&lt;P&gt; MODULE EXPORT_DATA.&lt;/P&gt;&lt;P&gt; CALL SUBSCREEN SUB INCLUDING SY-REPID ' 0300'.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;P&gt; CALL SUBSCREEN SUB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the main problem is i am not able to call the screen from function group to subscreen area...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly provide the solution.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot in adv ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brahma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2008 10:45:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502358#M1065233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-26T10:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming(module pool):call a screen to subscreen area.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502359#M1065234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure about what does FM Z_EXPORT_FUN, but you should use it in screen '0300' PBO. In screen '0100' you only have to set dynnr as '0300' to call subscreen statement. In PBO of '0300' you should get it's values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2008 11:12:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502359#M1065234</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-09-26T11:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming(module pool):call a screen to subscreen area.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502360#M1065235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could any one please give reply for this...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 10:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502360#M1065235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T10:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming(module pool):call a screen to subscreen area.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502361#M1065236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried replacing SY-REPID  with the name of the function group? And make sure 300 is defined as a subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i don't understand why you created a separated function group for subscreen 300. Why not create it in your main program? That way you don' t have to worry about passing data back and forth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 11:00:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502361#M1065236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T11:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming(module pool):call a screen to subscreen area.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502362#M1065237</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 replaced syrepid with function group as suggested :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MODULE EXPORT_DATA.&lt;/P&gt;&lt;P&gt; CALL SUBSCREEN SUB INCLUDING 'Z_TX1' DYNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL SUBSCREEN SUB.&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where ztx1 is the function group and dynnr is the subscreen tht&lt;/P&gt;&lt;P&gt;i am passing dynamically using the function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can see the code below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM  Z_SUBSCREEN1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : ZMATNR LIKE MARA-MATNR.&lt;/P&gt;&lt;P&gt;DATA : DYNNR LIKE SY-DYNNR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100 OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; SET PF-STATUS 'xxxxxxxx'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SET TITLEBAR 'TITLE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  EXPORT_DATA  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE EXPORT_DATA OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_EXPORT_FUN'&lt;/P&gt;&lt;P&gt;                          EXPORTING Z_INPUT = ZMATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " EXPORT_DATA  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100 INPUT.&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 'EXP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_IMPORT_FUN'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   DYNNR         = dynnr.&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;          write :dynnr.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 11:12:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502362#M1065237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T11:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming(module pool):call a screen to subscreen area.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502363#M1065238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And? Did you get your subscreen? Or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Getting any error messages? Dumps?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 11:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502363#M1065238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T11:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming(module pool):call a screen to subscreen area.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502364#M1065239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am just getting the main screen and the subscreen is not at all displaying .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i perform the PAI .. I am getting the dump ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Short text&lt;/P&gt;&lt;P&gt;    Dynpro does not exist&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happened?&lt;/P&gt;&lt;P&gt;    Error in the ABAP Application Program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    The current ABAP program "Z_SUBSCREEN1" had to be terminated because it has&lt;/P&gt;&lt;P&gt;    come across a statement that unfortunately cannot be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can you do?&lt;/P&gt;&lt;P&gt;    Note down which actions and inputs caused the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    To process the problem further, contact you SAP system&lt;/P&gt;&lt;P&gt;    administrator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Using Transaction ST22 for ABAP Dump Analysis, you can look&lt;/P&gt;&lt;P&gt;    at and manage termination messages, and you can also&lt;/P&gt;&lt;P&gt;    keep them for a long time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error analysis&lt;/P&gt;&lt;P&gt;    The system attempted to use dynpro 0000 in program "Z_TX1".&lt;/P&gt;&lt;P&gt;    This dynpro does not exist.&lt;/P&gt;&lt;P&gt;How to correct the error&lt;/P&gt;&lt;P&gt;    Probably the only way to eliminate the error is to correct the program.&lt;/P&gt;&lt;P&gt;    -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If the error occures in a non-modified SAP program, you may be able to&lt;/P&gt;&lt;P&gt;    find an interim solution in an SAP Note.&lt;/P&gt;&lt;P&gt;    If you have access to SAP Notes, carry out a search with the following&lt;/P&gt;&lt;P&gt;    keywords:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    "DYNPRO_NOT_FOUND" " "&lt;/P&gt;&lt;P&gt;    "Z_SUBSCREEN1" or "Z_SUBSCREEN1"&lt;/P&gt;&lt;P&gt;    "EXPORT_DATA"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If you cannot solve the problem yourself and want to send an error&lt;/P&gt;&lt;P&gt;    notification to SAP, include the following information:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    1. The description of the current problem (short dump)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       To save the description, choose "System-&amp;gt;List-&amp;gt;Save-&amp;gt;Local File&lt;/P&gt;&lt;P&gt;    (Unconverted)".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    2. Corresponding system log&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Display the system log by calling transaction SM21.&lt;/P&gt;&lt;P&gt;       Restrict the time interval to 10 minutes before and five minutes&lt;/P&gt;&lt;P&gt;    after the short dump. Then choose "System-&amp;gt;List-&amp;gt;Save-&amp;gt;Local File&lt;/P&gt;&lt;P&gt;    (Unconverted)".&lt;/P&gt;&lt;P&gt;3. If the problem occurs in a problem of your own or a modified SAP&lt;/P&gt;&lt;P&gt;program: The source code of the program&lt;/P&gt;&lt;P&gt;   In the editor, choose "Utilities-&amp;gt;More&lt;/P&gt;&lt;P&gt;Utilities-&amp;gt;Upload/Download-&amp;gt;Download".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Details about the conditions under which the error occurred or which&lt;/P&gt;&lt;P&gt;actions and input led to the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope i have given the full information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 11:19:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502364#M1065239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T11:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming(module pool):call a screen to subscreen area.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502365#M1065240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the subscreen area type you have declared&lt;/P&gt;&lt;P&gt;if it is local then follow your coding&lt;/P&gt;&lt;P&gt;if it is global&lt;/P&gt;&lt;P&gt;then no need of calling in pai.&lt;/P&gt;&lt;P&gt;and check the attributes of called screen whether it is subscreen or normal screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 11:35:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502365#M1065240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T11:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming(module pool):call a screen to subscreen area.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502366#M1065241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;CALL SUBSCREEN SUB INCLUDING 'Z_TX1' DYNNR&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most likely DYNNR has no value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 11:37:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-module-pool-call-a-screen-to-subscreen-area/m-p/4502366#M1065241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T11:37:42Z</dc:date>
    </item>
  </channel>
</rss>

