Events List

Hi all,
Can anyone provide me all event's name with its description in ABAP                   ( ALV,Classical And Selection-screen's event) ?
Thanks in advance......

Hi,
    Events: Initialization
at selection-screen
at selection-screen on value request.
start-of-selection
top-of-page
end-of-page
at user-command
at line-selection
Order:
1. Initialization
2. at selection-screen
3. at selection-screen on value request
4. start of selection.
when WRITE statement is triggered
top-of page.
end-of-page.
end-of selection.
at user-command.
at line-selection
Go through the following
This is the order of execution in Classical/Interactive Report Events
Classical Reports
Reports which are properly formatted (header, footer, page numbers etc.,) with the help of one or more external events like top-of-page,end-of-page etc., are called as CLASSICAL REPORTS.
Standard list.
Output of Report program is nothing but Standard list. It consists of one continuous page of 60,000 lines.
To restrict number of lines per page.
Report Zxxxxx line-count 25.
OR
Report Zxxxxx line-count 25(3).
( In this case 3 lines are reserved for footer)
To restrict Output width.
Report Zxxxx line-size 125.
To suppress standard page heading.
Report Zxxxx no standard page heading
Above all at a time:
Report Zxxxx line-count 25(3)
line-size 125
no standard page heading.
Screen Events List Events
Initialization. Start-of-selection
At selection-screen. Top-of-page.
At selection-screen on <field>. End-of-page.
End-of-selection.
We can initialize the selection-screen with calculated default values under this event.
Initialization.
s_date-high = sy-datum.
s_date-low = sy-datum - 15.
Append s_date.
We can validate all the inputs on selection screen fields under this event.
At selection-screen.
If s_carrid-low is initial or
s_connid-low is initial or
s_date is initial.
< ... code for validation... >.
Endif.
We can validate a particular field input on selection screen under this event.
At selection-screen on s_carrid.
If s_carrid-low < > ‘LH’.
<… code for validation…>
Endif.
If any of the other event comes before
‘Select…Endselect.’ statements, then to break
that event, we require this S-O-S event.
Start-of-selection.
Select * from ……
Endselect.
If we need some portion of the output (like
column headings) to appear in all the pages,
then we use this event.
Top-of-page.
Write:/ ‘Carrier’,10 ‘Connection’ 20 ‘Date’.
If there is no external output statement before
‘Top-of-page’ event, then this event will not
work.
Once the cursor reaches the last line of the
page, automatically this event will be triggered.
Report Zxxx line-count 25(3).
In this case line numbers 23, 24 and 25 are
reserved for footer.
Once the cursor reaches 23rd line, this event
will be triggered.
End-of-page.
Write:/ sy-uline(75).
Write:/ ‘This is end of page:’,sy-pagno.
Write:/ sy-uline(75).
This event is used for concluding part of List.
End-of-selection.
Write:/ ‘This is end of the Report’.
Interactive Report
A simple report or even a classical report displays a clustered list with all the requested output at one go.
What ever it is displayed, it is final. That means, the user can not interact with with that list.
A simple report or even a classical report displays a clustered list with all the requested output at one go.
What ever it is displayed, it is final. That means, the user can not interact with with that list.
In the interactive reports, we can create as many as 21 lists.
The first list is called ‘Basic list’ and all the successive lists are called ‘Secondary lists’. Each list is again an interactive.
The Basic list is not deleted when secondary list is created.
A secondary list may either overlay the basic list or appear in an additional dialog window on the same screen.
The system variable associated with list number is ‘SY-LSIND’.
For basic list SY-LSIND = 0 and for secondary lists, SY-LSIND varies from 1 to 20.
User can interact with the list by the following ways.
Double clicking or single click and pressing F2 (function key) or single click with ‘hotspot on’.
OR
Selecting from menu bar or from application tool bar.
All the events used in classical reports can be used in Basic List.
The event ‘End-of-page’ can be used in Secondary Lists also.(the other six events can not be used in secondary lists)
You can not place ‘select-options’ in secondary lists.
The following additional events are
applicable to secondary lists.
Top-of-page during line-selection.
At line-selection.
At user-command.
When you double click on any field in the basic list, you will be navigating to secondary list with detailed information pertaining to clicked field.
As such we need to store the clicked field information at some variable.
‘Hide’ temporarily stores the content of clicked field for later use.
The default title of the out put is the text what we enter during creation of program.
This title can be changed using:
SET TITLEBAR ‘AAA’.
GUI status includes:
Menu bar
Application tool bar and
Activating standard tool bar
GUI status can be created using
SET PF-STATUS ‘BBB’.
You can have 8 menus ( out of which, 2 menus are reserved for ‘System’ and ‘Help’).
Each menu can have 15 menu items.
Each menu item can have 3 levels of submenus.
You can create 35 items in application tool bar.
<i>ALV EVENTS</i>
check these important events ...
1.SLIS_PRINT_ALV.
2. SLIS_T_LISTHEADER.
3. SLIS_T_EVENT.
4. SLIS_T_SORTINFO_ALV.
5. SLIS_T_LAYOUT_ALV.
6. SLIS_T_FIELDCAT_ALV.
for more details ..check this link..
http://www.sap-basis-abap.com/abap/events-in-alv-and-their-fm.htm
<b>Reward points</b>
Regards

