Time issue problem

Hi Guys,
need to check if there is any solution on this... document posted in SAP takes the Application server time. Now if i have two or more plants at different location with a time difference , this effects a lot in deciding things.
Can any one suggest any thing on this , how to take care.
Rajiv

If you need to know which server is doing a job, you can check your host name:
SY-HOST
If you know the time difference between both servers, you can use a conversion routine to put the DBMS time in your data:
DATA: myHost LIKE sy-host.
DATA: myDate LIKE sy-datum.
myHost = sy-host.
myDate = sy-datum.
CASE myHost.
WHEN 'SERVER1'.
myDate = (add/sub your diff).
ENDCASE.
If you are not able to do this, try to put a Zfield in your tables, and save the host name there.
If you need more help, try to say us what are your problem, you gave us not too much info.
Good luck,
Vicenç

Similar Messages

  • Windows 2003 time issue - recreate W32TIME account?

    I have gone through many google searches and posts and think i have figured out my problem, but can't find a solution to resolve it.  after unregistering and re-registering the w32tm and actually taking the whole w32time key and subkeys from another
    box and importing them i still receive the same error after reboot on my DC -  event id 30, w32time=source.  desc "the time service encountered an error while reading its configuration from the registry and cannot start. the error was: the system
    cannot find the file specified. (0x80070002).  now my problem and please make note and don't just give me a link to something i have already tried is that after recreating the registry keys (either by re-registering using w32tm and/or using an export
    from a working box, and importing it into the non-working server) either way after a reboot the problem re-occurs and the problem is that the W32TIME ACCOUNT is not listed in the PERMISSIONS tab of the CONFIG folder/key nor is it listed in the TIMEPROVIDERS
    key/folder.  when trying to add it, it IS NOT LISTED as an OBJECT to add.  HOW DO I RECREATE A LOCAL W32TIME ACCOUNT to allow my server to read the registry folders/keys. 
    i am able to get the time service to start during my session (while logged in, using w32tm /unregister and then w32tm /register) and of course net start w32time and it does start but after a reboot, crapola.
    not sure why it would be have permissions to read the necessary keys whilst in my session (since there is no w32time account given read permission listed (when checking the permissions of the CONFIG and TIMEPROVIDERS keys)) and then after a reboot the service
    fails due to (what I am guessing) is due to the W32TIME account not having the necessary permissions (since the account is not listed), there has to be an easy fix to recreate the W32TIME account, I checked another server but couldn't find anything in
    the registry about a local account.  On a side note, I have never seen this account anywhere in any 'local users and groups' anywhere.
    it would seem that the w32time account is not necessarily needed to be given permission to the keys, since it works during my session without the keys having the w32time account listed??
    after a reboot (with a service failure popup) and checking event log (system) shows two errors -
    event id 30 - w32time - as mentioned above and then shortly thereafter
    event id 46 - w32time - the time service encountered an error and was forced to shutdown - the error was : 0x80070002 - the system cannot find the file specified.
    i am then forced to /unregister and /register using w32tm. and then net start w32time and it starts and works fine....until i reboot.
    I have a feeling i will be demoting the DC and rebuilding it, probably quicker too.
     UPDATE 8/29/10 - 4:45pm est - I ended up removing its role as a dc and dns server...demoted, and also removed it from the domain (the issue still occurs) and it is (if i didn't mention before) a VM running on hyperv.  so i will keep the vhd file
    to tinker with if anyone has any suggestions, however at this point i am rebuilding a new vm as a 2008 DC.
    what it is!

    Hi, I have the same problem on Windows Server 2003 installed on Hyper-V server. I found an article with possible solution but I don`t have to test it. The article says that I have to disable the time sync on the Hyper-V configuration for this Server.
    Here`s the link http://mikefrobbins.com/2010/05/17/active-directory-and-server-time-synchronization-problems-with-hyper-v/ 

  • Date & Time Issue

    I live in Egypt, I have this issue with my iphone4 recently, whenever i use the [Set Automatically] option for the Date and Time it Not the ring time, meaning for example now it's 6.20am, and the phone says it's 3.20pm, even when i turn it off and set it to Manually changed, and i set the right time, it still changes like a day after to what it's supposed to be if it was on Automatically Set which is far from right, what am i doing wrong?

    There is NO ONE from Apple here. Just user like you assisting other users. Sounds like you carrier is having time sync problems, since the phone gets its time from them.
    that being said, on the iPhone, check settings:general:date and time: and see if set automatically is on or off. Also try resetting the phone by holding down the home and power buttons and waiting until the apple appears (ignore the power off slider).

  • Execution Time Issue

    Help Please!!!
    I've been searching for an execution time issue in our application for a while now. Here is some background on the application:
    Collects analog data from a cDAQ chassis with a 9205 at 5kHz
    Data is collected in 100ms chunks
    Some of the data is saved directly to a TDMS file while the rest is averaged for a single data point. That single data point is saved to disk in a text file every 200ms.
    Problem: During operation, the VI that writes the data to the text file will periodically take many hundreds of milliseconds to execute. Normal operation execution times are on the order of 1ms or less. This issue will happen randomly during operation. It's usually many seconds between times that this occurs and it doesn't seem to have any pattern to when the event happens.
    Attached is a screenshot of the VI in question. The timing check labeled "A" is the one that will show the troubling execution time. All the other timing checks show 0ms every time this issue occurs. I simply can't see what else is holding this thing up. The only unchecked subVI is the "append error call chain" call. I've gone through the heirarchy of that VI and ensured that everything is set for reentrant execution. I will check that too soon, but I really don't expect to find anything.
    Where else can I look for where the time went? It doesn't seem to make sense.
    Thanks for reading!
    Tim
    Attachments:
    Screen Shot 2013-09-06 at 9.32.46 AM.png ‏87 KB

    You should probably increase how much data you write with a single Write to Text File.  Move the Write to Text File out of the FOR loop.  Just have the data to be written autoindex to create an array of strings.  The Write to Text File will accept the array of strings directly, writing a single line for each element in the arry.
    Another idea I am having is to use another loop (yes another queue as well) for the writing of the file.  But you put the Dequeue Element inside of another WHILE loop.  On the first iteration of this inside loop, set the timeout to something normal or -1 for wait forever.  Any further iteration should have a timeout of 0.  You do this with a shift register.  Autoindex the read strings out of the loop.  This array goes straight into the Write to Text File.  This way you can quickly catch up when your file write takes a long time.
    NOTE:  This is just a very quick example I put together. It is far from a complete idea, but it shows the general idea I was having with reading the queue.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Write all data on queue.png ‏16 KB

  • Time issues? time zone settings appear in two places

    If you leave the default "set time and date automatically", you see the time zone support below and you can check it or uncheck. You can then set your time zone there. But if you uncheck the automatic date and time, you get another time zone choice and the default is Cupertino, of course. I wonder if that's the problem with some of these time issues.
    I've since unchecked automatic date and time, set my city's time zone, then rechecked automatic. The only weirdness I've seen was with an excel spreadsheet where the time was correctly shown on my mac, but not on the iphone. Unfortunately I don't have that sheet anymore or I'd try again to see if it works now.
    Just a thought.

    I noticed the same thing and did the same thing you did because my time was off by several hours each time I turned the phone on...after it being off overnight. When it was off by only 1 hour I could turn the Auto OFF then 'tap' the timezone (already set to the correct city) and the time would instantly correct itself. Then I'd turn Auto back ON.
    Turns out that my time issue was related to having the SIM PIN enabled. Once I disabled that, the time's been correct every day.

  • Issue / problem adding audio in Presenter 7 (PowerPoint 2010)

    Since I got a new PC (Windows 7), I'm having an issue / problem adding audio in Presenter 7 (PowerPoint 2010).
    It doesn’t happen every time, but randomly with many presentations...
    In PowerPoint, right after I import audio (through Presenter) and click “ok”, I get the following errors:
    Then, I can't get into the "import/sync/edit" mode, from the Presenter tab...
    Already tried reinstalling Presenter, resaving new presentations, deleting the .ppcx/audio folders, importing the audio locally (vs from my network drive), etc.
    Then sometimes, randomly, it will let me get back in and edit the audio, after numerous attempts…?!? I can't figure out what the pattern is, which is causing this new problem (never had this problem before, w/ my old PC - Win XP / PowerPoint 2003 / Presenter 6 & 7)
    Anybody have an idea what the issue could be?
    Thanks,
    Mike P.

    Hello,
    I  tried to reproduce this issue but I am not getting any error message. Please provide us following information; this might help to reproduce this issue:-
    1) You are seeing this issue in  PPT or PPTX
    2) You seeing this issue in newly created presentations or its just old presentation which is not working properly.
    3) OS and PowerPoint version
    4) If this issue is consistent on any particular presentation then please share it.
    5) Can we have exact reproducible steps
    Regards,
    Shubhi

  • Consignment issue Problem

    The problem we encounter is that in the consignment issue order which is created by reference to fill-up order, every time issue order will set the quantity of the material to be the quantity in referred fill-up order. For example, if fill-up order has 100 unit of material X, and then system will set the quantity of material X in issue order to be 100 either.
    But there is a situation that in the first issue order, we have consumed 10 unit of material X. In this case, in the second issue order, we want to have the quantity of material X to be default as 90 units (100 - 10 = 90 units).
    Is there any User exit or BADI or whatever way to help me to calculate the remained quantity automatically in issue order?
    give me some solutions for this issue.
    Thanks&Regards,
    Mahi

    In complition rule what shoud i maintain to process my senario.My issue is with ref to consignment fillup order we create the issue order ,. For example, if fill-up order has 100 unit of material X, and then system will set the quantity of material X in issue order to be 100 either.
    But there is a situation that in the first issue order, we have consumed 10 unit of material X. In this case, in the second issue order, we want to have the quantity of material X to be default as 90 units (100 - 10 = 90 units).
    A     Item is completed with the first reference
    B     Item is completed after full quantity has been referenced
    C     Item is completed after the target qty is fully referenced
    D     Item is referenced via contract release
    E     Item is completed after full target value is referenced.
    Pls help me on this issue.
    Thanks& Regards
    Mahi

  • [SOLVED] Yet another time issue...

    Hi there,
    I'm having some crazy, hair pulling, head banging UTC time issues on both my dual boot (Arch & Windows 8) desktop and single boot laptop.
    I've been searching and following a mulitude of old threads and the official Wiki guide, however, I simply cannot get UTC time to stay correct between reboots. I've installed Arch a fair few times now, both before and after the switch to systemd and in dual and single boot setups and have never had time related issues like this before...
    Here's a run down of the whole sorry story....
    Fresh install - set time with hwclock --systohw utc as suggested in the beginners guide.
    First boot - time an hour out - huh? cat /etc/adjtime and ls -l /etc/localtime - everything as it should be... UTC and symlink to /usr/share/zoneinfo/Europe/London. Nonetheless I duly follow the Time guide on the wiki, get to know timedatectl a bit, and soon after, time is set to be correct. Great.
    Reboot. Time an hour out. Whaaaa??. Start googling, finding a plethora of bbs links to others with similar issues, decide to use NTP. Install, ntpd -qg. All good again. Time right. Phew...
    Reboot. Nope. Arrrrgggghhhh. (Bare in mind - at this point I haven't even booted the Windows 8 disc, and I went through the exact same process on my Arch only laptop...)
    More googling, thread reading. Find out that hwclock and ntp might be in conflict. Delete /etc/adjtime, reinstall tzdata, re-follow Time article to the letter and reenable NTP to start at boot.
    Reboot - time is foward an hour yet again. Bang head repeatedly on desk. Then suddenly - 10 mins or so after boot - NTP kicks in, and time is magically goes back an hour to the correct time! Surely NTP should be doing this early in the boot process, not 10 minutes after? But OK, at least something is happening...
    Next I dare to boot into Windows, and yup, time an hour out. Expected, but frustrating nonetheless. Add the registry tweak as suggested in the guide, and turn off the Windows time synchronisation. During which I noticed that Windows 8 time is set to UTC by default, not localtime, which is what the wiki says. Is this a Windows 8 thing?
    I can't help thinking, that if this is the case, and the Wiki advise is written under the assumption that Windows time is always localtime, that perhaps this is the route of my problem....
    Anyway, Windows time all good now, reboot Arch, time again wrong untill NTP finally kicks in - sigh. Reboot to Windows. Time an hour back. Gaaaahhhh - WTF?!! reset it to be correct. Try again. Same thing. Oops, forgot to mention that on each reboot, I check the BIOS clock, which remains persistently correct during the whole debarkle...
    Ok, so I try without the registry hack and turn Windows sync back on. Still fucked. I try various combinations of the two, I try resetting Arch time over and over again. With NTP - late sync. With hwclock only, or both hwclock & NTP - totally fucked! Eventually, I give up on UTC in Arch, set it localtime, delete registry key, turn Windows time sync back on, and thus far all good......
    TL;DR - couldn't get hwclock to set UTC time correctly across reboots. NTP worked (sort of), but after each reboot it would take ten minutes for the time to sync and the clock to move back an hour to the correct time. Localtime just works...
    My question is - why is the wiki (and the timedatectl status output for that matter) - so adamant that we should use UTC? From what I can gather, as long as I boot Windows around the DST time. or manually move the clock forward or back an hour - all should be well, no? Or are there other issues that I may run into that I've missed? The thing I'm most concerned about is data corruption due to timestamp issues...
    Also, why does the wiki repeatedly say that Windows uses localtime, when this doesn't appear to be the case in Eight? Does the wiki need updating or is Windows lying to me? I know which I'd put my money on ;-)
    Finally can anyone explain why my time was always an hour forward after a reboot, even when the time was set correctly before, the BIOS showed the correct time, and NTP was in use?
    Sorry for the crazy long posting, but this issue has been driving me totally batty!! Any light-shedding greatfully appreciated :-)
    Last edited by knowayhack (2013-08-10 15:24:09)

    Ok, so I set the clock back an hour in the BIOS, booted Windows - time right - YAY.
    Rebooted Arch - time right. OMFG - pure joy!!!
    I have to say, I still find it odd that this is how it works, and would like to confirm that things are looking as they should in the output from the following commands....
    toby@archy ~ > timedatectl status
          Local time: Sat 2013-08-10 15:42:56 BST
      Universal time: Sat 2013-08-10 14:42:56 UTC
            Timezone: Europe/London (BST, +0100)
         NTP enabled: n/a
    NTP synchronized: no
    RTC in local TZ: no
          DST active: yes
    Last DST change: DST began at
                      Sun 2013-03-31 00:59:59 GMT
                      Sun 2013-03-31 02:00:00 BST
    Next DST change: DST ends (the clock jumps one hour backwards) at
                      Sun 2013-10-27 01:59:59 BST
                      Sun 2013-10-27 01:00:00 GMT
    toby@archy ~ > sudo hwclock --debug
    sudo: timestamp too far in the future: Aug 10 16:39:24 2013
    We trust you have received the usual lecture from the local System
    Administrator. It usually boils down to these three things:
        #1) Respect the privacy of others.
        #2) Think before you type.
        #3) With great power comes great responsibility.
    [sudo] password for toby:
    hwclock from util-linux 2.23.2
    Using /dev interface to clock.
    Last drift adjustment done at 1376148264 seconds after 1969
    Last calibration done at 1376148264 seconds after 1969
    Hardware clock is on UTC time
    Assuming hardware clock is kept in UTC time.
    Waiting for clock tick...
    ...got clock tick
    Time read from Hardware Clock: 2013/08/10 14:43:20
    Hw clock time : 2013/08/10 14:43:20 = 1376145800 seconds since 1969
    Sat 10 Aug 2013 15:43:20 BST  -0.953640 seconds
    Is it OK to now reinstall NTP to keep the clock in sync on Arch, and are the Windows reg tweaks still necessary on Windows 8?
    Thank you guys SOOO much for all the unbelievabley speedy help on this issue - you have no idea how much this has been stressing me out!!
    Last edited by knowayhack (2013-08-10 14:54:31)

  • Please tell me some real time issues faced by u in SCRIPTS

    please tell me some real time issues faced by u in ur experience

    First understand SAP scripts are client dependent..changes automatically not reflects in all development client once it is change in once client.
    We mostly see alignment issue in SAP script it is mostly because of printer settings etc...
    Also we may have few problems when printing unicode characters.. for printing double digits characters... like Japanese, chinese, korean etc.. we should have a printer with unicode enabled..
    Regards,
    SaiRam

  • RV220W System Time Issue in Combination with WiFi Active Time

    Hi
    Have system time issues with rv220w!
    Setup:
    Note that the real time is 17.32 (bottom right) but the system time is 16.20, result 1h offset (sad that the possibility to configure summertime start/end is missing)
    Setting up the WiFi active time from 5.30PM until 6PM (testing only):
    Note that the real time is 17.44, the WiFi is "Disabled". The RV220W system time is 16.44 with setting "CET +1h".
    BUT:
    Even when i change the RV220W system time to a Time/Date offset GMT +2h EET has this no issue to the WiFi time profile i set up. The WiFi stay down.
    Note:
    The WiFi Active Time Settings only working correct when the Clock Source is setting up with "Set Date and Time Manually" (in "Administration" "Time Settings"), but that is not the way.... i don't like to configure time settings manually (no system administrator will do that tinking)
    Conclusion:
    I think that the WiFi Time setting does not work fine, mean that the WiFi does not include the configured offset as usually system does....
    Further:
    RV220W firmware is up to date....
    Hope Cisco will fix that and add the summer time feature (like in other systems and other manufacturer) in the next FW.....

    GJinAmsterdam wrote:
    I have a MacBook upgraded from Tiger 10.4 to *Snow Leopard OS X 10.6.1.* I'm now using *Time Machine* to make back-ups on a *MiniMax external drive* through an USB connection. However, I wish to make wireless back-ups by connecting the external drive to my *Airport Extreme*. I learned that this wasn't possible until the recent release by Apple of the software update "*About Time Machine and AirPort Updates v1.0*".
    this has been possible for a long time, since about February 2008 when those updates came out.
    The minimum system requirement for this software update is OS X 10.5.2. I should think this requirement is met because I have upgraded to 10.6.1. But when I try to install the software I get the message that the system requirement is at least 10.5.2. and as a result *I can't continue installing*. Apparently my OS update is not recognized by the software. Is there a solution for this problem? Many thanks.
    you don't need to install those updates. they are for leopard, not snow leopard. you should be fine as is. do keep in mind that TM backups to air disks are not "officially" supported but they have worked for a long time. also, keep in midn that you'll need to start a new backup sequence once you move the drive to AEBS as remote backups are stored differently from directly attached ones.

  • E1200 - Hang time issues

    The E1200 is a very nice router for the price. The range of features is solid and the install is very easy. I would have given it a clean 5 stars but since install I've been having hang time issues where for about 8-10 seconds the internet connection will completely die out via the router, it doesn't happen through the modem. Firmware has been updated, settings combed through.. Haven't found the reason behind it. All in all it's solid and this is probably more of an issue I'm missing but until I find it I will leave the review as-is. Happy shopping. 

    Product Review wrote:
    The E1200 is a very nice router for the price. The range of features is solid and the install is very easy. I would have given it a clean 5 stars but since install I've been having hang time issues where for about 8-10 seconds the internet connection will completely die out via the router, it doesn't happen through the modem. Firmware has been updated, settings combed through.. Haven't found the reason behind it. All in all it's solid and this is probably more of an issue I'm missing but until I find it I will leave the review as-is. Happy shopping. 
    This was my post via amazon after purchasing this router. I'm actually debating returning it as the problem is still occurring no matter what settings I run on.

  • Help, I am about to pull my hair out, can't get into a locked drive and Time Machine problem

    I've screwed everything up, I think.  I had Time Machine doing backups to an external 500Gig drive and somehow it got locked.  I went into Get Info to try and change the access but it won't allow me.  On top of this problem, my original drive died and I can't get into Time Machine to restore.  When I click "Enter Time Machine", nothing happens.  I created an eDisk and a startup disk to another external drive that I'm using now, but since everything that's been backed up is on the other drive that I can't access.  When I try accessing the drive it gives:  "The folder “G-DRIVE ” can’t be opened because you don’t have permission to see its contents."  I'm not knowledgeable enough to work from the command line, so if I need to do that to access the drive, please walk me though it.  As for the Time Machine problem, I have no idea how to recover anything since it won't even come up, it just sits there.  Outside of blowing my brains out, I don't know what to do.  Any help would be greatly appreciated as I can't afford to take it to Apple to let them try and fix it.

    Hello, not sure how this might affect a TM drive, or not, but...
    Here is what i needed to do for my drive "320GB HD", the last command is just for clean up
    Open Terminal and type these commands carefully with the spaces & change 320GB HD to the name of your drive.
    sudo chflags 0 "/volumes/320GB HD"
    sudo chown root "/volumes/320GB HD"
    sudo chmod 1775 "/volumes/320GB HD"
    sudo -k
    That said, these should be sufficient to do the job:
    sudo chflags 0 "/Volumes/320GB HD"
    sudo chmod a+rx "/Volumes/320GB HD"

  • Time out problem in BPS

    BPS friends,
    We have a planning function to copy Versions based with some filters. The copy function takes 5 hours and times out after that. The function is reaching max buffer size as recommended by SAP so we cant increase the buffer size anymore.
    We are on BW-BPS 3.5.
    How can I solve this time out problem? Please respond to me.

    Hi Pat,
    How many record did you copy ??
    Could you restrict the copy in not 1 package ??
    Package per package ...
    I suggest you ..
    e.g. you have restriction by a 0CALMONTH / something ..
    Then,
    You can copy e.g. for January to March, then March to August, etc.
    You can automate it by planning sequence.
    Hopefully it can help you a lot.
    Regards,
    Niel.
    thanks for the points you choose to assign.

  • When I tap the mail icon on my iPhone 4s, the menu of email servers pops up.  I already have a me acct that I check all the time, no problem.  So I choose iCloud, sign in and it tells me that I already have an acct-.so why can't I get to my emails then?

    When I tap the mail icon on my iPhone 4s, the menu of email servers pops up.  I already have a me acct that I check all the time, no problem.  So I choose iCloud, sign in and it tells me that I already have an acct….so why can't I get to my emails then?  I've turned the phone off and on twice....that has fixed it in the past but not this time....

    all fixed ha

  • I have the latest version of free Quicktime, Itunes  and unable to view video on my PC all i get is a pink screen the audio is OK i have uninstalled and installed several times same problem, i have a Iphone 4 and unable to view the content.

    i have the latest version of free Quicktime, Itunes  and unable to view video on my PC all i get is a pink screen the audio is OK i have uninstalled and installed several times same problem, i have a Iphone 4 and unable to view the content.

    Open your QuickTime control panel (either via the Control panels, or by going "Edit > Preferences > QuickTime Preferences" in the Quicktime Player). In the Advanced tab, uncheck Enable Direct3D video acceleration:
    ... and click OK. Quit and restart the QuickTime Player prior to checking to see if the settings change has had any effect.

Maybe you are looking for