<?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: Report Name in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-name/m-p/2195394#M468486</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  Executable Programs or Onlune Programs will treared as Reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2007 09:38:40 GMT</pubDate>
    <dc:creator>sreeramkumar_madisetty</dc:creator>
    <dc:date>2007-05-09T09:38:40Z</dc:date>
    <item>
      <title>Report Name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-name/m-p/2195391#M468483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi frds&lt;/P&gt;&lt;P&gt;       I have a doubt regarding , reportname and program name &lt;/P&gt;&lt;P&gt;Whenever we execute any SAP Program the compiler loads the program from database into memory and it &amp;lt;b&amp;gt;uses report name and not the program name&amp;lt;/b&amp;gt; for loading the data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if i &amp;lt;b&amp;gt;change the report name&amp;lt;/b&amp;gt; and then activate the program then will it create a new copy of the program with new report name or it just modifies the previous report name ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am i going right? Please throw light on the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Nikhil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 09:19:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-name/m-p/2195391#M468483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T09:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Report Name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-name/m-p/2195392#M468484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Program Structure&lt;/P&gt;&lt;P&gt;The following gives a short overview on how to structure a program. Apart from the first statement, the sequence of statements is not obligatory, but you should keep to it for reasons of clarity and readability.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       1.      The first program statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first statement in any ABAP Program is always an introductory program statement, often REPORTor PROGRAM. Both statements have exactly the same function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The name specified in the statements REPORTand PROGRAM must not necessarily be the program name, but for documentation reasons, you should use the correct name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever you create a new program, the system automatically inserts the first ABAP statement, for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT name. for executable programs, or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM name. for module pools or subroutine pools&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system enters the name you used to create the program as the report or program name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       2.      Data declaration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next, insert all of your declarations. These include selection screen definitions, the declarations of local classes and interfaces and global data declarations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       3.      Processing logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the declarations, write the processing logic. This consists of a series of processing blocks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       4.      Subroutines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the end of your program, include its internal procedures (such as subroutines).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using includes to split up a program into a series of source code modules does not change this basic structure. If, for example, you follow the forward navigation of the ABAP Workbench when creating a dialog program, the system automatically creates a number of include programs, which contain the program parts described above in the correct sequence. The top include program usually contains the PROGRAM statement and the global data declarations. The subsequent include programs contain the individual dialog modules, ordered by PBO and PAI. There may also be further includes, for example, for subroutines. These include programs do not influence the program function, they only serve to make the program order easier to understand&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi dear award points if this is useful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 09:32:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-name/m-p/2195392#M468484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T09:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Report Name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-name/m-p/2195393#M468485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;In the xase of EXECUTABLE reports we call the name as REPORT NAME&lt;/P&gt;&lt;P&gt;in other cases such as module pool or some other we call the name as PROGRAM NAME.&lt;/P&gt;&lt;P&gt;But most of the time not much difference between the two.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 09:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-name/m-p/2195393#M468485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T09:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: Report Name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-name/m-p/2195394#M468486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  Executable Programs or Onlune Programs will treared as Reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 09:38:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-name/m-p/2195394#M468486</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-09T09:38:40Z</dc:date>
    </item>
  </channel>
</rss>

