<?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: Module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228101#M1208601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suppose you are storing the Quantity (qty) value in the first screen for the field ztable-qty&lt;/P&gt;&lt;P&gt;i.e.  qty = ztable-qty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you want to see the same quantity in the next screen , then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. at first declare the qty as a global variable in the module pool report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. and then in the PBO of the next screen. write the code:&lt;/P&gt;&lt;P&gt;   ztable-qty= qty.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:  ztable-qty is basically the field name for the screen. It may change in your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Nilay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Mar 2009 06:37:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-05T06:37:52Z</dc:date>
    <item>
      <title>Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228097#M1208597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have calculated data in one screen and i want this data to be displayed in next screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me in this case&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 12:40:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228097#M1208597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T12:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228098#M1208598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Keep teh calculated data in Global internal table and use it in PBO of the second screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 12:41:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228098#M1208598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T12:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228099#M1208599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare a global varible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass dataa into into it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and use this variable in next screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 12:44:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228099#M1208599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T12:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228100#M1208600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jansi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also use ABAP memory. For that you can use, EXPORT and IMPORT statements. You can search for actual syntax in SDN. Plenty of help is available. Through this, you can store, modify and fetch value in ABAP memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Sambaran Ray.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 12:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228100#M1208600</guid>
      <dc:creator>former_member755502</dc:creator>
      <dc:date>2009-02-24T12:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228101#M1208601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suppose you are storing the Quantity (qty) value in the first screen for the field ztable-qty&lt;/P&gt;&lt;P&gt;i.e.  qty = ztable-qty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you want to see the same quantity in the next screen , then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. at first declare the qty as a global variable in the module pool report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. and then in the PBO of the next screen. write the code:&lt;/P&gt;&lt;P&gt;   ztable-qty= qty.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:  ztable-qty is basically the field name for the screen. It may change in your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Nilay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 06:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228101#M1208601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T06:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228102#M1208602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 06:38:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228102#M1208602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T06:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228103#M1208603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare  field name globally inside program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the next screen, in layout use same name for the screen field.&lt;/P&gt;&lt;P&gt;It will automatically reflect in PBO of next screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 06:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228103#M1208603</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2009-03-05T06:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228104#M1208604</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;This is very simple&lt;/P&gt;&lt;P&gt;1.Declare the variable used for calculation on first screen as Global in the TOP include (as all the vraiables declared in TOP are available in alll the screen and subscreens)&lt;/P&gt;&lt;P&gt;2.Simply use the variable in PAI of screen one for calculation&lt;/P&gt;&lt;P&gt;3.Use the same variable used in Screen 1 ,in the PBO of screen 2 for display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 07:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/5228104#M1208604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T07:04:22Z</dc:date>
    </item>
  </channel>
</rss>

