<?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: Abap prg structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-prg-structure/m-p/3390253#M814040</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The structure of the ABAP programs is &lt;/P&gt;&lt;P&gt;1.Define tables which we used in the program,using TABLES&lt;/P&gt;&lt;P&gt;2.Define type-pools using TYPE-POOLS.&lt;/P&gt;&lt;P&gt;3.Define types using TYPES for defining structures&lt;/P&gt;&lt;P&gt;4.DATA &lt;/P&gt;&lt;P&gt;5.SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;6.SELECT statement.&lt;/P&gt;&lt;P&gt;7.WRITE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;chandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Feb 2008 02:45:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-08T02:45:53Z</dc:date>
    <item>
      <title>Abap prg structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-prg-structure/m-p/3390252#M814039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the typical generic structure of an ABAP prg?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 02:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-prg-structure/m-p/3390252#M814039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T02:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Abap prg structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-prg-structure/m-p/3390253#M814040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The structure of the ABAP programs is &lt;/P&gt;&lt;P&gt;1.Define tables which we used in the program,using TABLES&lt;/P&gt;&lt;P&gt;2.Define type-pools using TYPE-POOLS.&lt;/P&gt;&lt;P&gt;3.Define types using TYPES for defining structures&lt;/P&gt;&lt;P&gt;4.DATA &lt;/P&gt;&lt;P&gt;5.SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;6.SELECT statement.&lt;/P&gt;&lt;P&gt;7.WRITE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;chandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 02:45:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-prg-structure/m-p/3390253#M814040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T02:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: Abap prg structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-prg-structure/m-p/3390254#M814041</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;ABAP is an event-driven programming language, and as such is suited to processing user dialogs. The&lt;/P&gt;&lt;P&gt;source code of an ABAP program consists of two parts:&lt;/P&gt;&lt;P&gt;Declarations&lt;/P&gt;&lt;P&gt;Declarations include the statements for global data types and objects, selection screens, and (in ABAP&lt;/P&gt;&lt;P&gt;Objects) local classes and interfaces within the program.&lt;/P&gt;&lt;P&gt;Processing Blocks (indivisible program units)&lt;/P&gt;&lt;P&gt;Each processing block must be programmed as a single entity. There are two basic kinds of processing&lt;/P&gt;&lt;P&gt;blocks:&lt;/P&gt;&lt;P&gt;Event Blocks:&lt;/P&gt;&lt;P&gt;Event blocks are introduced by an event keyword. They are not concluded explicitly, but end when the&lt;/P&gt;&lt;P&gt;next processing block starts.&lt;/P&gt;&lt;P&gt;Dialog Modules and Procedures:&lt;/P&gt;&lt;P&gt;Dialog modules and procedures are introduced and concluded using keywords.&lt;/P&gt;&lt;P&gt;The contents of all processing blocks form the processing logic.&lt;/P&gt;&lt;P&gt;When you generate the program, these parts are compiled to form the load version. This is interpreted at&lt;/P&gt;&lt;P&gt;runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM sapbc402_rund_test.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Declarations&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;TYPES: ...&lt;/P&gt;&lt;P&gt;DATA: ....&lt;/P&gt;&lt;P&gt;CONSTANTS: ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dialog module&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MODULE s_100 OUTPUT.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Event blck&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&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;/P&gt;&lt;P&gt;&lt;STRONG&gt;Procedure&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FORM calc USING ...&lt;/P&gt;&lt;P&gt;CHANGING ...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this is helpful, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Runal Singh on Feb 8, 2008 11:46 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 06:15:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-prg-structure/m-p/3390254#M814041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T06:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Abap prg structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-prg-structure/m-p/3390255#M814042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Generally the typical structure of an abap program is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Header &lt;/P&gt;&lt;P&gt;body &lt;/P&gt;&lt;P&gt;footer .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;K.Vinay Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 06:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-prg-structure/m-p/3390255#M814042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T06:21:29Z</dc:date>
    </item>
  </channel>
</rss>

