AT NEW f event in itab

m using 'at new  f ' event  in my code, but it is nt working as it is required to,, every time f changes to a new value, it still goes into At New block.
m nt getting what cn b the problem..can anybody tell in what cases it always traces the at new block..

Hi
Have you sorted the Internal Table. sort it by that field which you are using along with  At NEW
see the sample code
DATA: sflight_tab TYPE SORTED TABLE OF sflight
                  WITH UNIQUE KEY carrid connid fldate,
      sflight_wa  LIKE LINE OF sflight_tab.
SELECT *
       FROM sflight
       INTO TABLE sflight_tab.
LOOP AT sflight_tab INTO sflight_wa.
  AT NEW connid.
    WRITE: / sflight_wa-carrid,
             sflight_wa-connid.
    ULINE.
  ENDAT.
  WRITE: / sflight_wa-fldate,
           sflight_wa-seatsocc.
  AT END OF connid.
    SUM.
    ULINE.
    WRITE: / 'Sum',
              sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
    SKIP.
  ENDAT.
  AT END OF carrid.
    SUM.
    ULINE.
    WRITE: / 'Carrier Sum',
              sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
    NEW-PAGE.
  ENDAT.
  AT LAST.
    SUM.
    WRITE: / 'Overall Sum',
              sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
  ENDAT.
ENDLOOP.
Reward points if useful
Regards
Anji