Similar Messages

  • Event List view in iCal?

    I would love to have an Event List view in iCal like I do on the calendar on my iPhone. Is there such a thing? The particular reason for wanting it (this time) is that one of the calendars in the ON MY MAC list has a number in a oval to the right.
    I believe this is trying to tell me that there is a new event that I need to do something about. Problem is, I don't know where to find it.

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • Event listing shortened in iCal

    When I enter some events in iCal they do not appear in their entirety in the calendar. Some events use two or three lines, some cut off in only one line. The only solution I have found is to keep changing the 'name' of the event until I hit on one that does not cut off. Surely there is another solution! Any ideas?

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • Old   How to find total number of events in an event list?

    Hi,
    I am developing a j2me application. i Want to find the total number of events in an event list.(ie, If it contains 15 events then it should return length as 15).
    Not the length of EVENT LISTS i want to find the Length of EVENTS.
    Thanks,
    kumar

    Hi,
    you can find the number of columns and their order using
    the <b>'REUSE_ALV_FIELDCATALOG_MERGE'</b>
    call function 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
       I_PROGRAM_NAME               = sy-repid
       I_INTERNAL_TABNAME           = 'ITAB'
       I_INCLNAME                   = sy-repid
      changing
        ct_fieldcat                  = IT_FIELDCAT
    EXCEPTIONS
       INCONSISTENT_INTERFACE       = 1
       PROGRAM_ERROR                = 2
       OTHERS                       = 3
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif
    now describe your fieldcat . and find no of columns.
    and their order also..
    regards
    vijay

  • Training and event management: Book Attendee List for Business Event List

    Dear all,
        I know this:
        PV07: book attendee list for business event
        PV08: book attendee for business event list
       Is there a tcode to book an attendee list for a business event list
    Thanks a lot in advance!

    Hi Federico,
    I think.., no. Below are the tcodes available to book attendee,
    PV00 Book attendee for business event
    PV01 Rebook attendee for business event
    PV02 Prebook
    PV03 Replace
    PV04 Cancel
    PV07 Book attendee for list  for Business event
    PV08 Book attendee for business event list.
    Let me know if you found tcode for your requirement.
    Thanks,
    Karunakar

  • HT4759 How can make the events listed in my chalenda become automatically a reminder in the reminder?:

    How can make the events listed in my chalenda become automatically a reminder in the reminder?:

    Welcome to the Apple community.
    Calendar and reminders are two different and separate apps, you cannot transfer information between the two of them.

  • Event List Window

    When I open the event list window in Logic 7 (and 7.1) the arrow on the left,
    which is supposed to point to the current event , points to the event BEFORE the current one unless i resize the event list numbers larger! Does this make sense?
    It is most frustrating.

    Wouldn't it be easier to select a note value rather than typing in what the value is for the note? For example, wouldn't it be nice if there was a set of buttons with pictures of a whole note, 1/4 note, etc. (like in Cubase) or a drop down menu (like Logic's quantize menu) to select from? It's killing me to try and memorize the numerical values for each kind of note. What if I wanted a fixed duration of an 1/8th note tuplet? How would I calculate the value for that? Is there an option somewhere I can turn on to make setting note values easier? This is my only problem with the transform editor...

  • Email events list

    I have a client that wants the following:
    A website with a community events list where people can log-in and add their own events to an events list, plus sign up for an automated email newsletter they would get weekly. Events that are occurring within the next 10 days would go out in the email without having to add the content to the email manually.
    How do I set up the automated email?

    All but the Auto Email can be set up in BC.
    You can get people on a campaign list and set anniversary dates so they can be triggered but you will need to still make up the newsletter.

  • Change modulation channel in event list

    When I just started with Logic Pro I made some mistakes I like to correct now.
    I hope that is possible…
    I draw modulation curves under the pianorol on regions in a track in channel 6.
    But I forgot the set the channel menu to '6' and now the modulation events are on 'any' and so unwanting modulating channel 5 as well.
    • can I copy and paste events like I can do with notes in the piano roll? (to copy events and put them under my notes in correct channel setting)
    or
    • I can edit the channel number of a event one by one in the list. But is it possible to select all events and change the channelnumber at once?
    any help is welcome,
    Danielle

    Hi
    dvdrw wrote:
    is it possible to select all events and change the channelnumber at once?
    You should be able to make use of the Filter button in the Event List to "filter" out all other types of event (notes, pitch bend etc), so that you are left only seeing Controller events. Select them all, then change the MIDI Channel
    CCT

  • Is is possible to open event lists from different tracks at the same time in Logic Pro 9?

    Is it possible to open event lists from two difference tracks in an arrangement at the same time in Logic Pro 9?
    When I switch between tracks the event list swiches as well. Thanks in advance.

    If you deselect the litte chain link icon in the event list window, it will no longer follow your region selection and you can openas many as you need. Also you can select multiple regions and see the inthe SAME window if you select to show multiple regions, and you can have the notes shown in their respective track colors.

  • Importing Events to the Top, rather than the Bottom of the Events List

    I sort all my events in iPhoto manually, however, every time I do an import the new event goes to the bottom of all my events. I prefer to sort my events so the newest is at the top of the events list, and it is a pain to have to drag each new imported event all the way up to the top of the screen each time as I have hundreds of events I have to scroll through. How do I choose to have my new events always show up near the top? Thanks!

    View Menu -> Sort Events
    Regards
    TD

  • CQ5.4 Content Sync feature pack missing event list component ?

    Hi,
    I'm trying to get the Content Sync facility in CQ 5.4 working after installing the cq-5.4.0-featurepack-34279 package from package share. When I invoke the URL to get the content sync package it works fine, but the events.touch.plist file actually contains a 404 HTML page.
    Digging a bit deeper I haven't got the event list component installed under the /apps/geometrix/components tree, which would account for this. When I preview the pages in the demo site the events component isn't surfaced at all. Looking at the package contents for the featurepack the event list isn't in it.
    The sample iOS app looks for a file under /content/geometrixx_mobile/en/events.touch.html in the package, which is missing too.
    Am I missing a step, or has the feature pack not been ceated properly ?
    Thanks,
    Jon.

    Hi Sathya,
    Seems the field “RegistrationsInfo” is not been found when deploying with Event Receiver, a possible reason is that it might be damaged.
    As a workaround, I suggest you retract the solution from your farm, make sure the “RegistrationsInfo” field is deleted using PowerShell, then create another project with the same
    content and perform the deployment again.
    About how to delete a field using PowerShell for your reference:
    https://peterheibrink.wordpress.com/2011/12/09/powershell-delete-field-and-all-references/
    http://www.sharepointfix.com/2011/04/powershell-script-to-delete-site.html
    Feel free to reply if there any progress.
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Unable to rearrange event list columns

    I ran into this issue a while back, it fixed itself but now with upgrading to 10.03 it's back. I'm an experienced editor but FCPX is still new to me. The event list columns will not move. Clicking and dragging a column heading is not working. I have trashed preferences to no avail. I'm also unable to type into the Notes column. Also selecting a different event clip does not change the clip in the "viewer". If I relaunch FCPX I can select different clips successfully but if I try to rearrange the column headings then the selection of a different clip will not change the cllp in the viewer. I posted on COW when I originallly had this issue and another poster said he was having an identical problem so it's not just my system.
    For other folks who can successfully rearrange the event columns does the arrow turn into a hand when you click on a column heading to drag it?
    MacPro Octo 2.8---10GB RAM
    10.7---FCS3 7.03 & FCPX---AJA IOHD
    thanks for any help
    mark

    Yes, my pointer will turn into the hand but it reverts to the pointer as soon as I attempt to drag it.
    drat

  • Calendar Software & Updating Events List

    Alright guys I am building a website for my school and right
    now we have the calendar in .pdf form. What I would like to do is
    make an interactive calendar like Easy PHP Calendar found here:
    http://www.easyphpcalendar.com/freeDownload.php.
    That one looks pretty clean and I think it can accomplish the
    other tasks I would like it to. Those tasks are categorizing the
    events like "administration", "sports", "community", etc. Once I
    categorize the events I would like to put something on say the
    baseball homepage so it will grab the next 3-4 events under the
    "baseball" category and display them on the page. I would like to
    be able to do this with each sport and put an overall events list
    that shows the next 5-10 events on the homepage.
    Thanks for any help or input!

    http://demo.mediachurch.com
    check that baby out! hehehe, I've actually had
    some fun playing with it, though it certainly has given me
    fits.
    Additionally, due to the heavy Zend use, it's been pretty
    hard to tie in
    calendar templates with my site templates (pretty hard as in
    I still have no
    clue how I'm goign to do that aside from a directory copy).
    1. Agree on upgrade
    2. Check those links out - the CSS maps are really
    invaluable. Actually,
    what I did most of the time was rip out all the stuff they
    had in there
    (their CSS design was lacking in 8 ways) and just replace it
    with mine.
    3. I don't want to promise this, but I think we were able to
    talk to them
    about bulk purchasing. The only problem was that they have a
    policy that
    bulk applies to purchases at the same time - so if you buy 50
    one day and 50
    the next, you only get bulk for 50.
    I'm working on the multipiple users thing. I saw a post on
    the board where
    somebody had figured it out. I'm struggling - the input form
    is a nightmare
    of javascript, and I haven't messed with it for ages. I'm
    hoping I can just
    upload it to my table in my main database, and then export it
    to the other
    database upon approval. Blech! :O)
    Jon
    "Mad Dog" <[email protected]> wrote in message
    news:[email protected]...
    >I haven't had need for multiple users, so that hasn't
    been a problem for
    >me. I've customized it a bit using the CSS, which wasn't
    bad, but I didn't
    >need to do as much customization as you have. I had some
    problems
    >integrating it into a WordPress sidebar, but with Brian's
    help and Google
    >searches, I got it figured out and it works like a charm.
    I even outlined
    >it and Brian posted it as a sticky in the forum for
    Wordpress integration
    >guidelines. My main needs now are:
    >
    > - A better upgrade process
    > - Cleaner, easier to understand, better documented CSS
    would be nice
    > - Bulk purchasing discounts!
    >
    > MD
    >
    > crash wrote:
    >> It's a pretty good package, and looks to be getting
    even better. There
    >> are some warnings, though.
    >>
    >> You need to look at their specs and make sure the
    way it's setup is
    >> going to accommodate you. They are working on a much
    more robust
    >> version, due out in Q3, and I highly recommend that.
    (You should be
    >> able to buy now and upgrade for a nominal fee).
    >>
    >> What I needed but wasn't quite there:
    >>
    >> 1. Different users being able to have different
    categories available
    >> to them. As it is now (from everything I've read)
    this isn't really
    >> possible to do.
    >>
    >> 2. The ability to show multiple events under one day
    heading
    >>
    >> 3. Customizing the calendar templates is a bit
    limited, and is not at
    >> all intuitive. For example, you can customize parts
    of the css
    >> through one section (for templates) but that does
    not apply to other
    >> sections. You can add additional information to the
    headers via an
    >> include file, but must edit the actual images to
    change the header
    >> graphic, as the graphic reference is embedded in
    Zend programmed code.
    >>
    >> Now, the great thing like MadDog mentioned is the
    forums. Thanks to
    >> them and help from one of their members, I was able
    to fix number two
    >> - but it did take some time. The dates were
    especially hard for me
    >> to get a handle on, and that might have been the
    biggest part of why
    >> I found customizing the application so difficult.
    >>
    >> Overall, there's definitely no better value I found
    than this
    >> calendar. It is great if you're working in an
    environment where you
    >> have a small, trusted editing team. The new version
    looks to be
    >> suited well for a larger environment, with
    additional administrative
    >> levels and controls. It can be customized, and
    there's a large group
    >> of people doing this.
    >> Additionally, don't forget to bookmark/download this
    if you're goign
    >> to be working with the calendar. It's a god-send.
    >>
    >>
    http://www.epctutorials.com/index.php?option=com_content&task=view&id=13&Itemid=26
    >>
    >> And it looks like he's got one up for the pop-up as
    well. This
    >> gentleman was one of the posters that really has
    helped me customize
    >> the calendar.
    >>
    http://www.epctutorials.com/index.php?option=com_content&task=view&id=16&Itemid=26
    >>
    >> Good luck!
    >>
    >> Jon
    >
    >

  • Concept to analyze a event list

    Hello,
    i want to analyze a event list in BW. I get a list of events with product id, date / time, event type, amount, ...
    Now I want to calculate for each product the time differences between the events.
    How can I realize it in BW?
    My idea is to seperate them using a ODS for each event and calculate the difference-values in the next tranfer rule.
    But the model is surely bad extendible.
    Best regards,
    Alexander

    You can check in the code whether the item is a file or a folder and then based upon that copy its details to the other list.
    Have a look at the following link for reference.
    http://paulryan.com.au/2013/itemadding-event-file-or-folder/
    http://www.alaindeklerk.com/differentiating-filefolder-in-sharepoint-eventreceiver/
    Geetanjali Arora | My blogs |

Maybe you are looking for

  • How to link Excel Chart with multiple columns dynamically?

    Hi all, I have one problem. I have an excel chart which has to read data from multiple columns for it's X-axis values (time stamps) and the same number of values for it's Y-axis from multiple columns. See figure attached. Now, you can do this by manu

  • Screen broke on Macbook Pro?

    Hi I have a original macbook pro 15" (2 and a half years old) and the screen has just stopped working! I was on it about an hour ago and everything was fine. Just went to turn it back on now and I can hear that it is on, but the screen remains black.

  • F4 help for date field in ITS

    hi all; I was working on ESS Leave Request, i am using the standard program SAPMWS20000081H and the service template WS20000081. Now in the EP view i am unable to get the F4 help for the date field 'Absence From' & 'Absence To'. i have checked the da

  • Pre-emptive collision detection

    Hi im at the stage where im writing some collision avoidence routines for a first person shooting game (yes another one hehe) i was wondering if there is a way to detect if an object or view is going to collide with another object in the world.. at t

  • Inactive objects in ABAP

    All, Can you help me to answer this questions ? Is there anyway to find all the inactive objects on ABAP ? During Enhp4  upgrade, we touched the buffer during ddic activiation and not sure how many objects were in active because of this ? Though the