Update daylight saving table

What is the best way to maintain the daylight saving table?
Best regards,
Hans Freund

Hans,
Once ME is running on NW, we follow the recommendation of NW team. As I remember, there was SAP Note on this topic. The main idea is that it is hard to guarantee the consistency of data. Thus it is recommended to schedule a downtime for the period of time shift. In March it is easier because the time is shifted forward so that you just need to stop production before the shift, then adjust the clocks and start the production. In October it is a bit more difficult because additionally you need to wait 1 hour due to shifting the clocks backward.
Regards,
Sergiy

Similar Messages

  • ICal event times changed when my mac updated time to daylight saving time

    When my mac updated its time automatically to daylight saving time, the timed events in iCal all had an hour added to them. Time zone support is off in iCal. I tried changing my time zone from the system preferences (just to see what happens) and the iCal times also change. Is there any way to turn off this ridiculous and useless (to me) feature? I travel quite a bit and all iCal events are always added in local time scheduling. So there is no need for the event times to change when I change time zone!
    Thanks!

    I am having the same problem but it's only some of the appointments that were changed. I think some were entered after the update and perhaps those weren't changed. Very confusing.

  • No. of containers not updating in QALS table from goods receipt

    Hi all,
    I am working on below requirement for client.
    I am releasing a process order and then saving it. With this, an inspection lot is created in QALS table automatically.
    Then I am doing Goods receipt through MIGO.
    While doing goods receipt, I am entering no. of containers in quantity tab on item level (GOITEM-ANZGEB), but the same is not getting updated in QALS table (QALS-ANZGEB).
    Is there any configuration setting needs to be done to activate the update of no. of containers in QALS table from MIGO transaction?
    P.S. - Sometimes we use MB31 also to do goods receipt. In that also, there is no. of containers field.
    Thanks in advance,
    Sachin

    Hi Sachin,
    what is the solution for this .? Can you explain?
    Ram

  • Oracle 11 driver causes problem in the day when the daylight saving starts

    Hi everybody,
    I'm facing a really weird problem with daylight saving stuff. So, let me explain:
    I have a table where stores some personal data, which one of the columns is a birth date.
    On this column there is a constraint like: TRUNC(BIRTHDATE) == BIRTHDATE to ensure that the is the same always.
    Now the problem starts:
    When a person is born when the daylight saving starts (+1 hour) (e.g: Belgium 22/04/1930) in our Java application
    that date is described like: Sun Apr 22 00:00:00 CEST 1923
    When the application tries to insert data into the table, it gets a constraint violation exception.
    The configuration I'm using:
    - JDK 6_0_21
    - Oracle driver: 11.2.0.1.0 (ojdbc6.jar)
    - Oracle database: 10.2.0.4.0
    Now the weird part: When I change back to the previous Oracle driver version (10.X), it works perfectly. I've seen this FAQ:
    http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-faq-090281.html#08_01
    and tried both solutions: Set the mapDateToTimestamp property and change from DATE to TIMESTAMP type in the table. Unfortunately, both don't
    work.
    Anybody has an idea how to solve that? (Change back to the previous version is not an option for us, since we had transactional problems with it)
    Cheers,
    Bruno

    You might want to post on ODBC

  • Conversion mapping is losing time zone data during daylight saving time

    We have a problem with conversion of Calendars to timestamp with timezone for the last hour of Daylight Saving Time (e.g. 01:00 EDT - 01:59 EDT) where it is being interpreted as Standard Time which is in reality 60 minutes later.
    We've written a JUnit test case that runs directly against TopLink to avoid any issues with WAS and its connection pooling.
    The Calendar theDateTime comes from an object called TimeEntry which is mapped to a TIMESTAMP WITH TIMEZONE field using conversion mapping with Data Type TIMESTAMPTZ (oracle.sql) and Attribute Type Calendar (java.util).
    We are using:
    Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build Patch for Bugs 5145690 and 5156075)
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production
    Oracle JDBC driver Version: 10.2.0.1.0
    platform=>Oracle9Platform
    Execute this Java:
    SimpleDateFormat format = new SimpleDateFormat("MM/dd/yyyy HH:mm z");
    TimeZone tzEasternRegion = TimeZone.getTimeZone("US/Eastern");
    Calendar theDateTime = Calendar.getInstance(tzEasternRegion);
    theDateTime.setTime(format.parse("10/29/2006 01:00 EDT"));
    Persist to the database and execute this SQL:
    SELECT the_date_time, EXTRACT(TIMEZONE_REGION FROM the_date_time), EXTRACT(TIMEZONE_ABBR FROM the_date_time), EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    FROM time_table WHERE time_table_id=1
    This provides the following results:
    THE_DATE_TIME EXTRACT(TIMEZONE_REGION FROM the_date_time) EXTRACT(TIMEZONE_ABBR FROM the_date_time) EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    29-OCT-06 01.00.00.000000 AM US/EASTERN US/Eastern EST -5
    The wrong time zone is in the database. It should be EDT -4. Let's test the SQL that should be generated by TopLink. It should look like the following.
    Execute this SQL:
    UPDATE time_table SET the_date_time = TO_TIMESTAMP_TZ('10/29/2006 01:00 US/Eastern','mm/dd/yyyy HH24:MI TZR') WHERE (time_table_id=1)
    SELECT the_date_time, EXTRACT(TIMEZONE_REGION FROM the_date_time), EXTRACT(TIMEZONE_ABBR FROM the_date_time), EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    FROM time_table WHERE time_table_id=1
    This provides the same results:
    THE_DATE_TIME EXTRACT(TIMEZONE_REGION FROM the_date_time) EXTRACT(TIMEZONE_ABBR FROM the_date_time) EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    29-OCT-06 01.00.00.000000 AM US/EASTERN US/Eastern EST -5
    Now, execute this SQL:
    UPDATE time_table SET the_date_time = TO_TIMESTAMP_TZ('10/29/2006 01:00 EDT US/Eastern','mm/dd/yyyy HH24:MI TZD TZR') WHERE (time_table_id=1)
    SELECT the_date_time, EXTRACT(TIMEZONE_REGION FROM the_date_time), EXTRACT(TIMEZONE_ABBR FROM the_date_time), EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    FROM time_table WHERE time_table_id=1
    This provides better results:
    THE_DATE_TIME EXTRACT(TIMEZONE_REGION FROM the_date_time) EXTRACT(TIMEZONE_ABBR FROM the_date_time) EXTRACT(TIMEZONE_HOUR FROM the_date_time)
    29-OCT-06 01.00.00.000000 AM US/EASTERN US/Eastern EDT -4
    The correct time zone is now in the database. Let's test reading this with the following Java:
    System.out.println("cal= " + theDateTime);
    System.out.println("date= " + theDateTime.getTime());
    System.out.println("millis= " + theDateTime.getTimeInMillis());
    System.out.println("zone= " + theDateTime.getTimeZone());
    This provides the following results:
    cal= java.util.GregorianCalendar[...]
    date= Sun Oct 29 01:00:00 EST 2006
    millis= 1162101600000
    zone= sun.util.calendar.ZoneInfo[id="US/Eastern",...]
    The TimeZone object is correct since we are using the US/Eastern regional time zone, but the millis are wrong which makes the time EST instead of EDT. The millis should be 1162098000000.
    The conversion from java.util.Calendar to TIMESTAMPTZ loses the actual offset when setting to a regional time zone. It can maintain this info by specifying it explicitly.
    The conversion from TIMSTAMPTZ to java.util.Calendar also loses the actual offset even if the correct offset is in the database.
    Has anyone else encountered this conversion problem? It appears to be a conversion problem in both directions. I know that the Calendar is lenient by default and will assume Standard Time if time is entered during the repeated 1 o'clock hour at the end of Daylight Saving Time, but the Calendars we are using are explicit in their time, so this would be classified as data corruption.
    Nik

    Opened an SR. Looks like there is a problem with conversion either in TopLink or in JDBC.

  • Switch to standard time from daylight saving causes error - iOS 7

    Hi there,
    Today (27-Oct-2013) the time was switched back from daylight saving to standard. When looking my iPhone, I noticed that although the clock correctly displays the current time, the standard weather app still uses the time according to daylight saving (i.e. showing one hour ahead) and what is more interesting, the calendar acts weirdly, showing the correct time, but placing it in the old daylight saving time, i.e. 7:46 AM is shown as a line between 8:00 AM and 9:00 AM! It is really ridiculous and it seems I cannot change these. I restarted my iphone, turned off and on again using carrier provided time, but nothing changed. Any clues?
    Using iPhone 5 and iOS 7.0.2.
    Any help is appreciated.

    Problems with time, time zones have been quite common. Clearly, my brand new, the most forward thinking smartphone has the same bug. Sometimes I wonder why Apple is unable to get basic things work? they simply don't care, that's all.
    Issue with the line materializes itself on my iCal on iMac as well
    I hope, at least alarm will go off at the right time Monday morning
    BTW:  last year when I was on trip to Chile, at one night - suddenly - out of the blue - time changed on all our apple devices.. it's bad when you've got your flight next day and don't know when to wake up weeks later I have found out information Apple did not update their list of timezone changing dates.. for couple of years...

  • Equipment not updated in all tables properly

    Hi Friends
    Equipment was updated in EQUI table with limited data only and not updated in other tables EQKT, EQUZ. When I go through the IE03, there I am unable to find the equipment. Material and serial number provides the equipment, I know it, but if we check it in IQ02 for the serial number with the material, I was unable to see the equipment details those are sales and distribution tab and some tabs not updated and equipment not activated. When I tried to activate the equipment in IQ02, system allows saving the document. When I am coming back, system is giving the update termination error. I think at the time of creating user might have done some mistake, but I am unable to find it
    Could you please let me know the reason and possible solution?
    Thanks in advance
    Ravi

    hi
    After creating the equipment in IE01 ,you are not able to change in IE02 or display the same in IE03, then kindly check with your basis team for your update termination error
    regards
    thyagarajan

  • Nokia N8 Daylight Saving Clock Issue

    I have discovered a issue with the clock on my Nokia N8 following the commencement of daylight saving here in Melbourne Australia.
    My device is set to "Automatic time update" & yesterday it adjusted the time for daylight saving by 2 hours instead of 1. It is now one hour fast.
    I have a feeling there may have something to do the phone confusing UK time for GMT time (UK still in daylight saving time to my knowledge).
    Anyone else have this issue?

    Mine is working fine, I changed from Brisbane to Melbourne, only moved forward an hour with automatic time update on.
    I'm using Belle though, perhaps when you get the Anna update it shall fix it.
    For now you might have to just turn the automatic updates off

  • IPhone upgrade to 3.1.2. resets date time - no daylight saving

    I upgraded my iPhone 3GS to the new OS: 3.1.2 recently. I noticed the date & time were reset to some time way in the past so I reset them to the current date & time. I notice now there's no way in the Settings | General |Date & Time to automatically have the date & time synced with your PC and the iPhone doesn't take allowance of daylight saving time - I added London as a city for keeping track of my time and the Clock shows it as 10 hours behind Sydney time rather than 11, which would be the case if Sydney was set at daylight saving time.
    Does anyone have any suggestions as to how I can get my iPhone to recognise daylight saving time again? I can't see anywhere on the iPhone or iTunes to do it, I've tried resetting my iPhone. Nothing is working.

    I don't see a DST option either. I assume that Set Date & Time automatically did set from the phone network and that would include DST corrections. Mine is correct now and we are on DST here. Manual says:
    "Set whether iPhone updates the date and time automatically: Choose General > Date & Time and turn Set Automatically on or off.
    If iPhone is set to update the time automatically, it gets the correct time over the cellular network, and updates it for the time zone you’re in.
    Some carriers don’t support network time in all locations. If you’re traveling, iPhone may not be able to automatically set the local time."
    Phil

  • Does BOXI 3.1 supports Daylight Saving Time (DST)?

    Hi ,
    Can any one tell me whether BOXI 3.1 supports Day Light Saving (DST), in case of scheduling reports?
    Thanks in Advance,
    Raghuveer.

    Hi Reddy,
    you can contact your vendor regarding this information ....
    You need to appy the Business Objects patch, you will need to apply the extended Daylight Saving Time (EDST) patches for your operating system and Java Virtual Machine and Application Servers in order for the Business Objects patches to take effect. Please contact your vendors for updated information.
    Regards
    KP

  • Appliaction Server 9.2 Daylight Saving Time Patch

    We have an older Oracle Application Server 9.2. Do I need to apply Daylight Saving Time Patch.
    Thanks in advance!
    Robert

    Support Note 417277.1 '2007 Daylight Saving Time Updates For Oracle Application Server'

  • Change pointer entries not updated in BDCP table

    I am using a IDOC to file senario.For message type ISM_MATMAS. In Tcode JP28 when changing Business partner only CDHDR and CDPOS table are getting updated but BDCP table is not getting updated. I have activated CP's for message type in Tcode BD50,
    Globally in BD61,
    added the field in BD52.
    But its not working.
    Please let me know if anybody faced such problem ?
    Regards,
    Vijay

    Hi Karthick,
    Did u saved after the changes in Sm30?
    Also is there any maintenance events for this table? If yes check the code in these events. There might be some logic for over writing ur changes.
    u can check the events by this path.
    SE11=>Table name=>change=>utilities=>Table maintenance generator=>Environment=>Modification=>Events.
    Thanks,
    Vinod.

  • Java 1.4 and Daylight Saving Time 2007

    The current version of Java 1.4.2 for Tiger, 'Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_09-244)' does not handle the new 2007 Daylight Saving Time rules correctly. Will Apple be updating Java 1.4.2 to the version that does support 2007 DST correctly? (at least 1.4.2_11 is required per Sun, http://java.sun.com/developer/technicalArticles/Intl/USDST/).
    If so, when? Thanks!

    Since you didn't list your computer, here's a link to Java 5.0 release 4 for both PPC and Intel-based Macs, which came out in April: http://search.info.apple.com/?q=J2SE50Release4.dmg&type=kbdload&search=Search&lr =lang_en&search=Go. That should solve your problem.

  • DBConnect Daylight saving conversion

    Hello Experts,
    I am trying to extract data from Oracle Database tables and their Date format is Daylight saving and using their Oracle side function to convert it to "mm/dd/yyyy hh:mm:ss" is taking a lot of time while extraction.
    So, i am tying to replicate the following code in SAP:
    FUNCTION DATE_TIME_CONV (dRemedyDateIn IN NUMBER)
    RETURN DATE
    IS
    dDateOut DATE;
      BEGIN
    IF dRemedyDateIn is NULL THEN
       RETURN NULL;
    END IF;
          dDateOut := TO_DATE('12/31/1969 16:00:00','MM/DD/YYYY HH24:MI:SS') + ( dRemedyDateIn/ ( 60 * 60 * 24 ));
          IF ( dDateOut < DAY_LIGHT_SAVING_STARTS(dDateOut) )
                OR ( DAY_LIGHT_SAVING_ENDS(dDateOut) <= dDateOut ) THEN
                dDateOut := TO_DATE('01/01/1970','MM/DD/YYYY') +  ((( dRemedyDateIn / 60 / 60 )- 8) / 24 );
          ELSE
                dDateOut := TO_DATE('01/01/1970','MM/DD/YYYY') +  ((( dRemedyDateIn / 60 / 60 )- 7) / 24 );
          END IF;
          RETURN dDateOut;
    END DATE_TIME_CONV;
    Did somebody have come across this scenario?
    Thanks
    Arun

    try to play around with these function modules..
    GET_SYSTEM_TIMEZONE
    TZ_LOCATION_TIMEZONE           Time zones: Determine time zone for a location (land, region)                                                                               
    TZON_GET_OS_TIMEZONE                                                                           
    TZON_LOCATION_TIMEZONE                                                                               
    TZON_CHECK_TIMEZONE                                                                            
    TZON_GET_TIMEZONE_TEXT                                                                         
    TZON_GET_USER_TIMEZONE

  • Updating a standard table from a custom tableq

    hi to all experts,
    My requirement is to update a standard table from the maintenance screens of the custom table whatever the data the user maintains in the custom table and save should automatically saved in the standard table
    for that i decided to use the table maintenance events (event 05 ) ( while saving data) how to capture the data from the screens to the form of the table maintenance events.

    Hi gautham,
    The requirement is like that actually user want to maintain value in z table ( with one extra field ) . the table updation of table is important

Maybe you are looking for

  • Airport Extreme n, difficulty connecting to Airport Express g

    Can anyone help? I have just bought a new n rated Extreme to replace my old round one, I have 3 Airport Express , 2 connected to stereos and one acting as a relay, however I cannot set up one of the AX's to act as a relay between my imac and the othe

  • Link b/w orclIsEnabled on OID and portal API calls wwsec_api.activate_user

    Hi Folks, I am just curious about the account status on OID and access on portal user profiles. Is account activation or deactivation in OAS portal (using wwsec_api.activate_portal_user/ deactivate_portal_user calls) related to the OID enable/ disabl

  • Load and resize a SWF inside a MC

    Hi, I'm using AS2 to load an SWF inside an MC. The MC measures 800x600, while the SWF (which can vary in size) measures in this case 14x60, even though, looking at it, it seems to be about half the size of the hosting MC. This makes me think that the

  • Alert categories

    Hello, Anybody has any idea or used before the Alert management where we go with the IMG setting - sapnetweaver - generic business tools - alert management. how to use this in action profile and where this can be displayed in webui(how to display- wh

  • Strange behaviour of the web UI

    Hi, I have encountered something weird when i used the web UI of Oracle 10g Express. I have a table with one of fields defined as Blob type and this table contains a record with data in the blob field. I used a Java application (created by myself) an