Where does  the control moves at first at END-OF PAGE  or  END-OF-SELECTION

Is END-OF PAGE triggered  like TOP-OF-PAGE from the AT-SELECTON-SCREEN  automatically with a write statement & where does  the control moves at first
at END-OF PAGE  or  END-OF-SELECTION?

Hi,
1. End-of-selection:
This event is triggered after the start-of-selection. to display the contents on the report.
2.Top-of-page: Every time a new page is triggered. Mainly this is used for header of the report.
3. End-of-page : every time the list data reaches the footer region of the page.
This way first data is disaplyed then it reaches the footer..
first End-of-selection then End-of-page
These example may help u in detail...
Leaving Event Blocks Using STOP
If you use the STOP statement within an event block, the system stops processing the block immediately. The ABAP runtime environment triggers the next event according to the following diagram:
Before and during selection screen processing, the next event in the prescribed sequence is always called. From the AT SELECTION-SCREEN event onwards, the system always jumps from a STOP statement directly to the END-OF-SELECTION statement. Once the corresponding event block has been processed, the system displays the list.
The following program is connected to the logical database F1S.
REPORT EVENT_TEST.
NODES: SPFLI, SFLIGHT, SBOOK.
START-OF-SELECTION.
WRITE 'Test program for STOP'.
GET SBOOK.
WRITE: 'Bookid', SBOOK-BOOKID.
STOP.
END-OF-SELECTION.
WRITE: / 'End of Selection'.
This produces the following output:
Test Program for STOP
Bookid 00010001
End of Selection
As soon as the first line of SBOOK has been read, the system calls the END-OF-SELECTION event block.
Exiting Event Blocks Using EXIT
If you use the EXIT statement within an event block but not in a loop, the system stops processing the block immediately. The ABAP runtime environment triggers the next event according to the following diagram:
Before and during selection screen processing, the next event in the prescribed sequence is always called. From the START-OF-SELECTION event onwards, the system starts the list processor directly when the EXITstatement occurs, and displays the list.
If the EXIT statement occurs inside a DO, WHILE, or LOOP loop, it is the loop that terminates, not the processing block.
The following executable program is connected to the logical database F1S.
REPORT demo_program_exit_1.
NODES: spfli, sflight, sbook.
START-OF-SELECTION.
WRITE 'Test Program for EXIT'.
GET sbook.
WRITE: 'Bookid', sbook-bookid.
EXIT.
END-OF-SELECTION.
WRITE: / 'End of selection'.
This produces the following output:
Test Program for EXIT
Bookid 00010001
After the first line of SBOOK has been read, the list is displayed immediately.
The following executable program is connected to the logical database F1S.
REPORT demo_program_exit_2.
NODES: spfli, sflight, sbook.
DATA flag(1) TYPE c.
AT SELECTION-SCREEN.
IF carrid-low IS INITIAL.
flag = 'X'.
EXIT.
ENDIF.
START-OF-SELECTION.
IF flag = 'X'.
WRITE / 'No input for CARRID'.
EXIT.
ENDIF.
GET spfli.
GET sflight.
GET sbook.
END-OF-SELECTION.
WRITE / 'End of Selection'.
If the user does not enter a value for CARRID-LOW, the output appears as follows:
No selection made for CARRID
After the first EXIT statement, the next START-OF-SELECTION event is triggered. After the second EXITstatement, the output list is displayed.
Regards.