Similar Messages

  • Cannot add new iCal events on my iPhone 3G.

    My iPhone 3G has stopped saving new iCal events. I can still set up new events in iCal on my laptop, and they'll sync over to my iPhone, but new events won't save when entered into iCal on my iPhone. Any idea what's wrong and how to fix this?
    BTW, I just got rid of a MobileMe account. I never ended up using MobileMe, so it doesn't seem like that should be the issue here, but I noticed that some other folks have had iCal sync issues with MobileMe, so I thought I'd add that info.

    In other words, it's hacked.
    Sorry, you can't get help here.
    Say for an instance, that it wasn't hacked. Would you suggest to just wipe and restore it?

  • Create new iCal event from contents of mail uses wrong date

    I received an email today with an appointment using the date "6/3/2010 at 4PM". Being from the US, it is obvious to me that this meeting should occur on June 3, 2010, but when I attempt to create a new iCal event with this date it creates the event on March 6, 2010. Even more confusing is that when I choose "Show this date in iCal" it highlights March 7, 2010!
    My question is:
    Shouldn't the system default to a month/day/year date preference everywhere when I've selected US English in the internationalization preferences pane?

    have a very similar question: is there somewhere an application where I can, when receiving an email, put it into iCal so that I am reminded about it in a week or something?

  • In mail "create new ical event" has stopped appearing in ical

    Please help! I love clicking on data in email to bring up the "Create New iCal Event" box, and using it to put new events into my ical calendar. But recently when I "Create New iCal Event" from an email, and click "add to iCal" the window closes but the event doesn't show up in iCal. I can still add events by clicking on a calendar date in iCal and typing them in, but the link between Mail and iCal seems to be broken. How can I fix it?
    Could this be related to how Firefox recently broke? Foxfire will not save bookmarks any more, either, I click on "Bookmarks," then "Bookmark this page". The window closes but the bookmark does not save. Also, the forward/backward browser arrows no longer work on Foxfire.

    Could you be more specific? What happens (or fails to happen?)

  • I entered a new calendar event at I cloud on my laptop.  The enent showed up on my I Phone  4S but, the start and finish times on the entry in I cloud was different than the times shown on the I phone calendar.  How do I sync the time in my I Phone with

    I entered a new calender event using I cloud on my laptop. The enent transfered to my i Phone 5 S but, the start and finish times shown st i cloud on the laptop are different than the times shown on the i phone.  How do I sync the times on the i Phone with the times shown on the laptop i cloud calender?

    Turn off time zone support on the phone.

  • How do i return calendar to original view?   All I can see is an hour by hour grid...can't get back to page where I can enter new appointments/events

    How do I return calendar to original view?   All I can see is an hour by hour grid...can't get back to page where I can enter new appointments/events

         Hi, at the bottom bar you should see a series of five buttons. Press the "Month" button if you desire to see the view of the month. As for creating a new calendar event simply press the "+" button in the upper right-hand corner to create a new appointment. *
    * Please note that this is all within the app called "Calendar".

  • Subscribing to new mail event of multiple impersonated user through one ExchangeService object

    I am able to subscribe to push notifications by specifying impersonating users' credentials and then specifying impersonated user's email in ExchangeService' ImpersonatedUserId property.
    However want to know how can I handle new email events on multiple email ids that are impersonated by one email id, since there is no collection as such on ExchangeService to specify multiple Impersonation Ids. In fact I think we can handle only one email
    id by using single ExchangeService object. And to subscribe to multiple user mail events, even through impersonation, I have to create multiple instances of ExchangeService. And also multiple callback listeners too. This is what I want confirmation about:
    Q. Do I need to create multiple instances of ExchangeService and callback listeners to handle new mail event on multiple user id with impersonation?
    Q. Without impersonation?
    Q. Also want to know given credentials of impersonating user, can I retrieve list of all users impersonated by that user.

    > Without impersonation?
    You don't need a separate instance in this case (you need separate subscriptions for each mailbox). However there are throttling limitations around the total number of subscriptions one particular user can make see http://msdn.microsoft.com/en-us/library/office/dn458788(v=exchg.150).aspx
    For
    subscribing to mailbox of same user id, we can use same object of ExchangeService. However I did asked for subscribing to mailboxes of
    different user ids (or simply multiple mailboxes) without impersonation.
    I cannot find how can I specify credentials for multiple mailboxes on single instance of ExchangeServer. Just following:
    service.Credentials = new WebCredentials(userid, password);
     Is it really possible to use same instance ExchangeService to subscribe to multiple mailboxes?

  • Can I filter News or Events by time (so that past items disappear from listings)?

    Can I filter News or Events by time (so that past items disappear from listings)?

    Thanks for your reply. I'm trying to find a way to divide events into two lists, "forthcoming" and "past events" which will automatically work without too much work for my client. If I set an event to "expired" is it still in the database and if so, can I list all expired events?
    Regards

  • "new object" event in JDI?

    I'm surprised that there seems to be no "new object" event in the JDI. As far as I can tell, the only way to identify a new instance of a class is by requesting MethodExitEvent, checking Method.isConstructor(), and then iterating over ClassType.instances() for objects you haven't seen before. This seems really inefficient. Is there no better way?

    Weak. NO DUKE STARS FOR YOU!!!

  • New pictures/events in book

    I am working on a "2008" book in iphoto. I have started working on the book & as the year goes on will need to add new pictures/events to that top pane to choose pictures from. Dragging pictures to the album or existing book on the left does not work. Any suggestions?

    LK
    Welcome to the Apple user discussion forums
    You do drag them to the book project in the source pane on the left - dragging them to the album does not do it although you may want them there too
    LN

  • Blog Post: New Region Events in APEX 4 - This is exciting!

    All,
    If you're interested in learning about some new JavaScript events that will be available with APEX 4, check out this new post:
    http://www.danielmcghan.us/2010/05/new-region-events-in-apex-4-this-is.html
    Regards,
    Dan
    Blog: http://DanielMcGhan.us/
    Work: http://SkillBuilders.com/apex/

    Hey Shunt,
    It works now, have a look at the next blog for instructions how to use it:
    http://iadviseblog.wordpress.com/2010/06/24/apex-4-0-region-selector/
    Kind regards,
    Oli

  • Menu path to create new transaction event key

    Dear Experts,
    Please give me the menu path and Transaction code to create New transaction event key for
    Materials Management postings.
    Thanks in Advance

    Hi,
    SPRO - Materials Management - Purchasing - Conditions - Define Price determination process - Define transaction/Event Keys.
    For MM transaction key T Code OMGH
    and for FI tarnsaction key T Code is OBCN
    GO to SM30 enter the table T030A and then click on display
    Please note the group as well as transaction code
    May Help U !
    Regards,
    Pardeep Malik

  • How do I Create new iPhoto events?

    How do I Create new iPhoto events?

    The Photos.app does not support events. The library is structured automatically by Moments and Collections.
    The "events" you are seeing in the migrated library are albums and not events. These albums have been created from the photos in each iPhoto event. 
    If you want something similar for new imports,
    select the photos in the "Last Import" album
    and create a new album for each new import.
    Name this album, like you would name a new event.
    Drag it to a folder for new events.

  • Adding a new day event?

    Okay... so I'm trying to add a day event to my calendar using the Java API. When I use this date format:
    DTSTART;VALUE=3DDATE:20050317
    ...I get this error:
    CAPI_STAT_DATA_ICAL
    However, when I use this format:
    DTSTART:20050317T120000
    ... it works fine, but that's not a day event. What do I need to do to add a day event? Note that all other fields are exactly the same between these two examples.

    Hi Bart,
    The error CAPI_STAT_ICAL could be the result of storing the quoted-printable string DTSTART;VALUE=3DDATE:20050317 with the flag CSDK_FLAG_STREAM_NOT_MIME.
    If using that flag, the parser won't understand the parameter VALUE's value (3DDATE is not a valid value for the VALUE parameter).
    Also you need to specify the X-ORACLE-EVENTTYPE property.
    Here is a valid day event:
    BEGIN:VCALENDAR
    VERSION:2.0
    PRODID:-//ORACLE//NONSGML CSDK 10.1.1.0.1 Beta 4
    BEGIN:VEVENT
    X-ORACLE-EVENTTYPE:DAY EVENT
    SUMMARY:new DAY EVENT
    DTSTART;VALUE=DATE:20050328
    DTEND;VALUE=DATE:20050329
    CLASS:PUBLIC
    END:VEVENT
    END:VCALENDAR
    Let me know if this works for you?
    Jean-Philippe

  • How can a new button Event open sales order

    CRM WEB UI issue.
    On assignment Block there is a New button , on New button Event i have to open sales order .
    Please help me.
    Thanks in advance .
    Kumar6

    Hi Kumar,
    Whenever you got any requirement then find out on Web UI how they have done it. As now you want to show sales order then first find out Component name for Sales order.
    So Go to transaction u2018CRM_UIu2019. Chose u2018SalesProu2019 as a Role.  In Navigation Bar click on u2018Sales Cycleu2019  and in Second level link there is u2018Sales Orderu2019. Click on it. Check  it is a screen you want on your button click.
    If yes then you need to find its Technical Data (details). So click inside Work Area and press u2018F2u2019 key.
    Then you will get UI component name, View name , Context name, Role key, etc. So you have to pick that UI Component name and give it in Transaction Code  u2018CMP_WD_BSPWBu2019.
    Now Go To  u2018Run Time Repositoryu2019 , In Component Interface They have created u2018Component Interfaceu2019 that you need to call in your Button click event. If you donu2019t know use of u2018Component Interfaceu2019 then first read it else its good for you.
    Well next time when you will write any Question, In Subject write it in One line so that all can see in list and answer you quickly.
    Thanks,
    Durgesh Pagar.

