<?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 LOAD-OF-PROGRAM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623469#M872946</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the use of LOAD-OF-PROGRAM event?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Mar 2008 05:33:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-19T05:33:00Z</dc:date>
    <item>
      <title>LOAD-OF-PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623469#M872946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the use of LOAD-OF-PROGRAM event?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 05:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623469#M872946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T05:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD-OF-PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623470#M872947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load of Program is the very First Event that Trigerred when Program is Compiled by ABAP Editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then Execution of that Program proceeds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in other way u can say Loading of program from A..P. layer in to Presentation layer is done by this Event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will you...&lt;/P&gt;&lt;P&gt;Pls reward if helpful......!!!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 05:36:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623470#M872947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T05:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD-OF-PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623471#M872948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load-of-program&lt;/P&gt;&lt;P&gt;Triggers the associated event in an internal session after loading a program of type 1, M, F, or S. Also runs the associated processing block once and once only for each program and internal session. The processing block LOAD-OF-PROGRAM has roughly the same function for an ABAP program of type 1, M, F or S as a constructor has for classes in ABAP Objects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;Reward points if found useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 05:40:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623471#M872948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T05:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD-OF-PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623472#M872949</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;« Sample program in REPORT.EVENTS IN ABAP »Events in an ABAP/4 Report Program&lt;/P&gt;&lt;P&gt;There is no mandatory event in a report program. Events are actually used to organize the statements and control the flow of the program. If the program contains no explicitly defined event blocks, all the statements in the program form the entire event block START-OF-SELECTION. ABAP runtime environment automatically introduces a START-OF-SELECTION at the first execution line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP/4 report programs are event driven programs. Following events are triggered in a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD OF PROGRAM. - If propgram is of type 1, M, F, or S; then LOAD-OF-PROGRAM is trigerred first and then INITIALIZATION. The purpose of load of program is to load the program into system memory so that the program can be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION. - just once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT. - when there is selection-screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN. - when user interacts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION. - when F8.This is the default event in ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION. - At the end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EVENTS IN A CLASSICAL REPORT:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. INITIALIZATION: This is triggered when the report is loaded in memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. AT SELECTION-SCREEN OUTPUT: This is triggered when the selection screen is loaded in memory before being displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. AT SELECTION-SCREEN/ : function key from F5 to F12 to perform interactive action on the list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. At user-command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;==================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally I want to include one point:&lt;/P&gt;&lt;P&gt;If you debug your report program from the Abap editor screen then it triggers from&lt;/P&gt;&lt;P&gt;1.Initialization,&lt;/P&gt;&lt;P&gt;2.At Selection-screen,&lt;/P&gt;&lt;P&gt;3.Start-of Selection,&lt;/P&gt;&lt;P&gt;4.End-of Selection,&lt;/P&gt;&lt;P&gt;5.Top-of-page,&lt;/P&gt;&lt;P&gt;6.End-of-page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you debug from the selection-screen then it triggers from&lt;/P&gt;&lt;P&gt;1.At Selection-Screen,&lt;/P&gt;&lt;P&gt;2.Start-of-selection,&lt;/P&gt;&lt;P&gt;3.Top-of-page,&lt;/P&gt;&lt;P&gt;4.End-of-page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this helps, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 05:41:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623472#M872949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T05:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD-OF-PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623473#M872950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD-OF-PROGRAM is triggered directly after the system has loaded a program with type 1, M, F, or S&lt;/P&gt;&lt;P&gt;into an internal session. The processing block is executed once only for each program in each internal&lt;/P&gt;&lt;P&gt;session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful..............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 05:44:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623473#M872950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T05:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD-OF-PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623474#M872951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Directly after an executable program, a module pool, a function group or a subroutine pool has been loaded, a special processing block can be executed exactly once. This processing block is defined as an event block using the event keyword LOAD-OF-PROGRAM. The processing block for LOAD-OF-PROGRAM has the same function for ABAP programs as a constructor has for classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initialization is differ from load of program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward point if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;pankaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 05:45:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623474#M872951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T05:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD-OF-PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623475#M872952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS EVEERYBODY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 05:48:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623475#M872952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T05:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD-OF-PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623476#M872953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;LOAD-OF-PROGRAM.&lt;/P&gt;&lt;P&gt;Triggers the associated event in an internal session after loading a program of type 1, M, F, or S. Also runs the associated processing block once and once only for each program and internal session.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 05:48:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623476#M872953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T05:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD-OF-PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623477#M872954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai  &lt;STRONG&gt;Reddy&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD-OF-PROGRAM  is the default  EVENT that  sap triggers  internally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directly after an executable program, a module pool, a function group or a subroutine pool has been loaded, a special processing block can be executed exactly once. This processing block is defined as an event block using the event keyword LOAD-OF-PROGRAM. The processing block for LOAD-OF-PROGRAM has the same function for ABAP programs as a constructor has for classes. &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;Eshwar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 05:56:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-of-program/m-p/3623477#M872954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T05:56:50Z</dc:date>
    </item>
  </channel>
</rss>