Similar Messages

  • Where does the physical movie file reside?

    I have a mp4 movie on my usb.  I selected Add file to library in iTunes and then sync to my ipad 3.
    In the end, do I have 3 physical movie files (usb, ipad and itunes directory) or just 2 (usb, ipad)?
    Does iTunes have a copy of my file under the iTunes directory or just a path to it when I did a Add file to library?

    If you have iTunes set to consolidate your Library, then yes, you have 3 copies of the movie, USB, ITunes library folder, and iPad.
    If not, then iTunes merely adds a pointer to the current location of the file, and then copies it over to the iPad.
    If the USB is removed, the movie is still technically part of the library, but will not be accessible, it will show up grayed out and not be playable.

  • When I capture a still frame froma video in Llightroom 4.3, where does the captured frame end up?

    When I capture a still frame froma video in Llightroom 4.3, where does the captured frame end up? I cannot find it. Stan

    It will be right next to the movie in your library and the jpg file will end up on your hard disk right next to the movie file. You can see the actual file by right (or control) clicking on the image in the library view and selecting "show in Finder/Explorer"

  • Why does the mouse move erratically in PSE 13?

    why does the mouse move erratically in PSE 13?

    I'm getting the same thing.  This is the second major problem I've had with Adobe Photoshop Elements 13.  They just corrected the first problem where there was a "default printer" error coming up when printing.  This is ridiculous.
    My mouse freezes erratically when I click on the main drop down menu.  It works okay when editing photos.  The mouse just acts erratically on the Main drop down menus.  My suspicion is the new update that fixed the default printer error has caused this issue.  I am really hoping someone from Adobe is viewing this forum.  It took 3 months for Adobe to fix the printer issue.  I hope this isn't the case with this issue.

  • Where does the personalized page definition exist in the database?

    Hey all,
    Where does the personalized page definition exist in the database(which top)?From the functional adminitartor i see the path as "/oracle/apps/ar/creditmgt/analysis/casefolder/webui/customizations/responsibility/12345/pagename.xml" where does this structure actually exist in the file system? i want to know the header package or root directory of "/oracle/apps/ar/creditmgt/analysis/casefolder/webui/customizations/"
    one more question the gurus is if i want to migrate a personalization from on instance to another should i have the same above folder structure?
    Like i export the customized page from my T1 test instance to T1 file system now i move this to T2 file system...now in my T2 file system should i have similar structure like "XX_TOP/oracle/apps/ar/creditmgt/analysis/casefolder/webui/customizations/" for successful migration?
    Thanks & Regards,
    Sameer.T

    You perobably need someone more 'tecchie' than me to answer the first question. But, the structure will already exist as it is built into the application.
    To answer your second question, to transfer the personalisation from one instance to the other, you can use the Functional Administrator responsibility. Your DBA will need to create a 'common' directory which is available to both instances. If the two instances cannot 'talk to each other', then he may have to FTP the XML files from one instance to the other.
    When you export from instance A, the appropriate structure will be built underneath the root 'transfer' directory described above. In the target environment, you import the same structure.
    As personalisations are at various levels, e.g. responsibility, function etc. Beware that at the responsibility level, the match between the responsibility name on the source and target systems is done by the responsibikity key. As long as this is the same in both environments, the personalisation will be transferred. If it is different it won't work!
    I hope this helps answer the question.
    Regards
    Tim

  • APEX_COLLECTION - where does the code go?

    I am trying to create my first APEX collection.
    Where does the code go?
    Do I create a region as a PL/SQL anonymous block?
    Please advise -
    Regards,
    Stan

    Hi,
    I think best is create page process where you create/populate collection
    Br,Jari

  • When I transfer photos from my camera to my computer, where does the computer store them?

    When I transfer photos from my camera to my computer, where does the computer store them?

    Assuming you're using iPhoto 09 or later.
    By default the photos are stored in the iPhoto Library in your Pictures Folder.
    The iPhoto Library is a Package File. This is simply a folder that looks like a file in the Finder. This is a simple protection from users inadvertently corrupting their library by browsing through it with other software or making changes in it themselves.
    Want to look inside?  Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Standard Warning: Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things,, deleting them or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    As an FYI: There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • Where does the ipad back up stored

    where does the ipad back up stored

    iTunes places the backup files in these locations:
    Mac: ~/Library/Application Support/MobileSync/Backup/
    Windows XP: \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Note: To quickly access the Application Data folder, click Start > Run. Type %appdata% and click OK.
    Windows Vista Windows 7: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    Note: To quickly access the AppData folder, click Start, type %appdata% in the search bar, and press the Return key.
    Windows 8: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    Note: To quickly access the AppData folder, move the cursor to the upper-right corner, click the magnifying class, type %appdata%, and press the Return key.

  • Where does the router fallback to load IOS when the IOS in flash memory is corrupted?

    If the ios image stored in flash is corrupted from where does the IOS is picked up?

    Hi,
    The following details the router boot process:
    1. The router is powered on.
    2. The bootstrap program (ROMmon) in ROM runs Power-On Self Test (POST)
    3. The bootstrap checks the Configuration Register value to specify where to load the IOS. By default (the default value of Configuration Register is 2102, in hexadecimal), the router first looks for “boot system” commands in startup-config file. If it finds these commands, it will run boot system commands in order they appear in startup-config to locate the IOS. If not, the IOS image is loaded from Flash . If the IOS is not found in Flash, the bootstrap can try to load the IOS from TFTP server or from ROM (mini-IOS).
    Last if it doesnt find the software anywere it would end up in rommon mode.
    HTH
    Regards
    Inayath

  • Where is the inbetweeners movie on itunes

    Where is the inbetweeners movie on itunes???

    you need to be looking on the device pages. iTunes does not manage the photos just syncs them

  • Where does the iPhoto library reside?

    Where does the iPhoto library reside on your hd?  when I go to the search bar above, it shows 2 libraries!  I am about out of hd space so I am hoping that it has been duplicated somehow.  It's about 36GB. =)
    Thanks for your help!
    MK

    By default it's in your Pictures Folder.
    If space is an issue you can move the Library to an external disk:
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • Where does the Bill of substance maintained in property tree?

    Dear Experts,
    Where does the Bill of substance maintained in property tree? My understanding is it shows in section 2 in MSDS under composition tab. Please correct or confirm my understanding.
    Devdatt

    Dear Devdatt
    there are by standard two options available. Both have their pros and cons:
    a.) Standard EHS Export => a process which is not user friendly and without specific access rights can not be used
    b.) There are two other output variant available which you could check if they fulfill the needs of the users etc.:
    Check e.g. Displaying Properties - Basic Data and Tools (EHS-BD) - SAP Library
    as well as:
    Displaying Specification Data - Basic Data and Tools (EHS-BD) - SAP Library
    Regarding the first one: you can only download at max 50 properties in one run; regarding the second one: I am using this rarely but it is the most flexible one; not sure if the DG properties are supported. In any case: try it.
    If neither a.) nor b.) are the right solution: just create your onw ABAP code and prepare a suitable output variant on your own. You can use the "full blown SAP scenario" here (a.g. ALV like output variants etc.) ; you need to "only" learn from ABApcode of the standard output variant so that you are able to create your own one. This approach is quite standard and used very often
    Keep in mind. if you use STANDARD property tree and you have a lot of properties/data to be read performance is in most cases "bad"
    C.B.

  • Where does the Mail cache file reside?

    My email inbox suddenly doesn't show anything newer than April 2011. The last time this happened, Apple Care walked me through deleting an AOL or Mail cache file, but I can't find it now. Where does the archived mail cache hide?

    If you have iTunes set to consolidate your Library, then yes, you have 3 copies of the movie, USB, ITunes library folder, and iPad.
    If not, then iTunes merely adds a pointer to the current location of the file, and then copies it over to the iPad.
    If the USB is removed, the movie is still technically part of the library, but will not be accessible, it will show up grayed out and not be playable.

  • Where does the processing take place when using a remote front panel?

    Hi,
    I am considering upgrading my LabView software from 6i to 6.1 for the new "two click" remote front panel feature. I have already seen a demo of this feature but have just a few questions before I get the upgrade:
    My setup consists of several pieces of equipment connected to Labview via GPIB, to aid in the evaluation of a new microchip.
    1. I wish to grant control of the setup to anyone with a web browser, Is the remote monitoring feature compatible with both Netscape and IE?
    2. The VI which controls the setup is currently located on the PC beside my setup. When I embed a VI in a remote front panel, where does the processing take place, is the local VI still controlling the setup? and
    the remote panel just sending and receiving data from the local VI.
    Thanks, Troy

    > I am considering upgrading my LabView software from 6i to 6.1 for the
    > new "two click" remote front panel feature. I have already seen a demo
    > of this feature but have just a few questions before I get the
    > upgrade:
    >
    > My setup consists of several pieces of equipment connected to Labview
    > via GPIB, to aid in the evaluation of a new microchip.
    >
    > 1. I wish to grant control of the setup to anyone with a web browser,
    > Is the remote monitoring feature compatible with both Netscape and IE?
    >
    Yes. Provided they are resonably modern versions.
    > 2. The VI which controls the setup is currently located on the PC
    > beside my setup. When I embed a VI in a remote front panel, where does
    > the processing take place, is the local VI still controlling the
    >
    setup? and the remote panel just sending and receiving data from the
    > local VI.
    >
    The computer which we refer to as the server, the one with the GPIB card
    in your case, will execute as it does now. In fact, its window will
    even be open. The remote client computer, the one with the web browser
    will be running the runtime engine and processing user events, value
    change and property/method events from the server. So in reality, both
    computers will be sharing the load a bit. This allows for very small
    packets to be sent between the computers. It is in fact quite similar
    to publishing the data between the computers using datasocket.
    One thing to keep in mind. Standard LV includes a license for one
    connection. If you want to allow for multiple web browsers to view at
    the same time, additional licenses are available. Also, only one user,
    remote or server may be in control of the panel at a time. That means
    that if you want to be able to operate the panel, changing kn
    obs or
    flipping switches, the others will become viewers only until you give up
    control. Hopefully this isn't a surprise, but I thought you might want
    to hear about it now.
    Greg McKaskle

  • HT1498 Where does the confirmation message appear?

    The rental instruction article is not very clear without visual cues or elaboration.  When and where does the confirmation message appear after renting a movie?  Do I have to keep my Apple TV on while waiting for the confirmation?  Also, my movie "top shelf," that the article refers to, is crowded with advertisements or movies with numbers under them (which I have not rented), depending on what the writer means by the "top shelf."  Sheesh.

    Your 'question' is rater unclear but here. Go watch this video, around the 5:10 mark you might get your answers, if what you're asking is how to rent a movie.
    http://www.youtube.com/watch?v=i_GUuJyyyRQ

