<?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: Regarding module pool program............. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-module-pool-program/m-p/8073367#M1613845</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 you are calling a screen using CALL SCREEN in a report and then using LEAVE LIST PROCESSING then in the report event AT USER COMMAND you write the code for navigation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Aug 2011 10:49:04 GMT</pubDate>
    <dc:creator>sridhar_meesala</dc:creator>
    <dc:date>2011-08-09T10:49:04Z</dc:date>
    <item>
      <title>Regarding module pool program.............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-module-pool-program/m-p/8073365#M1613843</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 having a problem on  module pool (dialogue program).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already created one module pool  program with PBO PAI MODULES and SET-PF FOR MENU BAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing  one problem here  that after 'leave to list processing' command in  PAI  MODULE a screen with result comes. But in that screen 'cancel'  function in menu-bar(navigation bar) doesn't works.But it works before input is given to the fields.I can't understand where mistake happen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please give me the solution for that mistake.............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you to all for your valuable suggestions...............  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With regards,&lt;/P&gt;&lt;P&gt;garikapati206.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: garikapati206 on Aug 6, 2011 10:00 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use more descriptive subject lines for your posts.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Aug 7, 2011 9:49 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Aug 2011 07:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-module-pool-program/m-p/8073365#M1613843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-06T07:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding module pool program.............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-module-pool-program/m-p/8073366#M1613844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi garikapati206,&lt;/P&gt;&lt;P&gt;Maybe you have done something like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL SCREEN 100.
MODULE STATUS_0100 OUTPUT.
  SUPPRESS DIALOG.
ENDMODULE.
MODULE USER_COMMAND_0100 INPUT.
  LEAVE TO LIST-PROCESSING. &amp;lt;=== incomplete
  WRITE 'HELLO'.
ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The code above will display the list, but when you press Exit, you feel that nothing happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact, you correctly leave the ABAP list, but the dynpro 100 starts again as LEAVE TO LIST-PROCESSING without any extension indicates that when we exit the list, the dynpro must be started again, and so it displays the list again. You can see it by debug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you should do:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0. &amp;lt;=== complete
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The use of screen 0 means that the call sequence (started by CALL SCREEN) terminates, and so you don't restart dynpro 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: another solution is to add SET SCREEN 0 after LEAVE TO LIST-PROCESSING alone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Aug 2011 18:51:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-module-pool-program/m-p/8073366#M1613844</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-08-07T18:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding module pool program.............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-module-pool-program/m-p/8073367#M1613845</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 you are calling a screen using CALL SCREEN in a report and then using LEAVE LIST PROCESSING then in the report event AT USER COMMAND you write the code for navigation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 10:49:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-module-pool-program/m-p/8073367#M1613845</guid>
      <dc:creator>sridhar_meesala</dc:creator>
      <dc:date>2011-08-09T10:49:04Z</dc:date>
    </item>
  </channel>
</rss>