Maybe you are looking for

  • Music wont upload from iTunes to iPod

    When I try and upload songs from itunes to ipod all i get is a message saying "songs on the ipod "IPOD" cannot be updated because all of the playlists selected for updating no longer exist". Can somebody please offer some advise on what I should be d

  • How to put links in a document with Adobe 9 or 8?

    I have a document that used to have some underscored blue colored words in different places of the document. Clicking on these words it jumped you to another page of that document related to those blue words. I don't know why, but I lost those "inter

  • Slow Boot after 10.4.3 Update

    Hi, I'm experiencing a really slow boot time after updating to 10.4.3. This only effects my Dual 2.3 G5, the iMac G5 boots as normal. It seems to hang for at least 2 minutes on the grey screen before completing the boot and launching the login window

  • Installation Barrier - OS X4.0

    I am installing OS X 4.0 on an Emac using CDs. In the past I have been unable to successfully upgrade Itunes; it always stops loading midway through upload and must be aborted. Otherwise I have updated all software regularly using Software Update. No

  • UDM on physical standby database in grid control 11.1

    I am getting Test Results ORA-06550: line 70, column 5: PLS-00201: identifier 'RAISE_APPLICATION_ERROR' must be declared ORA-06550: line 70, column 5: PL/SQL: Statement ignored While creating UDM on physical standby database in grid control 11.1. Ple