Maybe you are looking for

  • Overlap, bookmarker or something like this...

    hi, i read a lot of ebooks and i've got this question: can i mark a overlap or bookmarker (just like in normal books) in adobe so when i close ebook it will open next time exactly where i finished reading recently? i'm new so sorry if this thread rep

  • I cant open itunes on Windows 7, it says its on a "locked disk" or I do not have write privaliges HELP!!!

    I downloaded itunes this morning and when I try to open it, the user agreement pops up and when I hit "agree" I get an error message saying it's on a locked disk or I dont have write privaliges. I have tried 1. running as an administartor 2 changing

  • Is there a way to embed JavaScript within JavaMails?

    I have a program that creates and sends e-mails. Is it possible to insert JavaScript inside the mail message so that when a user clicks on a link in the html e-mail a alert("Warning : blah balh "); may appear? I know it's possible to embed the JavaSc

  • IOS 7 Separate Texts coming in from different numbers

    Hello, My wife my daughter and I all have iPhones.  We are all running IOS7.  My wife and I recieve both our own texts and the texts to my daughters number.  The problem we are having is that if anyone texts my daughter it comes to me but looks like

  • GUI  locking.

    I need help !!!! I have an java Applet that call web services.That applet has a button wich when is pressed it send a request to the SOAP server.The request is an asynchron call because we are invocating a web service wich will return some results. W