ICal import not importing all dates...

I am attempting to create a calendar in iPhoto 08 using the iCal import option. For some reason, not all the records from iCal are getting imported. I selected all the iCal calendars in the "Settings" section but still cannot get them all to import.
Any suggestions?
Thanks

I figured it out

Similar Messages

  • Import all data using maxl

    Hi
    we would like to export all data from BSO cube my maxl script,
    as the db is bigger then 2gb, essbase split the file to 2gb each, and we’ll get more then
    one file to import.
    How can I have maxl script which know to import all data files on the specific folder without indicate the names of the data files created...
    Thanks in advance,
    Messi

    This post may be helpful as it covers the same question - Re: Export Lev 0 goes into multiple files....maxl??
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Why the 2LIS_08TRTK extractor can not get  all data

    Hello, BW Gurus.
    Why the 2LIS_08TRTK and 2LIS_08TRTLP extractors can not get all data. I had used the RSA3 and get 10 registers, when a check at the VTTK table I had 20 registers, I didnt use filters at RSA3, could you help to know what happen o correct it.

    Is it because
    <i>
    Shipment documents and their dependent objects (shipment stages as well as shipment items [deliveries in the shipment]) are only extracted into BW when the Shipment completion status has been set.
    This is necessary because the numeric values that result from the delivery documents are only established at the time. If the data were already stored earlier in BW, the shipment data would not be updated if the delivery notes were changed in BW.
    </i>
    - from oss note 573470.

  • Ical not storing all data & cant initialize lists

    okay so im trying to store all ical data in seperate lists for hours months years and the actual event ect....it worked fine for a while but now its not storing all the events....and then when it did it would carry over from one run to another. I figured out that was probably because they were properties but when i make the lists global i get a "this variable is not initialized" problem. and even if i somehow managed to fix that its still not reading in all the data. ive been at this for 2 hours and cant see the problem. please help:
    variable defs:
    (*System Variables*)
    global running_processes
    global _weekday
    global _date
    global _month
    global _year
    global _hours
    global _minutes
    global _seconds
    global time_ofday
    (*iCal Variables*)
    global iCal_Open
    global iCal_Run
    global iCal_Calendars
    global iCal_Events
    global icaleventsstore
    global icaleventslast
    global iCalEvents_StartMonth
    global iCalEvents_StartDate
    global iCalEvents_Startyear
    global iCalEvents_Starthours
    global iCalEvents_StartMinutes
    global iCalEvents_EndMonth
    global iCalEvents_EndDate
    global iCalEvents_Endyear
    global iCalEvents_Endhours
    global iCalEvents_EndMinutes
    global iCalEventsStart
    global iCalEventsEnd
    code to split up dates and date:
    on Ref_Events()
    proc()
    if running_processes contains "iCal" then
    (*if iCal is open do the code as normal*)
    set iCal_Run to 1
    set iCal_Open to 1
    tell application "iCal"
    set iCalEventsStart to the start date of every event in every calendar
    set iCalEventsEnd to the end date of every event in every calendar
    set iCal_Events to the summary of every event in every calendar
    set x to 1 --holds calendar to be used
    set y to 1 --holds event to be used
    repeat while x is less than or equal to the number of items in iCal_Events
    repeat while y is less than or equal to the number of items in item x of iCal_Events
    get item y in item x in iCalEventsStart as string
    set temp_date to the result
    --start dates
    set iCalEvents_StartMonth to iCalEvents_StartMonth & the second word of temp_date
    set iCalEvents_StartDate to iCalEvents_StartDate & the third word of temp_date
    set iCalEvents_Startyear to iCalEvents_Startyear & the fourth word of temp_date
    set iCalEvents_Starthours to iCalEvents_Starthours & the fifth word of temp_date
    set iCalEvents_StartMinutes to iCalEvents_StartMinutes & the sixth word of temp_date
    --end dates
    get item y in item x in iCalEventsEnd as string
    set temp_date to the result
    set iCalEvents_EndMonth to iCalEvents_EndMonth & the second word of temp_date
    set iCalEvents_EndDate to iCalEvents_EndDate & the third word of temp_date
    set iCalEvents_Endyear to iCalEvents_Endyear & the fourth word of temp_date
    set iCalEvents_Endhours to iCalEvents_Endhours & the fifth word of temp_date
    set iCalEvents_EndMinutes to iCalEvents_EndMinutes & the sixth word of temp_date
    --event description
    get item y in item x in iCal_Events as string
    set temp_event to the result as string
    set icaleventsstore to icaleventsstore & temp_event
    set y to y + 1
    end repeat
    set x to x + 1
    end repeat
    end tell
    else
    (*if iCal is not open do the code then close it*)
    if iCal_Run is 0 then
    set iCal_Run to 1
    tell application "iCal"
    set iCalEventsStart to the start date of every event in every calendar
    set iCalEventsEnd to the end date of every event in every calendar
    set x to 1 --holds calendar to be used
    set y to 1 --holds event to be used
    repeat while x is less than or equal to the number of items in iCalEventsStart
    repeat while y is less than or equal to the number of items in item x of iCalEventsStart
    get item y in item x in iCalEventsStart as string
    set temp_date to the result
    --start dates
    set iCalEvents_StartMonth to iCalEvents_StartMonth & the second word of temp_date
    set iCalEvents_StartDate to iCalEvents_StartDate & the third word of temp_date
    set iCalEvents_Startyear to iCalEvents_Startyear & the fourth word of temp_date
    set iCalEvents_Starthours to iCalEvents_Starthours & the fifth word of temp_date
    set iCalEvents_StartMinutes to iCalEvents_StartMinutes & the sixth word of temp_date
    --end dates
    get item y in item x in iCalEventsEnd as string
    set temp_date to the result
    set iCalEvents_EndMonth to iCalEvents_EndMonth & the second word of temp_date
    set iCalEvents_EndDate to iCalEvents_EndDate & the third word of temp_date
    set iCalEvents_Endyear to iCalEvents_Endyear & the fourth word of temp_date
    set iCalEvents_Endhours to iCalEvents_Endhours & the fifth word of temp_date
    set iCalEvents_EndMinutes to iCalEvents_EndMinutes & the sixth word of temp_date
    --event description
    get item y in item x in iCal_Events as string
    set temp_event to the result as string
    set icaleventsstore to icaleventsstore & temp_event
    set y to y + 1
    end repeat
    set x to x + 1
    end repeat
    end tell
    quit application "iCal"
    end if
    end if
    if icaleventsstore is not icaleventslast then
    say "new events stored in I Cal. Would you Like to View a List of all events?"
    display dialog "View List of Events?" buttons {"Yes", "No"} default button 2
    if the button returned of the result is "Yes" then
    choose from list icaleventsstore with prompt "All the Current Events"
    else
    -- action for 2nd button goes here
    end if
    set icaleventslast to icaleventsstore
    end if
    end Ref_Events

    You need to be careful when using conditional statements to set global variables (the global declaration does not set any values). I can't tell from the just the one handler you posted, but an example would be the iCal_Run variable - unless it is declared somewhere else, it won't have a value if there isn't an iCal process.

  • Firefox won't start after google chrome imported all data(bookmarks,passwords,history,etc) from firefox

    firefox won't start after i import the data to google chrome.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    See also:
    *http://kb.mozillazine.org/Browser_will_not_start_up

  • 2lis_11_VAITM not inserting all data in ODS

    Hello Gurus.
    I'm using extractor 2lis_11_VAITM, when I test the extractor in RSA3, it is bringing me all registers of table VBAP, but when I load this extractor into an ODS in BW, It is not inserting all registers into the cube, some "return orders" are missing, how can i solved this problem ????   I'm using in ODS key Doc number and position.
    THANKS IN ADVANCED.

    Hi Sudheer, ther is no selections during data load, and also ther isn't any routine(either in transfer or update rules).  It's supposed that all registers have to be loaded to the ODS no ?? because i'm using key Doc number and positions, so I want all documents with all positions to be loaded, but this is not happening, there are missing the "'return orders'".
    Any other idea of why this is happening ??

  • FDM export to HFM - 2nd export did not clear all data from 1st export?

    Has anyone experienced exporting a replacement FDM file to HFM where the 2nd file did not contain an account that was present in the original file and that account/value in the 1st file then remained in the HFM trial balance and caused it to be out of balance? Does the replace export option not clear all the prior file data? The only unusual part of it might be that the problem account was derived using logic group script? Thanks.

    Thanks Hensen - Sure, it was easy enough to fix once I deduced what the problem was - although my solution was just to use the data clear function and reload. The real question is how to prevent it from happening again and it sounds like I can't do much about it - other than trying to train the users to watch out for do-over files that have fewer accounts than the original load?? Am I wrong to think that HFM should try to fully clear all previous data from a load file if there is a replacement or at least try to validate whether or not all prior accounts have been repopulated?? There's plenty of good validation in the validation step of FDM. Why not during the export step? If this makes sense, I'll put in another "enhancement request" to support.

  • Help:  Not getting all data from text data type

    Hi there
    I have a stored procedure that returns a couple of fields and one of the fields is of datatype TEXT. In my ResultSet, I do not get all the data back that is stored in the TEXT datatype. I have say about 600 charactors in this field, but only 30 charactors are returned. Is there a reason why this is happening and how can I fix it?
    Please help?
    Thanks

    I set that field to have a normal string of about 50 charactors. Namely: "this is a note that is about 49 charactosrs long." (exclude the quotes). And I still got 30 charactors back only.
    I set a shorter text value of 21 charactors and that returned all 21 charactors.
    The text that is usually in this field is:
    "URL=SubsidiaryNarrative.html�BABY_CARE_PRODUCTS=false�AIDS_FOR_PHYSICALLY_DISABLED=false�SPORT_SUPPLEMENTS=true�NATURAL_REMEDIES=false�COSMETICS_FRAGRANCE=false�WOMANS_HEALTH=false�ADDITIONAL_CARDS=No�EXERCISE_ROUTINE=Yes�NUMBER_OF_CHILDREN=0"
    And I got out "URL=SubsidiaryNarrative.html�B"

  • ICal does not search all-day "detached events"

    I've encountered a very specific, repeatable search problem:
    (1) create an all-day repeating event (e.g., repeat daily for five days);
    (2) add some text to the Notes field, and apply to All occurrences;
    (3) search Event and To-do Items for some text in that Note, and all 5 instances of the all-day event are properly found;
    (4) open a single instance of the all-day event, and replace the Note with different text;
    (5) save the change for "Only this event" (this creates what used to be called a "detached event" in iCal 2.0);
    (6) search for the new note text -- iCal doesn't find it.
    This is NOT a Spotlight problem. I can search for the same text in Spotlight, and it returns the correct iCal events. Bento also has no trouble finding those events with the note text.
    This problem is a real nuisance for me, because one of the ways I use iCal is to have a Calendar called "Notes" with a repeating all-day event called "Daily Notes", which I use as a poor-man's journal. Unfortunately, those notes cannot be searched within iCal.
    Can anyone else confirm this behavior?

    Jamaicangal,
    Do you have any duplicate fonts? If so, try resolving duplicates.
    ;~)

  • St03N not collecting all data

    HI
    does anyone know why would st03n not collect all proper data, we found out recently that a user had scheduled a program as a background job to run and it ran successfully but when we look on that date we don't see that it had run and even that user doesn't come out in the history
    any ideas why?
    regards

    Sorry Sujit that I wasn't clear
    the job i was referring to was a z program that was run be a user in the background.
    that is how we started knowing that there were missing data in st03n
    we were trying to see how many time that program ran and who ran it
    so we went to see in st03n but we found out that there was no history for that program in there or any history for the user who ran the z program in the background.
    there is no connection to SAP_COLLECTOR_FOR_PERFMONITOR background job. this job is running successful in our system and all other data is being collected
    so the data that was missing was on the 14th of march and then we found out that there is no entry of any sort in st03n for 15th of march, but we have data for 16th of march.
    so now we want to know what happened
    i hope this is clear now
    regards

  • Unwrap not unwraping all  data sent from server

    java client server NIO ssl
    At server end send about 50 packets are written using this method:
    sendPacket(String packet)
    writeBuffer = charSet.encode(packet);
    c.ssl.outNetBB.clear();
    c.ssl.engine.wrap(writeBuffer, c.ssl.outNetBB);
    c.ssl.outNetBB.flip();
    //write message to socket channel
    while (c.ssl.outNetBB.hasRemaining())
    socketChannel.write(c.ssl.outNetBB);
    At the client end I read all these packets:
    inNetBB.clear();
    int bytesread = socketChannel.read(inNetBB);
    inNetBB.flip();
    requestBB.clear();
    res = engine.unwrap(inNetBB, requestBB);
    It seems like all the 50 packets are read into inNetBB 6000 bytes
    But the unwrap only consumes 70 bytes and produces 100
    This first 100 bytes is unencrypted correctly and corresponds exactly to one write of the 50 from the server. I dont know why.
    Why am I getting only the first packet of the 50 sent??
    [  Ive tried : while inNtBB.hasRemaining for repeated unwraps
    but only the first packet is output still ]
    TIA
    pbutler

    If I'm reading this right, you're writing (wrapping) about 50 separate SSL packets, and then unwrapping just one.
    Recall:
    The SSLEngine produces/consumes complete SSL/TLS packets only, and
    does not store application data internally between calls to wrap()/unwrap().So it looks to me like you need to keep unwrapping the rest of your 5930 bytes to get the remainder of the application data.
    [ Ive tried : while inNtBB.hasRemaining for repeated unwraps
    but only the first packet is output still ]Are you inadvertantly clearing the inNtBB before you call your additional unwraps?
    If you have lots of small packets, you might want to consider buffering them up and wrapping them to the SSLEngine/SocketChannel all at once. You'll pay less in overhead.

  • Emails do not download all data

    Emails do not download all data

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • VO not retrive all data

    Hi
    I create view object for entity, the query of view object not return all record from database. Is there any option for fitch all record from database?

    JDev version?
    Technology you use?
    Where do you look for the all(?) rows?
    If you are using ADF there is a fetch size defined by the iterator (normally 25) which limits the number of rows returned for one round trip. To see more records you have to scroll.
    Timo

  • Got new MacBook, successfully imported all data, but it wont see my iPod?

    I used the step-by-step transfer the MacBook started when I first booted up to transfer evrything from my old G4 powerbook to my super cool new MacBook, was thrilled that everything went smoothly and finished in 8.5 hours! but while the new macbook will charge my ipod, itunes does not recognize it as an ipod...I authorized the macbook to use the music store, and all my music plays, but it will not update the ipod...what am I missing? many thanks!

    Hi Olive-oil,
    I too recently upgraded and when I tried connecting the iPod had the same issue. I don't know if you're doing this, but I tried using the firewire cable that came with my iPod mini and it wouldn't let me put anything onto the iPod. If you are doing this, just use the USB cable instead, and see if that works.
    Hope that helps.

  • Not receiving all data while running a script

    Hello, I have been working on this script the last few days now and get farther and farther on it. Yesterday I finally thought I had it all complete and went to implement on a server. When I finally moved it over and did a test run the only data I was
    sent was two things Success and seconds. I didn't actually get the date or anything else. When I says seconds it just said that but didn't actually get me any data. When I ran this on me machine before I moved it over it was working. When I moved it back to
    my computer and tried again I am no longer getting the same results. For some reason it worked for awhile but no it isn't.
    $cred = Import-Clixml -Path C:\users\passworddoc.xml
    $url = "siteURL"
    $response=Invoke-WebRequest $url -Credential $cred
    if ($response.statuscode -eq 200) {
    "Success`t`t" + $startTime.DateTime + "`t`t" + ($endTime - $startTime).TotalSeconds + " seconds" | Out-File "C:\Users\T&E.csv" -Append
    } else {
    "Fail`t`t" + $startTime.DateTime + "`t`t" + ($endTime - $startTime).TotalSeconds + " seconds" | Out-File "C:\Users\T&E.csv" -Append

    You apparently had something setting $startime and $endtime when you were testing.
    Whatever it was doesn't appear to be part of that script, so those values are going to be null.  
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

Maybe you are looking for