How to create an event in two different time zones?

Hello,
I am traveling a lot and I would like to be able to enter the flight details in iCal - whether on my iPhone, iCloud, i... whatever. The problem is that I cannot manage to enter these details without calculating the time difference. Example:
I am flying on Saturday from Frankfurt to Japan. My flight takes off at 19:00h local German time and arrives in Tokyo at 13:00h local time (in Japan)
I can either specify the time zone for Germany or for Tokyo, but is there a way to enter the event from 19:00h German time to 13:00h Tokyo time?
Thank you very much for your time.
Larry

Hi Alex,
this applies only when the event takes place in one time zone, but in my case I start the event on one time zone and ends in a different time zone. As it is known, the airlines show always the local times on the ticket. Which means that I start my travel at 19:00h German time (UTC +2) and end it at 13:00h Tokyo time (UTC +9). When I create the event I can choose From Date/Time... To Date/Time and below I have Time zone. Ideally I should have two time zones, one for the start and another for the end.
Since this situation only applies to travelling (I can't think of another case right now), I believe that Apple didn't take this into consideration.
Any other thoughts/ideas? Other than manually calculating the difference, of course.

Similar Messages

  • Duplicate entries in two different time zones

    Somehow iCal imported files (or converted files) into two different time zones--the zone I'm in this year (Asia) and the original zone of the event (US east coast). So I might have an event correctly scheduled at 2pm, April 5, 2001 and a duplicate "false" event scheduled at 1am, April 6, 2001. I now have thousands of such entries, too many to delete manually. It's too late, now that I've made many updates before discovering the problem (all of the duplicate events took place before I moved to Asia), to start over.
    I've turned off "time zone support" since I suspect it was the source of the problem in the first place (I regret ever turning it on).
    I've been able to delete 1500 duplicate "all day" events using a script from John M, but timed events are not identical and therefore can't be uncovered with his script.
    Is there any solution to this problem?

    I never found a solution to this problem

  • How do i create a new event in a different time zone in iCal ios7?

    New update seems to have made this disappear in iphone.
    I'm also looking for same solution on MacBook Pro
    THanks
    j

    Several settings in Settings > Mail, Contacts, Calendars affect Calendar and your calendar accounts. These include:
    Syncing of past events (future events are always synced)
    Alert tone played for new meeting invitations
    Default calendar for new events
    Default time for alerts
    Calendar time zone support, to show dates and times using a different time zone
    Which day starts the week

  • How can I select events from two different channels?

    Hi everybody, I have another question! :)
    When processing events in config.xml, using a CQL sentence, Eclipse compiler doesn't allow me to select more than one event.
    I paste here my app.context.xml and my config.xml:
    app.context.xml:
    <wlevs:event-type-repository>
    <wlevs:event-type type-name="HorseEvent">
    <wlevs:class>com.bea.wlevs.event.example.sevenhorses.HorseEvent</wlevs:class>
    </wlevs:event-type>
    <wlevs:event-type type-name="GunmanEvent">
    <wlevs:class>com.bea.wlevs.event.example.sevenhorses.GunmanEvent</wlevs:class>
    </wlevs:event-type>
    </wlevs:event-type-repository>
    <!-- Adapter can be created from a local class, without having to go through a adapter factory -->
    <wlevs:adapter id="sevenhorsesAdapter" class="com.bea.wlevs.adapter.example.sevenhorses.SevenHorsesAdapter" >
    <wlevs:instance-property name="messageHorse" value="I am the horse number: "/>
    <wlevs:instance-property name="messageGunman" value="I am the gunman number: "/>
    </wlevs:adapter>
    <wlevs:channel id="horseInputChannel" event-type="HorseEvent" >
    <wlevs:listener ref="sevenhorsesProcessor"/>
    <wlevs:source ref="sevenhorsesAdapter"/>
    </wlevs:channel>
    <wlevs:channel id="gunmanInputChannel" event-type="GunmanEvent" >
    <wlevs:listener ref="sevenhorsesProcessor"/>
    <wlevs:source ref="sevenhorsesAdapter"/>
    </wlevs:channel>
    <!-- The default processor for OCEP 11.0.0.0 is CQL -->
    <wlevs:processor id="sevenhorsesProcessor" />
    <wlevs:channel id="horseOutputChannel" event-type="HorseEvent" advertise="true">
    <wlevs:listener>
    <bean class="com.bea.wlevs.example.sevenhorses.SevenHorsesBean"/>
    </wlevs:listener>
    <wlevs:source ref="sevenhorsesProcessor"/>
    </wlevs:channel>
    <wlevs:channel id="gunmanOutputChannel" event-type="GunmanEvent" advertise="true">
    <wlevs:listener>
    <bean class="com.bea.wlevs.example.sevenhorses.SevenHorsesBean"/>
    </wlevs:listener>
    <wlevs:source ref="sevenhorsesProcessor"/>
    </wlevs:channel>
    And here you are the two config.xml, I have tried two different ones and none of them runs.
    The first one is:
    <?xml version="1.0" encoding="UTF-8"?>
    <n1:config xmlns:n1="http://www.bea.com/ns/wlevs/config/application">
    <processor>
    <name>sevenhorsesProcessor</name>
    <rules>
    <query id="horsesRule">
    <![CDATA[ select * from horseInputChannel
            ]]>
    </query>
    <query id="gunmansRule">
    <![CDATA[ select * from gunmanInputChannel
            ]]>
    </query>
    </rules>
    </processor>
    </n1:config>
    As you can see, I use here TWO CQL sentences from the two channels that are defined in app.context.xml.
    The other one is:
    <?xml version="1.0" encoding="UTF-8"?>
    <n1:config xmlns:n1="http://www.bea.com/ns/wlevs/config/application">
    <processor>
    <name>sevenhorsesProcessor</name>
    <rules>
    <query id="horsesRule">
    <![CDATA[ select * from horseInputChannel, gunmanInputChannel
            ]]>
    </query>
    </rules>
    </processor>
    </n1:config>
    I use here only ONE CQL sentence in which I try to get events from the two channels that are defined.
    None of them works.
    Can anybody help me?
    Thank you!

    Hi! Here you are the files you required:
    SevenHorses.context.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:osgi="http://www.springframework.org/schema/osgi"
    xmlns:wlevs="http://www.bea.com/ns/wlevs/spring"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/osgi
    http://www.springframework.org/schema/osgi/spring-osgi.xsd
    http://www.bea.com/ns/wlevs/spring
    http://www.bea.com/ns/wlevs/spring/spring-wlevs-v11_1_1_3.xsd">
    <wlevs:event-type-repository>
    <wlevs:event-type type-name="HorseEvent">
    <wlevs:class>com.bea.wlevs.event.example.sevenhorses.HorseEvent</wlevs:class>
    <wlevs:properties>
    <wlevs:property name="messageHorse" type="java.lang.String"></wlevs:property>
    </wlevs:properties>
    </wlevs:event-type>
    <wlevs:event-type type-name="GunmanEvent">
    <wlevs:class>com.bea.wlevs.event.example.sevenhorses.GunmanEvent</wlevs:class>
    <wlevs:properties>
    <wlevs:property name="messageGunman" type="java.lang.String"></wlevs:property>
    </wlevs:properties>
    </wlevs:event-type>
    </wlevs:event-type-repository>
    <!-- Adapter can be created from a local class, without having to go through a adapter factory -->
    <wlevs:adapter id="sevenhorsesAdapter" class="com.bea.wlevs.adapter.example.sevenhorses.SevenHorsesAdapter" >
    <wlevs:instance-property name="messageHorse" value="I am the horse number: "/>
    <wlevs:instance-property name="messageGunman" value="I am the gunman number: "/>
    </wlevs:adapter>
    <wlevs:channel id="horsesInputChannel" event-type="HorseEvent">
    <wlevs:listener ref="sevenhorsesProcessor"/>
    <wlevs:source ref="sevenhorsesAdapter"/>
    </wlevs:channel>
    <wlevs:channel id="horsesInputChannel2" event-type="HorseEvent">
    <wlevs:listener ref="sevenhorsesProcessor"/>
    <wlevs:source ref="sevenhorsesAdapter"/>
    </wlevs:channel>
    <!-- The default processor for OCEP 11.0.0.0 is CQL -->
    <wlevs:processor id="sevenhorsesProcessor" />
    <wlevs:channel id="horseOutputChannel" event-type="HorseEvent" advertise="true">
    <wlevs:listener>
    <bean class="com.bea.wlevs.example.sevenhorses.SevenHorsesBean"/>
    </wlevs:listener>
    <wlevs:source ref="sevenhorsesProcessor"/>
    </wlevs:channel>
    </beans>
    config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <n1:config xmlns:n1="http://www.bea.com/ns/wlevs/config/application">
    <processor>
    <name>sevenhorsesProcessor</name>
    <rules>
    <query id="horsesRule">
    <![CDATA[ select message from horsesInputChannel2 where message like "(gunman)"
            ]]>
    </query>
    </rules>
    </processor>
    </n1:config>
    Thanks!

  • Can you create 1 event in two different calendars?

    Hi All,
    I want to create an event and have it go to two different calendars all in iCal. Is this possible? Thanks in advance for your help.

    In  SL you can select the event, go to edit > copy then click on another calendar date and do an edit >paste and click on a third calendar and paste it again if you wish.

  • How Do you pass events between two Different VIs

    Hi everyone
    I have created this event driven VI....  I now want to drive the events from another VI that doesn't generate events but is static or just plain runs
    Thank
    dale

    Hi Megan
    I got your code snippet and I see how you do that.  I am new at Lab view and probably am not really getting into the overall architecture if you will.  So I have developed this event driven interface tool box that have within the events a section of code.   The Tool box is a standalone.  I want to use it  from a calling SubVI - as you have shown in your first example without making the sections within the event more Sub vi's.  Think of it as using the events within the toolbox.   The toolbox (SubVi) by itself stays within a loop until the user presses a finish button during standalone.   When the toolbox is called by another VI it does not get stuck!  It simply returns.  I am somewhat spoiled by using VB or C++ just to call the section that gets executed within the class or Sub.  Furthermore when I try to make the pieces within the events Sub Vi's I get a large number of inputs and outputs and a bunch of warnings "insane wires" - These are caused by the properties nodes needing to expand once they are placed into the sub vi.
    To further complicate things when I use your first example ... I don't register changes only static conditions when only going throught the subV i once.
    Sorry for being such a pain
    Dale Pittock
    Agilent

  • How to create an infocube with a different time reference characteristics

    I need to create a similiar cube with a different time characteristic.
    When I copy from inventory cube, the time reference characteristic is 0CALDAY. I tried to change it but not possible,
    How then can I create a similiar cube with 0CALMONTH as the reference time characteristics?
    Thanks
    bye

    Hi Colin,
    If you want your time reference characteristic to be 0CALMONTH, then you must ensure that all other time characteristics in the cube can be derived from this characteristic. the infocube by default chooses the most refined time charactersistics as its time reference characteristic.
    That is in the cube you could then have characteristics lik 0CALQUARTER, 0CALYEAR...You cannot have 0CALWEEK or 0CALDAY since these cannot be defined from a value in 0CALMONTH.
    Please check below the SAP help for your reference.
    http://help.sap.com/saphelp_nw70/helpdata/EN/80/1a62ebe07211d2acb80000e829fbfe/frameset.htm
    Hope it helps,
    Best regards,
    Sunmit.

  • View events in a different time zone?!?

    I see there are older and closed discussions on this questions, long before before Lion and iCloud came into being.
    I live in Greece which is European Central Time and this is the time zone my iCal is normally set to, with time zone support turned on.
    I was in the US Eastern Seaboard for 4 weeks this past Summer and all my appointments entered while there were entered in EST - or DST, whatever.
    According to the iCal Help Menu
         "If you create any new events while the main calendar view is shifted to another time zone, the new events take the time zone of the current view. When you switch back to your original time zone, the events created in the shifted time zone retain the shifted time zone setting."
    Well, they don't: they appear in whatever time zone the calendar is set to - the correct zone can only be seen if you double click on the event.
    Has anyone found a way around this?
    And how is one supposed to handle the departure and arrival times for flightsthat croos over time zones?
    Sometimes Apple doesn't figure on people encountering these problems: as someone said in an earlier post: do they think they whold wolrd lives on Cupertino time?

    I see there are older and closed discussions on this questions, long before before Lion and iCloud came into being.
    I live in Greece which is European Central Time and this is the time zone my iCal is normally set to, with time zone support turned on.
    I was in the US Eastern Seaboard for 4 weeks this past Summer and all my appointments entered while there were entered in EST - or DST, whatever.
    According to the iCal Help Menu
         "If you create any new events while the main calendar view is shifted to another time zone, the new events take the time zone of the current view. When you switch back to your original time zone, the events created in the shifted time zone retain the shifted time zone setting."
    Well, they don't: they appear in whatever time zone the calendar is set to - the correct zone can only be seen if you double click on the event.
    Has anyone found a way around this?
    And how is one supposed to handle the departure and arrival times for flightsthat croos over time zones?
    Sometimes Apple doesn't figure on people encountering these problems: as someone said in an earlier post: do they think they whold wolrd lives on Cupertino time?

  • How to create and switch between two different Mail accounts.

    Dear Apple,
    My wife and I share the same computer and the same single user account.
    Sharing contacts, calendar, music and pictures in fine, but we would like two separate Mail accounts.
    Is there a way to setup two Mail accounts with two separate mailboxes and switch between them manually?
    Regards,
    Stephan

    Ok, I'm confused.  If you have 2 accounts set up -- for example, "[email protected]" and "[email protected]" -- then you go to the "Accounts" tab on Mail->Preferences, and set them up, giving each one a name which distinguishes it from the other.  Maybe "AOL" and "gmail" or "foo" and "bar" or your first names, whatever.
    Then, if you select the line that says "Inbox" you will see mail from both accounts interleaved together.  If you fold down the triangle thingy next to the word "Inbox" then two lines will appear, one for each account.  If you click on one of those lines then your display will only show the mail from that mailbox.

  • How to set a meeting at a different time zone

    I have read several letters of users. all try to "trick" the time zones or the meeting times.
    This is something to be taken care by Apple.
    I live in Israel. When I set a meeting in NYC, I do not want to think on time zones.
    I set the meeting to 09:00 and expect to get buzzed at 09:00, in NYC. No matter the time zone I am in.
    I want the time zone be updated automatically, as I use the clock of the iPhone for checking the time. I leave my hand watch with the Israeli time zone.
    The change of the time in the iPhone, should NOT effect the calander.
    I expect that the time zone will be changed automatically and the iPhone to show me the local time, e.g. NYC.
    I expect my schedule to remain 09:00. It has nothing to do with the time zones.
    Same on the way back to Israel.
    I expect Apple to take care about this issue.
    Thanks in advance.

    gabiprezman wrote:
    Thanks Tgara. Auto Time Zones is set ON.
    It does not solve this issue.
    Gabi,
    There is another setting you might try:  Settings, General, Mail,Contacts,Calendars.... scroll down to Time Zone Support, tap it and turn on Time Zone Support.
    Here's the article.  Hope it helps.
    http://support.apple.com/kb/HT4576

  • How do I create a bookmark in two different pdfs?

    How do I create a bookmark in two different pdfs

    Provided you only want to go one way, you can change a bookmark to fire the "open a file" action. I 'm not sure you entirely understand the terminology though - bookmarks in a PDF file appear on the left side panel and usually take you to a defined page in the current document. They are not part of the page and so don't change as you move through the file. Links are regions on a particular page that act as click points, and can do pretty much anything (move to a different page, open a file, etc.). Although you can use bookmarks to do something other than switch pages, it's very rare to do so and won't necessarily be supported by third-party software (or obvious to your users).
    If you want to create a bookmark to another document, and both files are going to be distributed together (in the same folder) then you can create a new bookmark (doesn't matter where in the source file you are..) then select it and from the options menu choose Properties. Switch to the Actions tab and delete the "go to a page" entry, then from the dropdown list choose "Open a file" and browse to your destination document.
    If your destination file is an attachment to your source file, you should use the "Go to page view" action, and when the tiny dialog box appears you should open the attachment, then click the OK button.

  • How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?, How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?

    How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?, How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?

    Hi Libby,
    Select all three columns of data. All three must be 'regular' columns, not Header columns, and the X values must be in the leftmost column.
    Click the Charts button and choose the Scatter chart.
    The resulting chart will initially show only the first and second columns of data, and the selection will have been reduced to show this.
    Click the gear icon at the top left of the selection and choose Share X Values.
    You should see a result similar to this:
    Notes:
    The values on my sample table contain a random element, so they have changed from thhe first image to the second.
    The chart is as created by Numbers, with two edits:
    Data points have been connected with curves, using the Chart nspector.
    The curves were selected and their stroke increased to 2pts, using the stroke formating button in the format bar.
    Regards,
    Barry

  • How can I send email using two different email address that both link back to my one exchange account on my Ipad mini

    How can I send email using two different email address that both link back to my one exchange account on my Ipad mini? 
    On my PC I simply have a master return email address and use a POP for the secondary address.  Both are through the one exchange account without a problem.  I need to be able to do the same on my Ipad.

    Ah, I should have made that clear.  My domain didn't come from google.  It was purchased at and is hosted at dreamhost, but I haven't used their email servers in years - I just route everything through gmail.  I actually have a bunch of domains (with websites).
    Gmail has an option that lets someone with custom domains send (and receive) email through gmail using the custom domain once Google confirms proper ownership of the domain (to prevent spammers and such).  Gmail has a setting for "send email as" which allows gmail to be sent using a custom domain as the sender.  I'm pretty sure Apple's old mobileme had this feature too, but I didn't use it.

  • How to create the event in the report for jobs scheduling.

    Hi Experts,
    i have a requirement like as follows:
    The following triggers for Batch Jobs in the SCM system will be created.i.     
    Background Processing Event = u201CAPO Background Processing Eventu201D. After sending the Event, write a Log Report line u201CEvent u201CAPO Background Processing Eventu201D sentu201D.
    Could you please suggest me how we create the Event or which transaction ?
    Please give me a steps for creating events so that based on these events we use
    CALL METHOD cl_batch_event=>raise
        EXPORTING
          i_eventid                      = p_bpeve
          i_server                       = p_server
          i_ignore_incorrect_server      = p_ignore
        EXCEPTIONS
          excpt_raise_failed             = 1
          excpt_server_accepts_no_events = 2
          excpt_raise_forbidden          = 3
          excpt_unknown_event            = 4
          excpt_no_authority             = 5
          OTHERS                         = 6.
    Right now i received message "APO Background Processing Event" is doesn't exists.
    Thanks in Advance.
    Puneet.

    Hi Puneet,
    Goto transaction SM62 and in there to BckProcEvents tab. There you can create the events.
    You just need to specify the name and Description of an event.
    Hope this serves your purpose.
    Thanks

  • How can I transfer songs from two different itunes?

    I want to transfer songs from my brother's itunes library to my shuffle, but when I plug it in his computer, a message saying that his library is not linked to my library (or something to that extent) and whether I would like to replace the songs. If I click yes, all my existing songs are replaced with HIS songs. If I click on NO, the Shuffle icon does not appear at all and I cannot transfer any of his songs to my shuffle. How can I transfer songs from two different computers into my shuffle without replacing any of my existing music?
    Shuffle   Windows XP  
      Windows XP  

    You'll have to setup your iPod to manual instead of automatic update (I'm not sure, though, if it works with the Shuffle as well).
    Alexander.

Maybe you are looking for

  • Maximum size of a DirectoryString attribute

    Hello, I am looking for the maximum size of any attribute which type is DirectoryString. I did not find the piece of information in the documentation. Thank you.

  • Error ITMS 9000 Fragment Identifier

    Hello, I was trying to add the required sample to my iBook file and reupload it to the itunes store, however, after add my sample, I tried to redeliver it and received an error. ITMS-9000: "OPS/content1.xhtml(3): 'anchor-3': fragment identifier is no

  • Dreamweaver/Phonegap

    How do you download and install the QR scanner code created by phonegap when you use dreamweaver to build your phone app?

  • Activating iPhone

    I have a question about activation. If I activate it at the AT&T store can I sync on my own computer? Will it work on my own MacBook? Can someone explain what happens if I activate it there? Thanks in advance.

  • CallManager 4.1 to 6.1 upgrade data import

    New to Unified Communication I've been assigned to upgrade our callmanager from 4.1 to 6.1. Is there a way that I can import the phones and data settings while I upgrade so I dont have to import phones and create partitions, search spaces, and all th