<?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 initialization  and load of program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/initialization-and-load-of-program/m-p/1878023#M368991</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;Can anybody tell me the difference between initialization and load of program  events because both of these events functions in a similar way .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neetesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Jan 2007 05:42:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-08T05:42:43Z</dc:date>
    <item>
      <title>initialization  and load of program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/initialization-and-load-of-program/m-p/1878023#M368991</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;Can anybody tell me the difference between initialization and load of program  events because both of these events functions in a similar way .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neetesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2007 05:42:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/initialization-and-load-of-program/m-p/1878023#M368991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-08T05:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: initialization  and load of program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/initialization-and-load-of-program/m-p/1878024#M368992</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;In ABAPDOCU you can see the clear difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only occurs in executable programs. The ABAP runtime environment triggers the INITIALIZATION event before the selection screen is processed, at which point the corresponding event block is processed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD-OF-PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When an ABAP program is loaded in an internal session, the runtime environment triggers the LOAD-OF-PROGRAM event, and the corresponding event block is executed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2007 05:49:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/initialization-and-load-of-program/m-p/1878024#M368992</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-01-08T05:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: initialization  and load of program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/initialization-and-load-of-program/m-p/1878025#M368993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neetesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through this link &lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1841525"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Satyendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2007 05:52:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/initialization-and-load-of-program/m-p/1878025#M368993</guid>
      <dc:creator>satykumar</dc:creator>
      <dc:date>2007-01-08T05:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: initialization  and load of program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/initialization-and-load-of-program/m-p/1878026#M368994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi neetesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In normal programming for se38 reports,&lt;/P&gt;&lt;P&gt;   it does not make any difference between initialization and load-of-program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. HOWEVER,&lt;/P&gt;&lt;P&gt;3. Suppose u want to call some FORM in another program&lt;/P&gt;&lt;P&gt;   using  PERFORM MYFORM(ZREPORT2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   and u want to fill some global varaiables of ZREPORT2,&lt;/P&gt;&lt;P&gt;   then WHAT ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. In that case,&lt;/P&gt;&lt;P&gt;    when PERFORM is encountered in report1,&lt;/P&gt;&lt;P&gt;    then the ZREPORT2 is LOADED &lt;/P&gt;&lt;P&gt;   and the event LOAD-OF-PROGRAM is fired,&lt;/P&gt;&lt;P&gt;   where we can fill values in global variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  (in such case, initializatino won't be fired)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2007 05:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/initialization-and-load-of-program/m-p/1878026#M368994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-08T05:54:00Z</dc:date>
    </item>
  </channel>
</rss>

