<?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 programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-programming/m-p/3240711#M773410</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;Programs starting with Z or Y are custom developed programs and are not standard. Hence, ZTOP may not be a standard one. Then including a program depends on the context. If you want to include it in a report, you can use the statement INCLUDE &amp;lt;name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Dec 2007 10:26:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-31T10:26:30Z</dc:date>
    <item>
      <title>module programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-programming/m-p/3240710#M773409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to know how to include a program in my module program. is ZTOP any standard prgm.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 07:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-programming/m-p/3240710#M773409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T07:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: module programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-programming/m-p/3240711#M773410</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;Programs starting with Z or Y are custom developed programs and are not standard. Hence, ZTOP may not be a standard one. Then including a program depends on the context. If you want to include it in a report, you can use the statement INCLUDE &amp;lt;name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 10:26:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-programming/m-p/3240711#M773410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T10:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: module programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-programming/m-p/3240712#M773411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manjeet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In module pool program you have the option of creating includes which can contain your logic in the form of sub routines, screen flow logic (Dialog Modules), etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say for ex.,&lt;/P&gt;&lt;P&gt;  The include program could contain the all the related PAI (Process After Input) logic into a single group. Similarly all the PBO (Process Before Output) logic into another include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even the dialog module logic can be kept in a include program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A dialog module is called using the MODULE statement with the same name of the dynpro flow logic of any ABAP program dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like MODULE SET_STATUS OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look at any standard screen and see its program in SE80 transaction. You will find screens, PBO, PAI, GUI Status, Includes are gropued together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further if you wish to create a new include program, in SE80 transaction you can right click on includes. You will get the 'Create' option. Here you can do your logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the logic you wish to do in a report you perform in this includes except giving selection screen options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ananth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 10:53:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-programming/m-p/3240712#M773411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T10:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: module programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-programming/m-p/3240713#M773412</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;You can include  INCLUDE programs in Module pool program.&lt;/P&gt;&lt;P&gt;Ztop normally uses to declare internal tables and variables,structures,ocnstants in that module pool program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ztop is customer program and not stnd SAP Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you have to use program stmt at once only.normally we include that in ZTop include only.&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 pool       SAPMZ_TEST                          *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&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;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Data Declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;include mz_top.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PBO Modules&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;include mz_pbo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PAI modules&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;include mz_pai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;all other forms&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;include mz_forms.&lt;/P&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;&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;*INCLUDE MZ_TOP                                 *&lt;/P&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;PROGRAM  sapmz_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                              TABLES&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;TABLES: vbuk.&lt;/P&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;&lt;P&gt;Like that we define module pool programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 11:23:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-programming/m-p/3240713#M773412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T11:23:11Z</dc:date>
    </item>
  </channel>
</rss>

