Ha events = false

What are the implications or potential hazards of turning off ha events?
We are a 6 node cluster with load balancing=true, but our system locks up due to a high number of waits on library cache pins. The waits are from the EMN0 process (background process for advance queueing which is used by high availability). Typically we kill the background process and the system frees up. But, we don't want to make this a practice.
We are considering turning off high availability for our connection pools, while support works on a bug fix. Any reason not to?
SR#5703080.993
Bug#4028364

Alex,
Thanks for the prompt reply.
Not having Maximum times in ODP will make things complicated and a myriad of race conditions can occur.
There is an involved example of a Transaction Timeout Cancel that I could implements with a an application Maximum timer on page 5-27 of the Oracle Data Provider for .NET Developer's Guide and it is not easy to implement
However, it is not described anywhere on how to implement a Maximum Connection Timeout.
In the example below from the docs the application will block at the Open() call:
// Connect
string constr = "User Id=scott;Password=tiger;Data Source=oracle";
OracleConnection con = new OracleConnection(constr);
con.Open();
So do we do the following:
// Connect
string constr = "User Id=scott;Password=tiger;Data Source=oracle";
OracleConnection con = new OracleConnection(constr);
*//Set_Application Timer*
con.Open();
OnApplicationTimer()
con.Close()
//Do application timeout processing
What will the Close() do for us here? What will happen if the Connection open is still in progress when we try to close it?
Should we forget attempting to Close() and wait until Oracle decides to return in the first method as shown below?
OnApplicationTimer()
//Do application timeout processing but don't explicitly send Close()
// Connect
string constr = "User Id=scott;Password=tiger;Data Source=oracle";
OracleConnection con = new OracleConnection(constr);
*//Set_Application Timer*
con.Open();
//Eventually it will timeout. If succesful, clo0se immediatly since it is too lpate.
Nathan

Similar Messages

  • Trouble with a script that deletes event in iCal

    Used this script over the summer and it worked fine. Can't figure out the issue now, but it isn't working. Here is a few lines of the output I get and then the error I get is at the bottom. I'll post the full script at the bottom of this posting. Error # -1728??? File doesn;t exist?
    Thanks,
    dan
    get summary of item 2 of every event of calendar "Untitled"
    --> "Enviro C Lab Period 3-4"
    get summary of item 2 of every event of calendar "Untitled"
    --> "Enviro C Lab Period 3-4"
    get description of item 2 of every event of calendar "Untitled"
    --> missing value
    get status of item 2 of every event of calendar "Untitled"
    --> none
    get start date of item 2 of every event of calendar "Untitled"
    --> date "Tuesday, April 26, 2011 10:30:00 AM"
    get summary of item 2 of every event of calendar "Untitled"
    --> "Enviro C Lab Period 3-4"
    get end date of item 2 of every event of calendar "Untitled"
    --> date "Tuesday, April 26, 2011 11:55:00 AM"
    get allday event of item 2 of every event of calendar "Untitled"
    --> false
    make new event at end of every event of calendar "Untitled" with properties {status:none, start date:date "Tuesday, April 26, 2011 10:30:00 AM", summary:"Enviro C Lab Period 3-4", end date:date "Tuesday, April 26, 2011 12:25:00 PM", allday event:false}
    --> event id "AF27EFB6-3949-4977-A153-1EFE31FD8206" of calendar id "0EDA6DFD-52AD-4E7F-BC81-984CFF7D3F39"
    delete item 2 of every event of calendar "Untitled"
    --> error number -1728 from item 2 of every event of calendar "Untitled"
    Result:
    error "iCal got an error: Can’t get item 2 of every event of calendar \"Untitled\"." number -1728 from item 2 of every event of calendar "Untitled"
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;"
    title="this text can be pasted into a HTML editor">
    tell application "iCal"
    repeat with theEvent in (events of calendar "Untitled")
    set control to {}
    set control to summary of theEvent
    set AppleScript's text item delimiters to space
    set theSummary to summary of theEvent
    set textSummary to text items of theSummary
    if the third item of textSummary is "Lab" then
    if the fifth item of textSummary is "5-6" then
    get theEvent
    set theDescription to description of theEvent
    set theStatus to status of theEvent
    set theStartDate to (start date of theEvent) - 0.5 * hours
    set theSummary to summary of theEvent
    set theEndDate to end date of theEvent
    set theAllDay to allday event of theEvent
    set newEvent to (make new event at end of events of calendar "Untitled" with properties {status:theStatus, start date:theStartDate, summary:theSummary, end date:theEndDate, allday event:theAllDay})
    set oldEvent to ""
    set theEvent to oldEvent
    get theEvent
    delete theEvent
    end if
    if the fifth item of textSummary is "3-4" then
    get theEvent
    set theDescription to description of theEvent
    set theStatus to status of theEvent
    set theStartDate to start date of theEvent
    set theSummary to summary of theEvent
    set theEndDate to (end date of theEvent) + 0.5 * hours
    set theAllDay to allday event of theEvent
    set newEvent to (make new event at end of events of calendar "Untitled" with properties {status:theStatus, start date:theStartDate, summary:theSummary, end date:theEndDate, allday event:theAllDay})
    delete theEvent
    end if
    end if
    end repeat
    end tell
    </pre>

    Hello
    The posted event log indicates some inconsistent behaviour of iCal in referencing item 2 of every event. I.e., it could access it first and failed to do so after a new event is created. Scent of bug here. Or possibly inserting ugly small delay after event creation might let the script delete the newly created event...
    Anyway, the 'by index' reference form of object must be used very carefully when object can be deleted or added dynamically.
    Also I wish to add that it is not recommended to use an object specifier, that returns list of objects, as the base list for repeat statement, such as :
    --CODE1
    -- # not recommended
    repeat with theEvent of (events of calendar "Untitled")
    -- omitted
    end repeat
    --END OF CODE1
    Instead, you'd better get the list first and use it, such as :
    --CODE2
    -- # recommended
    repeat with theEvent of (get events of calendar "Untitled")
    -- omitted
    end repeat
    --END OF CODE2
    The reason is as follows.
    In CODE1, the iterator is assigned as item k of events of calendar "Untitled", where k iterates from 1 to count of events of calendar "Untitled" at the time of loop entrance. The problem is that this list of events is dynamic list which may change when event is deleted or added, and consequently item k as iterator may no longer refer to the item k of the original collection of events.
    In CODE2, the iterator is assigned as item k of a static list which is obtained by statement 'get events of calendar "Untitled" at the time of loop entrance. If the event object is returned in 'by ID' reference form (or any form other than that depends upon index in the container), item k as iterator is guaranteed to refer to the item k of the original collection of events whether or not collection changes.
    Thus you may try something like this :
    --SCRIPT
    (* not tested *)
    tell application "iCal"
    tell calendar "Untitled"
    repeat with theEvent in (get its events) -- # get the objects list
    set theEvent to theEvent's contents -- # dereference each once
    set AppleScript's text item delimiters to {space}
    set textSummary to text items of summary of theEvent
    set AppleScript's text item delimiters to {""} -- # reset astid
    if item 3 of textSummary is "Lab" then
    if item 5 of textSummary is "5-6" then
    tell theEvent
    set prop to {¬
    start date:(its start date) - 0.5 * hours, ¬
    end date:its end date, ¬
    status:its status, ¬
    summary:its summary, ¬
    allday event:its allday event}
    end tell
    make new event at end of events with properties prop
    delete theEvent
    end if
    if item 5 of textSummary is "3-4" then
    tell theEvent
    set prop to {¬
    start date:its start date, ¬
    end date:(its end date) + 0.5 * hours, ¬
    status:its status, ¬
    summary:its summary, ¬
    allday event:its allday event}
    end tell
    make new event at end of events with properties prop
    delete theEvent
    end if
    end if
    end repeat
    end tell
    end tell
    --END OF SCRIPT
    Hope this may help,
    H

  • Bubble Event Disadvantages in FormDataEvent

    Good day,
    Recently I've been experiencing some trouble using the bubbleevent = false in the formdataevent.
    Correct me if I'm wrong, but what I have appreciated is that if the Addon hangs while it's executing the formdataevent, the database can suffer some damages.
    I've recently had a problem while developing an Addon where all I do is validate if a user introduced some userfields in the Incoming Payments Form. If the validation is not met, then i turn the bubble event = false in the formdataevent. What happened was that in the precise moment that i was debugging my application, I stopped the addon from running and the payment was added without any problem. But from there on, each time I try to cancel an incoming payment, i get the following error: [Incoming Payment - Cancelled] 'Payment field cannot be updated (ODBC 1029)' [Message 131 - 183]. My guess is that for an unknown reason, the database was corrupted.
    Many of you could ask Why I don't do these validations in the ItemEvent Event. I've noticed that it can be validated while using the itemevent, except in the case that you try to close the form by clicking the X in the top of the form. The application asks if you want to save changes, and if you click "Yes", then you won't be able to detect that the user is handling a data event, unless you catch the event in the FormDataEvent, I think that to handle this kind of situations is why the FormDataEvent was created.
    I've also noticed that you can't use the status bar for diplaying messages when setting the bubbleevent = false in the FormDataEvent. You always get the internal error message which overrides the message that you posted when the error occurred.
    What I would like to know is::
    1) Is there any publication of best practices while using the FormDataEvent event.
    2) Which is the safest way to handle these kind of situations.
    3) Is there any known issue regarding to the FormDataEvent damaging the database integrity.
    Any help or comment will be truly appreciated.
    Sincerely,
    Antonio Burgos
    Edited by: Paul Finneran on Sep 9, 2008 10:20 AM

    Hi,
    well, i know only 2 workarounds:
    1.) trap the SBO_SP_TransactionNotification stored procedure -> Petr is the stored procedure guru
    2.a.) trap the itempressed on OK AND Cancel Button.
    your problem till now was that the message comes with -> Data has changed. Save ?
    why you don't change to modus to OK_MODE and the form closes without system message ?
    2.b.) or send a key to the system message window -> first send tab (to jump to no) and than send enter.
    lg David

  • DATA ADD EVENT

    Hi Experts,
        I have checked one condition in FORM DATA ADD EVENT and also I have stop the action using BUBBLE EVENT = False. But its stopping whole add-on. When ever my condition is false , am getting error and its stopping the whole add on.
    Any idea for this error ??
    Regards
    Smith.

    Hi Tomy,
    If you want to do validation or checking before adding data,
    Why dont you do it on Item Event, on Add button, event = click,  and before action = true,
    if condition false then bubble event = false, exit sub
    else , go tru..
    nd.Q

  • How to Bubble Event  use in SAP??

    Hi all ,
         I have a UDO Addon .I used  one more validation for user fields value in Add /Update as i return  False for validation .B1 bubble Checker  show error for return false.B1 bubble checker not show error with bubble value false for Item add validation .Any one help how to SAP maintain Bubble event for validation but B1 bubble Checker not  showing bubble event false .
    thanks
    surajit

    Hi
    You can bypass that message using the following code , also use message box instead of status bar in form data event ...
    Public Overrides Sub OnStatusBarErrorMessage(ByVal txt As String)
                'ADD YOUR CODE HERE     ...
                Try
                    If txt.Contains("UI_API -7780") Then B1Connections.theAppl.StatusBar.SetText("", 0, BoStatusBarMessageType.smt_None)
                Catch ex As Exception
                End Try
            End Sub
    Refer these threads for more information
    "Action stopped by add-on (UI_API -7780) Message 66000-152"
    Re: Action Stoped by Add-ON
    Re: UDO - How to handle an scenario
    DATA ADD EVENT
    Re: B1DE and screen validation ..
    Re: Validation in Form Data add Event
    Displaying message when canceling event
    Hope this helps
    Arun

  • I am getting the following message every time I try to access mail from iCloud:

    IS FATAL
    true
    APPLICATION NAME
    mail
    TITLE
    Mail could not be loaded
    MESSAGE
    There was a problem loading the application due to a possible network error or missing resources. Please try again.
    LOG
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: MAIL in main()
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Sun, 09 Dec 2012 12:19:48 GMT:  WARN:  Attempting to process mailprefs from CloudOS…
    Sun, 09 Dec 2012 12:19:48 GMT:  WARN:  Rejecting mailprefs from CloudOS because timeZone information is unavailable in mailprefs
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: Creating local CK.User object
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: -->  Request 1:   POST to https://p06-mailws.icloud.com:443/wm/preference?clientBuildNumber=1N44&clientId= 38E35891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF244118CF1C3 8DDCC11F788D45E,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1355055588208/1
              wmsid: null
              params: {"locale":"en-us","timeZone":"Europe/Athens"}
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: SC.Object:sc1364:dispatch('load content')
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: SC.Object:sc2819:dispatch('noContent')
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Sun, 09 Dec 2012 12:19:49 GMT:  DEBUG: APPLICATION: Received applicationWillBecomeActive
    Sun, 09 Dec 2012 12:19:49 GMT:  DEBUG: APPLICATION: Received routeDidChange
    Sun, 09 Dec 2012 12:19:49 GMT:  WARN:  APPLICATION: Received applicationDidBecomeActive
    Sun, 09 Dec 2012 12:19:50 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
                                                                Status:200
                                                                Request:/wm/preference
                                                                Wmsid:7
                                                                Redirect Count:1
                                                                Timeout Redirect Count:0
                                                                ResponseText:<h1>Redirect</h1>
    Sun, 09 Dec 2012 12:19:50 GMT:  DEBUG: -->  Request 2:   POST to https://p06-mailws.icloud.com:443/wm/preference?clientBuildNumber=1N44&clientId= 38E35891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF244118CF1C3 8DDCC11F788D45E,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:50 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1355055588208/1
              wmsid: 7
              params: {"locale":"en-us","timeZone":"Europe/Athens"}
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: <--  Response 2:  200  (4395ms),  headers: Content-Type=application/json-rpc; charset=UTF-8  body: (omitted)
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1355055588208/1,httpStatus: 200,round trip time: 4395ms, wmsid: 7
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Attempting to load 'contacts'
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Module 'contacts' is not loaded, loading now.
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'contacts' -> '/applications/mail/frameworks/contacts/en-us/1N44/javascript.js'
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Attempting to load 'contacts'
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Module 'contacts' is not loaded, loading now.
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: -->  Request 3:   POST to https://p06-mailws.icloud.com:443/wm/folder?clientBuildNumber=1N44&clientId=38E3 5891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF244118CF1C38DDC C11F788D45E,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: ----------------> Request out: /wm/folder-list-->1355055594893/2
              wmsid: 7
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Object:sc1364:dispatch('load content')
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: SC.Module: Module 'contacts' finished loading.
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: SC.Module: Evaluating and invoking callbacks for 'contacts'.
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: SC.Module: Module 'contacts' has completed loading, invoking callbacks.
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: ContactsAutocomplete name order preference set: 'first,last'
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: -->  Request 4:   POST to https://p06-mailws.icloud.com:443/wm/recents?clientBuildNumber=1N44&clientId=38E 35891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF244118CF1C38DD CC11F788D45E,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: -->  Request 5:   GET to https://p02-contactsws.icloud.com:443/co/addressbook/?clientBuildNumber=1N44&cli entId=38E35891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF24411 8CF1C38DDCC11F788D45E&locale=en_US&order=last%2Cfirst,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:55 GMT:  WARN:  attempt to re initialize contacts, ignoring configure call.
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: <--  Response 5:  200  (2719ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: <--  Response 3:  200  (3535ms),  headers: Content-Type=application/json-rpc; charset=UTF-8  body: (omitted)
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: <---------------- Request in: /wm/folder-list-->1355055594893/2,httpStatus: 200,round trip time: 3534ms, wmsid: 7,104,no imap connection
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: FolderDataSource.localFetchResponse error = 104/no imap connection
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: SC.Object:sc1364:dispatch('propertyChanged')
    Sun, 09 Dec 2012 12:19:58 GMT:  ERROR: Bootstrap error: FolderList.LoadFailed.ServerError
    ORIGIN
    server
    TYPE
    error
    APP STATECHART
    SC.Statechart:sc1433
      initialized: true
      name: cloudos-statechart
      current-states: [
        active.application.displayingCurrentApp
      state-transition:
        active: false
        suspended: false
      handling-event: false
    BUILD NUMBER
    1N44
    TIME
    Sun Dec 09 2012 14:20:00 GMT+0200 (EET)        (1355055600880)
    HOST
    www.icloud.com
    USER AGENT
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17
    DSID
    221791513
    ENVIRONMENT
    PROD
    RECENT LOG MESSAGES
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: MAIL in main()
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Sun, 09 Dec 2012 12:19:48 GMT:  WARN:  Attempting to process mailprefs from CloudOS…
    Sun, 09 Dec 2012 12:19:48 GMT:  WARN:  Rejecting mailprefs from CloudOS because timeZone information is unavailable in mailprefs
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: Creating local CK.User object
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: -->  Request 1:   POST to https://p06-mailws.icloud.com:443/wm/preference?clientBuildNumber=1N44&clientId= 38E35891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF244118CF1C3 8DDCC11F788D45E,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1355055588208/1
              wmsid: null
              params: {"locale":"en-us","timeZone":"Europe/Athens"}
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: SC.Object:sc1364:dispatch('load content')
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG: SC.Object:sc2819:dispatch('noContent')
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Sun, 09 Dec 2012 12:19:48 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Sun, 09 Dec 2012 12:19:49 GMT:  DEBUG: APPLICATION: Received applicationWillBecomeActive
    Sun, 09 Dec 2012 12:19:49 GMT:  DEBUG: APPLICATION: Received routeDidChange
    Sun, 09 Dec 2012 12:19:49 GMT:  WARN:  APPLICATION: Received applicationDidBecomeActive
    Sun, 09 Dec 2012 12:19:50 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
                                                                Status:200
                                                                Request:/wm/preference
                                                                Wmsid:7
                                                                Redirect Count:1
                                                                Timeout Redirect Count:0
                                                                ResponseText:<h1>Redirect</h1>
    Sun, 09 Dec 2012 12:19:50 GMT:  DEBUG: -->  Request 2:   POST to https://p06-mailws.icloud.com:443/wm/preference?clientBuildNumber=1N44&clientId= 38E35891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF244118CF1C3 8DDCC11F788D45E,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:50 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1355055588208/1
              wmsid: 7
              params: {"locale":"en-us","timeZone":"Europe/Athens"}
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: <--  Response 2:  200  (4395ms),  headers: Content-Type=application/json-rpc; charset=UTF-8  body: (omitted)
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1355055588208/1,httpStatus: 200,round trip time: 4395ms, wmsid: 7
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Attempting to load 'contacts'
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Module 'contacts' is not loaded, loading now.
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'contacts' -> '/applications/mail/frameworks/contacts/en-us/1N44/javascript.js'
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Attempting to load 'contacts'
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Module: Module 'contacts' is not loaded, loading now.
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: -->  Request 3:   POST to https://p06-mailws.icloud.com:443/wm/folder?clientBuildNumber=1N44&clientId=38E3 5891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF244118CF1C38DDC C11F788D45E,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: ----------------> Request out: /wm/folder-list-->1355055594893/2
              wmsid: 7
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: SC.Object:sc1364:dispatch('load content')
    Sun, 09 Dec 2012 12:19:54 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: SC.Module: Module 'contacts' finished loading.
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: SC.Module: Evaluating and invoking callbacks for 'contacts'.
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: SC.Module: Module 'contacts' has completed loading, invoking callbacks.
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: ContactsAutocomplete name order preference set: 'first,last'
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: -->  Request 4:   POST to https://p06-mailws.icloud.com:443/wm/recents?clientBuildNumber=1N44&clientId=38E 35891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF244118CF1C38DD CC11F788D45E,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:55 GMT:  DEBUG: -->  Request 5:   GET to https://p02-contactsws.icloud.com:443/co/addressbook/?clientBuildNumber=1N44&cli entId=38E35891-8FD4-44DA-A10A-0A5614716C3D&dsid=221791513&id=BADD0B53AD2ADF24411 8CF1C38DDCC11F788D45E&locale=en_US&order=last%2Cfirst,  headers: Content-Type=text/plain,  body: (omitted)
    Sun, 09 Dec 2012 12:19:55 GMT:  WARN:  attempt to re initialize contacts, ignoring configure call.
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: <--  Response 5:  200  (2719ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: <--  Response 3:  200  (3535ms),  headers: Content-Type=application/json-rpc; charset=UTF-8  body: (omitted)
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: <---------------- Request in: /wm/folder-list-->1355055594893/2,httpStatus: 200,round trip time: 3534ms, wmsid: 7,104,no imap connection
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: FolderDataSource.localFetchResponse error = 104/no imap connection
    Sun, 09 Dec 2012 12:19:58 GMT:  DEBUG: SC.Object:sc1364:dispatch('propertyChanged')
    Sun, 09 Dec 2012 12:19:58 GMT:  ERROR: Bootstrap error: FolderList.LoadFailed.ServerError

    Change your password and this will reset your email.

  • Unable to log in to iCloud

    Strange issue...
    Recently I am unable to log in to iCloud from my computer at work. In addition, my calendar and contacts no longer sync with my iCloud. Instead, I am getting an error message stating that 'iCloud encountered and error while trying to connect to the server'.
    I checked with IT and there is no blocking of the Apple servers going on.
    If you are REALLY interested, here is the dialogue from the error message...
    APPLICATION NAME
    cloudos
    ERROR
    authDidNotConnect
    ORIGIN
    server
    TYPE
    error
    APP STATECHART
    SC.Statechart:sc772
      initialized: true
      name: cloudos-statechart
      current-states: [
        active.authUI.fieldsEditable
      state-transition:
        active: false
        suspended: false
      handling-event: false
    BUILD NUMBER
    1M.63768
    TIME
    Wed Dec 05 2012 12:05:51 GMT-0700 (MST)        (1354734351557)
    HOST
    www.icloud.com
    USER AGENT
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17
    ENVIRONMENT
    PROD
    RECENT LOG MESSAGES
    Wed, 05 Dec 2012 18:53:32 GMT:  DEBUG: CloudOS.main() already has localized strings, proceeding to run CloudOS.run() now.
    Wed, 05 Dec 2012 18:53:32 GMT:  DEBUG: Loading localized strings and metrics
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN initialize statechart
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN gotoState: __ROOT_STATE__
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: starting from current state: ---
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states before: ---
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: __ROOT_STATE__
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: loading
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states after: loading
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END gotoState: __ROOT_STATE__
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN gotoState: validatingAuth
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: starting from current state: loading
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states before: loading
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: pivot state = __ROOT_STATE__
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: <-- exiting state: loading
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: validatingAuth
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: validatingAuth.gettingReply
    Wed, 05 Dec 2012 18:53:32 GMT:  DEBUG: COS: Sending validate POST request to https://setup.icloud.com/setup/ws/1/validate
    Wed, 05 Dec 2012 18:53:32 GMT:  DEBUG: -->  Request 1:   POST to https://setup.icloud.com/setup/ws/1/validate?clientBuildNumber=1M.63768&clientId =5B431CA4-6CDE-4068-872C-0B159FACD905,  headers: Content-Type=text/plain,  body: (omitted)
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states after: validatingAuth.gettingReply
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END gotoState: validatingAuth
    Wed, 05 Dec 2012 18:53:32 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END initialize statechart
    Wed, 05 Dec 2012 18:53:32 GMT:  DEBUG: Language check: null -> en-us. We WILL relocalize.
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: <--  Response 1:  0  (576ms),  headers:   body: (empty)
    Wed, 05 Dec 2012 18:53:33 GMT:  WARN:  Could not decode JSON: JSON Parse error: Unexpected EOF
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: COS: invoking validateDidFail
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN sendEvent: 'authDidNotConnect'
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: validatingAuth.gettingReply: will handle event 'authDidNotConnect'
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN gotoState: active.authUI
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: starting from current state: validatingAuth.gettingReply
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states before: validatingAuth.gettingReply
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: pivot state = __ROOT_STATE__
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: <-- exiting state: validatingAuth.gettingReply
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: <-- exiting state: validatingAuth
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: active
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: active.authUI
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: active.authUI.downloadingAuthModule
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Attempting to load 'cloudos/auth_ui'
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Module 'cloudos/auth_ui' is not loaded, loading now.
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: 'cloudos/auth_ui' depends on 'cloudkit/photo', loading dependency…
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Attempting to load 'cloudkit/photo'
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Module 'cloudkit/photo' is not loaded, loading now.
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudkit/photo' -> 'system/cloudos/cloudkit/photo/en-us/1M.63768/javascript-strings.js'
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Loading CSS file in 'cloudos/auth_ui' -> 'system/cloudos/cloudos/auth_ui/en-us/1M.63768/stylesheet.css'
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudos/auth_ui' -> 'system/cloudos/cloudos/auth_ui/en-us/1M.63768/javascript-strings.js'
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states after: active.authUI.downloadingAuthModule
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END gotoState: active.authUI
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END sendEvent: 'authDidNotConnect'
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: Spent 23ms painting the background canvas, which, in addition to the radial gradient, required 12 drawImage calls for the tiles.
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Module 'cloudkit/photo' finished loading.
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Evaluating and invoking callbacks for 'cloudkit/photo'.
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Module 'cloudkit/photo' has completed loading, invoking callbacks.
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Module 'cloudos/auth_ui' finished loading.
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Evaluating and invoking callbacks for 'cloudos/auth_ui'.
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: SC.Module: Module 'cloudos/auth_ui' has completed loading, invoking callbacks.
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN gotoState: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: starting from current state: active.authUI.downloadingAuthModule
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states before: active.authUI.downloadingAuthModule
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: pivot state = active.authUI
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: <-- exiting state: active.authUI.downloadingAuthModule
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states after: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 18:53:33 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END gotoState: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: Preloading https://www.icloud.com/system/cloudos/cloudos/auth_ui/en-us/1M.63768/stylesheet- 1.png
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: Preloading explicitly-specified image system/cloudos/cloudos/auth_ui/en-us/1M.63768/source/resources/images/rotating_ gradient.jpg
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: Preloading explicitly-specified image system/cloudos/cloudos/auth_ui/en-us/1M.63768/source/resources/images/canvas_ma sk.png
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: Finished loading system/cloudos/cloudos/auth_ui/en-us/1M.63768/source/resources/images/canvas_ma sk.png. images remaining before callback: 2
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: Finished loading system/cloudos/cloudos/auth_ui/en-us/1M.63768/source/resources/images/rotating_ gradient.jpg. images remaining before callback: 1
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: Finished loading https://www.icloud.com/system/cloudos/cloudos/auth_ui/en-us/1M.63768/stylesheet- 1.png. images remaining before callback: 0
    Wed, 05 Dec 2012 18:53:33 GMT:  DEBUG: All images are downloaded. Now running callback.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Prefetching module 'cloudos/alarms'.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudos/alarms' -> 'system/cloudos/cloudos/alarms/en-us/1M.63768/javascript-strings.js'
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Prefetching module 'cloudos/language'.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudos/language' -> 'system/cloudos/cloudos/language/en-us/1M.63768/javascript-strings.js'
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Prefetching module 'cloudkit/error_catcher'.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Loading CSS file in 'cloudkit/error_catcher' -> 'system/cloudos/cloudkit/error_catcher/en-us/1M.63768/stylesheet.css'
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudkit/error_catcher' -> 'system/cloudos/cloudkit/error_catcher/en-us/1M.63768/javascript-strings.js'
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Prefetching module 'cloudos/account'.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: 'cloudos/account' depends on 'coreweb/timezone_picker', loading dependency…
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Attempting to load 'coreweb/timezone_picker'
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Module 'coreweb/timezone_picker' is not loaded, loading now.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Loading CSS file in 'coreweb/timezone_picker' -> 'system/cloudos/coreweb/timezone_picker/en-us/1M.63768/stylesheet.css'
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'coreweb/timezone_picker' -> 'system/cloudos/coreweb/timezone_picker/en-us/1M.63768/javascript-strings.js'
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Loading CSS file in 'cloudos/account' -> 'system/cloudos/cloudos/account/en-us/1M.63768/stylesheet.css'
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudos/account' -> 'system/cloudos/cloudos/account/en-us/1M.63768/javascript-strings.js'
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Module 'cloudos/alarms' finished loading.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Module 'cloudos/alarms' was prefetched, not evaluating until needed.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' finished loading.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' was prefetched, not evaluating until needed.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Module 'cloudos/language' finished loading.
    Wed, 05 Dec 2012 18:53:36 GMT:  DEBUG: SC.Module: Module 'cloudos/language' was prefetched, not evaluating until needed.
    Wed, 05 Dec 2012 18:53:37 GMT:  DEBUG: SC.Module: Module 'cloudos/account' finished loading.
    Wed, 05 Dec 2012 18:53:37 GMT:  DEBUG: SC.Module: Module 'cloudos/account' was prefetched, not evaluating until needed.
    Wed, 05 Dec 2012 18:53:37 GMT:  DEBUG: SC.Module: Module 'coreweb/timezone_picker' finished loading.
    Wed, 05 Dec 2012 18:53:37 GMT:  DEBUG: SC.Module: Evaluating and invoking callbacks for 'coreweb/timezone_picker'.
    Wed, 05 Dec 2012 18:53:37 GMT:  DEBUG: SC.Module: Module 'coreweb/timezone_picker' has completed loading, invoking callbacks.
    Wed, 05 Dec 2012 18:53:37 GMT:  DEBUG: SC.Module: Now that coreweb/timezone_picker has loaded, all dependencies for a dependent cloudos/account are met.
    Wed, 05 Dec 2012 18:53:37 GMT:  DEBUG: SC.Module: Evaluating and invoking callbacks for 'cloudos/account'.
    Wed, 05 Dec 2012 18:53:37 GMT:  DEBUG: SC.Module: Module 'cloudos/account' has completed loading, invoking callbacks.
    Wed, 05 Dec 2012 18:54:32 GMT:  DEBUG: CloudOS window received focus event
    Wed, 05 Dec 2012 19:04:19 GMT:  DEBUG: CloudOS window received focus event
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN sendEvent: 'userDidSubmit'
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: active.authUI.fieldsEditable: will handle event 'userDidSubmit'
    Wed, 05 Dec 2012 19:04:25 GMT:  DEBUG: CloudKit: Sending login POST request to https://setup.icloud.com/setup/ws/1/login
    Wed, 05 Dec 2012 19:04:25 GMT:  DEBUG: -->  Request 2:   POST to https://setup.icloud.com/setup/ws/1/login?clientBuildNumber=1M.63768&clientId=5B 431CA4-6CDE-4068-872C-0B159FACD905,  headers: Content-Type=text/plain,  body: (omitted)
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN gotoState: active.authUI.attemptIsSubmitted
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: starting from current state: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states before: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: pivot state = active.authUI
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: <-- exiting state: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: active.authUI.attemptIsSubmitted
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states after: active.authUI.attemptIsSubmitted
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END gotoState: active.authUI.attemptIsSubmitted
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END sendEvent: 'userDidSubmit'
    Wed, 05 Dec 2012 19:04:25 GMT:  DEBUG: <--  Response 2:  0  (247ms),  headers:   body: (empty)
    Wed, 05 Dec 2012 19:04:25 GMT:  WARN:  Could not decode JSON: JSON Parse error: Unexpected EOF
    Wed, 05 Dec 2012 19:04:25 GMT:  DEBUG: COS: invoking loginDidFail
    Wed, 05 Dec 2012 19:04:25 GMT:  WARN:  Auth: No auth bag or recognized status code
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN sendEvent: 'authDidNotConnect'
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: active.authUI.attemptIsSubmitted: will handle event 'authDidNotConnect'
    Wed, 05 Dec 2012 19:04:25 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END sendEvent: 'authDidNotConnect'
    Wed, 05 Dec 2012 19:04:42 GMT:  DEBUG: CloudOS window received focus event
    Wed, 05 Dec 2012 19:05:49 GMT:  DEBUG: CloudOS window received focus event
    Wed, 05 Dec 2012 19:05:51 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: BEGIN gotoState: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 19:05:51 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: starting from current state: active.authUI.attemptIsSubmitted
    Wed, 05 Dec 2012 19:05:51 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states before: active.authUI.attemptIsSubmitted
    Wed, 05 Dec 2012 19:05:51 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: pivot state = active.authUI
    Wed, 05 Dec 2012 19:05:51 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: <-- exiting state: active.authUI.attemptIsSubmitted
    Wed, 05 Dec 2012 19:05:51 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: --> entering state: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 19:05:51 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: current states after: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 19:05:51 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc772>: END gotoState: active.authUI.fieldsEditable
    Wed, 05 Dec 2012 19:05:51 GMT:  DEBUG: CloudKit: ErrorCatcher dialog invoked.
    Wed, 05 Dec 2012 19:05:51 GMT:  DEBUG: SC.Module: Attempting to load 'cloudkit/error_catcher'
    Wed, 05 Dec 2012 19:05:51 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' already loaded.
    Wed, 05 Dec 2012 19:05:51 GMT:  DEBUG: SC.Module: Evaluating JavaScript for module 'cloudkit/error_catcher'.
    Wed, 05 Dec 2012 19:05:51 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' has completed loading, invoking callbacks.

    You might try the following.
    1. Sign out of your account
    (If you are unable to do this because System Preferences has frozen, Force Quit System Preferences and try again)
    2. When prompted, opt to delete, contacts, calendars etc from your Mac.
    (You are only deleting this data from your Mac, not from iCloud, the data will be reinstated when you log back in. If you need to check that the data is in iCloud before deleting it go to iCloud.com and check each section for data)
    3. Having logged out, check that the iCloud accounts along with their data have disappeared from the Mail, Address Book and iCal Applications.
    (If necessary, delete the iCloud accounts from each of these application separately from each Applications Preferences)
    4. At this point it may be worth trying to log into iCloud from the System Preferences iCloud settings again, if this works, all well and good, if it doesn't continue to step 5.
    5. Open your User Library folder in the Finder. (When in the Finder, go to the Go menu, hold down the option key (alt) and choose Library when it appears in the Go menu)
    6. Navigate to Library > Application Support > iCloud and drag the iCloud folder to your desktop. (This action only copies the folder and will provide you with a back up)
    7. Select the iCloud folder again in Library > Application Support and drag it to the trash, enter your administrators password when prompted.
    8. Restart your computer.
    9. You should now be able to enter your ID and Password in system Preferences > iCloud and log into your account. Check the services you wish to use and once you are satisfied it's working as it should, trash the iCloud folder you copied to your desktop earlier.

  • ICloud connection error, iTunes Store not loading, update server not responding. Please Help.

    Please Help! I am in desperate need to access my email. Thank you.
    whenever I sign in iCloud, this happens:
    APPLICATION NAME
    cloudos
    ERROR
    authDidNotConnect
    TYPE
    server
    APP STATECHART
    SC.Statechart:sc915
      initialized: true
      name: cloudos-statechart
      current-states: [
        active.authUI.fieldsEditable
      state-transition:
        active: false
        suspended: false
      handling-event: false
    BUILD NUMBER
    14C.131409
    TIME
    Fri May 02 2014 21:03:39 GMT+1000 (EST)        (1399028619503)
    HOST
    www.icloud.com
    USER AGENT
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:28.0) Gecko/20100101 Firefox/28.0
    ENVIRONMENT
    PROD
    RECENT LOG MESSAGES
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: SC.Module: Attempting to load 'cloudos_foundation/springboard'
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: SC.Module: Module 'cloudos_foundation/springboard' already loaded.
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: SC.Module: Evaluating JavaScript for module 'cloudos_foundation/springboard'.
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: CloudOS.main() already has localized strings, proceeding to run CloudOS.run() now.
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: Loading localized strings and metrics
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: -->  Request 1:   GET to /applications/pages/current/info.json,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: -->  Request 2:   GET to /applications/numbers/current/info.json,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: -->  Request 3:   GET to /applications/keynote/current/info.json,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN initialize statechart
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN gotoState: __ROOT_STATE__
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: starting from current state: ---
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states before: ---
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: __ROOT_STATE__
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: loading
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states after: loading
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END gotoState: __ROOT_STATE__
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN gotoState: validatingAuth
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: starting from current state: loading
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states before: loading
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: pivot state = __ROOT_STATE__
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: <-- exiting state: loading
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: validatingAuth
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: validatingAuth.gettingReply
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: COS: Sending validate POST request to https://setup.icloud.com/setup/ws/1/validate
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: -->  Request 4:   POST to https://setup.icloud.com/setup/ws/1/validate?clientBuildNumber=14C.131409&client Id=CA53A6CC-FA79-4150-AF39-248318487608,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states after: validatingAuth.gettingReply
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END gotoState: validatingAuth
    Fri, 02 May 2014 10:22:58 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END initialize statechart
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: Language check: null -> en-us. We WILL relocalize.
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: SC.Module: Module 'cloudos_foundation/springboard' has completed loading, invoking callbacks.
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: <--  Response 1:  200  (417ms),  headers: Accept-Ranges=bytes, Cache-Control=no-cache, no-store, private, Connection=keep-alive, Content-Encoding=gzip, Content-Language=en-us, Content-Length=162, Content-Type=application/json, Date=Fri, 02 May 2014 10:22:58 GMT, Etag="b8-4f7da4953c300", Expires=Sat, 02 May 2015 10:22:58 GMT, Last-Modified=Fri, 25 Apr 2014 09:06:52 GMT, Server=Apache, Strict-Transport-Security=max-age=31536000; includeSubDomains, Vary=Accept-Encoding  body: (omitted)
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: Setting up appInfo for pages
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 1 conditions. Requirement was: dynamic app pages
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: <--  Response 2:  200  (432ms),  headers: Accept-Ranges=bytes, Cache-Control=no-cache, no-store, private, Connection=keep-alive, Content-Encoding=gzip, Content-Language=en-us, Content-Length=164, Content-Type=application/json, Date=Fri, 02 May 2014 10:22:58 GMT, Etag="bc-4f7da4953c300", Expires=Sat, 02 May 2015 10:22:58 GMT, Last-Modified=Fri, 25 Apr 2014 09:06:52 GMT, Server=Apache, Strict-Transport-Security=max-age=31536000; includeSubDomains, Vary=Accept-Encoding  body: (omitted)
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: Setting up appInfo for numbers
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 1 conditions. Requirement was: dynamic app numbers
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: <--  Response 3:  200  (451ms),  headers: Accept-Ranges=bytes, Cache-Control=no-cache, no-store, private, Connection=keep-alive, Content-Encoding=gzip, Content-Language=en-us, Content-Length=165, Content-Type=application/json, Date=Fri, 02 May 2014 10:22:58 GMT, Etag="bc-4f7da4953c300", Expires=Sat, 02 May 2015 10:22:58 GMT, Last-Modified=Fri, 25 Apr 2014 09:06:52 GMT, Server=Apache, Strict-Transport-Security=max-age=31536000; includeSubDomains, Vary=Accept-Encoding  body: (omitted)
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: Setting up appInfo for keynote
    Fri, 02 May 2014 10:22:58 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 1 conditions. Requirement was: dynamic app keynote
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Prefetching module 'cloudkit/error_catcher'.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Loading CSS file in 'cloudkit/error_catcher' -> '/system/cloudos/14C.131409/cloudkit/error_catcher/14C.131409/en-us/stylesheet. css'
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudkit/error_catcher' -> '/system/cloudos/14C.131409/cloudkit/error_catcher/14C.131409/en-us/javascript- strings.js'
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Prefetching module 'cloudos_foundation/language'.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudos_foundation/language' -> '/system/cloudos/14C.131409/cloudos_foundation/language/14C.131409/en-us/javasc ript-strings.js'
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Prefetching module 'coreweb/date_formatter'.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'coreweb/date_formatter' -> '/system/cloudos/14C.131409/coreweb/date_formatter/14C.131409/en-us/javascript- strings.js'
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Prefetching module 'cloudos_foundation/alarms'.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Loading CSS file in 'cloudos_foundation/alarms' -> '/system/cloudos/14C.131409/cloudos_foundation/alarms/14C.131409/en-us/styleshe et.css'
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudos_foundation/alarms' -> '/system/cloudos/14C.131409/cloudos_foundation/alarms/14C.131409/en-us/javascri pt-strings.js'
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' finished loading.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' was prefetched, not evaluating until needed.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Module 'cloudos_foundation/language' finished loading.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Module 'cloudos_foundation/language' was prefetched, not evaluating until needed.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Module 'coreweb/date_formatter' finished loading.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Module 'coreweb/date_formatter' was prefetched, not evaluating until needed.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Module 'cloudos_foundation/alarms' finished loading.
    Fri, 02 May 2014 10:22:59 GMT:  DEBUG: SC.Module: Module 'cloudos_foundation/alarms' was prefetched, not evaluating until needed.
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: <--  Response 4:  0  (timed out),  headers:   body: (empty)
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: COS: invoking validateDidFail
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN sendEvent: 'authDidNotConnect'
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: validatingAuth.gettingReply: will handle event 'authDidNotConnect'
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN gotoState: active.authUI
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: starting from current state: validatingAuth.gettingReply
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states before: validatingAuth.gettingReply
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: pivot state = __ROOT_STATE__
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: <-- exiting state: validatingAuth.gettingReply
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: <-- exiting state: validatingAuth
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: active
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: active.authUI
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: active.authUI.downloadingAuthModule
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Attempting to load 'cloudkit/auth_ui'
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Module 'cloudkit/auth_ui' is not loaded, loading now.
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: 'cloudkit/auth_ui' depends on 'cloudkit/photo', loading dependency…
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Attempting to load 'cloudkit/photo'
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Module 'cloudkit/photo' is not loaded, loading now.
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudkit/photo' -> '/system/cloudos/14C.131409/cloudkit/photo/14C.131409/en-us/javascript.js'
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Loading CSS file in 'cloudkit/auth_ui' -> '/system/cloudos/14C.131409/cloudkit/auth_ui/14C.131409/en-us/[email protected] '
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Loading JavaScript file in 'cloudkit/auth_ui' -> '/system/cloudos/14C.131409/cloudkit/auth_ui/14C.131409/en-us/javascript-string s.js'
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states after: active.authUI.downloadingAuthModule
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END gotoState: active.authUI
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END sendEvent: 'authDidNotConnect'
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Module 'cloudkit/photo' finished loading.
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Evaluating and invoking callbacks for 'cloudkit/photo'.
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Module 'cloudkit/photo' has completed loading, invoking callbacks.
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Module 'cloudkit/auth_ui' finished loading.
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Evaluating and invoking callbacks for 'cloudkit/auth_ui'.
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: SC.Module: Module 'cloudkit/auth_ui' has completed loading, invoking callbacks.
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN gotoState: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: starting from current state: active.authUI.downloadingAuthModule
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states before: active.authUI.downloadingAuthModule
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: pivot state = active.authUI
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: <-- exiting state: active.authUI.downloadingAuthModule
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states after: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:23:28 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END gotoState: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Preloading background images, but every image was already loaded. Running callback immediately.
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: At long last, SpringboardView is now allowed to generate button instances!
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 9 conditions. Requirement was: initial set of buttons
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 8 conditions. Requirement was: Button for mail
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 7 conditions. Requirement was: Button for contacts
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 6 conditions. Requirement was: Button for notes
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 5 conditions. Requirement was: Button for reminders
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 4 conditions. Requirement was: Button for find
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 3 conditions. Requirement was: Button for pages
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 2 conditions. Requirement was: Button for numbers
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: A wait condition became satisfied. Still waiting on 1 conditions. Requirement was: Button for keynote
    Fri, 02 May 2014 10:23:28 GMT:  DEBUG: Springboard: Springboard View has become ready to show! All of its wait conditions have been satisfied.
    Fri, 02 May 2014 10:23:36 GMT:  DEBUG: Sending stats to feedbackws
    Fri, 02 May 2014 10:23:36 GMT:  DEBUG: -->  Request 5:   POST to https://feedbackws.icloud.com/reportStats,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:23:51 GMT:  DEBUG: Sending stats to feedbackws
    Fri, 02 May 2014 10:23:51 GMT:  DEBUG: -->  Request 6:   POST to https://feedbackws.icloud.com/reportStats,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:24:54 GMT:  DEBUG: <--  Response 5:  200  (78147ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Fri, 02 May 2014 10:24:54 GMT:  INFO:  Successfully sent stats to feedbackws
    Fri, 02 May 2014 10:24:58 GMT:  DEBUG: <--  Response 6:  200  (66699ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Fri, 02 May 2014 10:24:58 GMT:  INFO:  Successfully sent stats to feedbackws
    Fri, 02 May 2014 10:29:18 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:29:40 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:30:34 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN sendEvent: 'userDidSubmit'
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: active.authUI.fieldsEditable: will handle event 'userDidSubmit'
    Fri, 02 May 2014 10:30:41 GMT:  DEBUG: CloudKit: Sending login POST request to https://setup.icloud.com/setup/ws/1/login
    Fri, 02 May 2014 10:30:41 GMT:  DEBUG: -->  Request 7:   POST to https://setup.icloud.com/setup/ws/1/login?clientBuildNumber=14C.131409&clientId= CA53A6CC-FA79-4150-AF39-248318487608,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN gotoState: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: starting from current state: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states before: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: pivot state = active.authUI
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: <-- exiting state: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states after: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END gotoState: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:30:41 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END sendEvent: 'userDidSubmit'
    Fri, 02 May 2014 10:31:00 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:31:11 GMT:  DEBUG: <--  Response 7:  0  (timed out),  headers:   body: (empty)
    Fri, 02 May 2014 10:31:11 GMT:  DEBUG: COS: invoking loginDidFail
    Fri, 02 May 2014 10:31:11 GMT:  WARN:  Auth: No auth bag or recognized status code
    Fri, 02 May 2014 10:31:11 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN sendEvent: 'authDidNotConnect'
    Fri, 02 May 2014 10:31:11 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: active.authUI.attemptIsSubmitted: will handle event 'authDidNotConnect'
    Fri, 02 May 2014 10:31:11 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END sendEvent: 'authDidNotConnect'
    Fri, 02 May 2014 10:31:19 GMT:  DEBUG: Sending stats to feedbackws
    Fri, 02 May 2014 10:31:19 GMT:  DEBUG: -->  Request 8:   POST to https://feedbackws.icloud.com/reportStats,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:31:24 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:32:05 GMT:  DEBUG: <--  Response 8:  200  (46127ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Fri, 02 May 2014 10:32:05 GMT:  INFO:  Successfully sent stats to feedbackws
    Fri, 02 May 2014 10:34:54 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:37:33 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:37:35 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN gotoState: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:37:35 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: starting from current state: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:37:35 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states before: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:37:35 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: pivot state = active.authUI
    Fri, 02 May 2014 10:37:35 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: <-- exiting state: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:37:35 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:37:35 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states after: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:37:35 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END gotoState: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:37:35 GMT:  DEBUG: CloudKit: ErrorCatcher dialog invoked.
    Fri, 02 May 2014 10:37:36 GMT:  DEBUG: SC.Module: Attempting to load 'cloudkit/error_catcher'
    Fri, 02 May 2014 10:37:36 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' already loaded.
    Fri, 02 May 2014 10:37:36 GMT:  DEBUG: SC.Module: Evaluating JavaScript for module 'cloudkit/error_catcher'.
    Fri, 02 May 2014 10:37:36 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' has completed loading, invoking callbacks.
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN sendEvent: 'userDidSubmit'
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: active.authUI.fieldsEditable: will handle event 'userDidSubmit'
    Fri, 02 May 2014 10:37:43 GMT:  DEBUG: CloudKit: Sending login POST request to https://setup.icloud.com/setup/ws/1/login
    Fri, 02 May 2014 10:37:43 GMT:  DEBUG: -->  Request 9:   POST to https://setup.icloud.com/setup/ws/1/login?clientBuildNumber=14C.131409&clientId= CA53A6CC-FA79-4150-AF39-248318487608,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN gotoState: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: starting from current state: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states before: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: pivot state = active.authUI
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: <-- exiting state: active.authUI.fieldsEditable
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states after: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END gotoState: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 10:37:43 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END sendEvent: 'userDidSubmit'
    Fri, 02 May 2014 10:37:43 GMT:  DEBUG: Sending stats to feedbackws
    Fri, 02 May 2014 10:37:43 GMT:  DEBUG: -->  Request 10:   POST to https://feedbackws.icloud.com/reportStats,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:37:55 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:37:59 GMT:  DEBUG: autoUpdate: Running latest build, 14C.131409
    Fri, 02 May 2014 10:38:03 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:38:14 GMT:  DEBUG: <--  Response 9:  0  (timed out),  headers:   body: (empty)
    Fri, 02 May 2014 10:38:14 GMT:  DEBUG: COS: invoking loginDidFail
    Fri, 02 May 2014 10:38:14 GMT:  WARN:  Auth: No auth bag or recognized status code
    Fri, 02 May 2014 10:38:14 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN sendEvent: 'authDidNotConnect'
    Fri, 02 May 2014 10:38:14 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: active.authUI.attemptIsSubmitted: will handle event 'authDidNotConnect'
    Fri, 02 May 2014 10:38:14 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END sendEvent: 'authDidNotConnect'
    Fri, 02 May 2014 10:38:18 GMT:  DEBUG: <--  Response 10:  200  (34469ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Fri, 02 May 2014 10:38:18 GMT:  INFO:  Successfully sent stats to feedbackws
    Fri, 02 May 2014 10:38:22 GMT:  DEBUG: Sending stats to feedbackws
    Fri, 02 May 2014 10:38:22 GMT:  DEBUG: -->  Request 11:   POST to https://feedbackws.icloud.com/reportStats,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 02 May 2014 10:38:25 GMT:  DEBUG: <--  Response 11:  200  (3398ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Fri, 02 May 2014 10:38:25 GMT:  INFO:  Successfully sent stats to feedbackws
    Fri, 02 May 2014 10:38:37 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:39:47 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:42:58 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:43:45 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:44:12 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 10:52:58 GMT:  DEBUG: autoUpdate: Running latest build, 14C.131409
    Fri, 02 May 2014 10:59:09 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 11:03:38 GMT:  DEBUG: CloudOS window received focus event
    Fri, 02 May 2014 11:03:39 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: BEGIN gotoState: active.authUI.fieldsEditable
    Fri, 02 May 2014 11:03:39 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: starting from current state: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 11:03:39 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states before: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 11:03:39 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: pivot state = active.authUI
    Fri, 02 May 2014 11:03:39 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: <-- exiting state: active.authUI.attemptIsSubmitted
    Fri, 02 May 2014 11:03:39 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: --> entering state: active.authUI.fieldsEditable
    Fri, 02 May 2014 11:03:39 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: current states after: active.authUI.fieldsEditable
    Fri, 02 May 2014 11:03:39 GMT:  INFO:  SC.Statechart<cloudos-statechart, sc915>: END gotoState: active.authUI.fieldsEditable
    Fri, 02 May 2014 11:03:39 GMT:  DEBUG: CloudKit: ErrorCatcher dialog invoked.
    Fri, 02 May 2014 11:03:39 GMT:  DEBUG: SC.Module: Attempting to load 'cloudkit/error_catcher'
    Fri, 02 May 2014 11:03:39 GMT:  DEBUG: SC.Module: Module 'cloudkit/error_catcher' already loaded.

    I click on the iTunes store button and it comes up with the loading bar at the top of the screen where the song time marker would be, but nothing ever happens. It just loads and loads and loads, I don't even get an error message...
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Problems creating a sticky footer

    Hi,
    I'm trying to create a website in Dreamweaver using a template that I purchased but I am having problems fixing a footer to the bottom of the page,
    At the moment the content footer that I have created (which is a table) changes positon from page to page depending on the content.
    The template comes with 2 x CSS style sheets  and 1 x JS coded page which I know I need to amend in order for the footer to remain fixed to the bottom of each page.
    The trouble is my CSS and JS are not up to much. I have inserted the code from the HTML, CSS & JS below.
    If anyone can help me out it would be fantastic as I'm really at a loss!
    The HTML of my main webpage is as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <!-- saved from url=(0023)http://www.contoso.com/ -->
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Style-Type" content="text/css" />
    <link href="style.css" rel="stylesheet" type="text/css" />
    <link href="layout.css" rel="stylesheet" type="text/css" />
    <script src="maxheight.js" type="text/javascript"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    </head>
    <body  id="page1" onload="new ElementMaxHeight(); ;MM_preloadImages('images/facebook2.gif','images/linkedin2.gif','images/twitter2.gif')">
    <div id="header">
        <div class="main">
         <div class="flash">
           <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="980" height="137">
             <param name="movie" value="flash/menu_v8.swf" />
             <param name="quality" value="high" />
             <param name="wmode" value="transparent" />
             <param name="swfversion" value="8.0.35.0" />
             <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
             <param name="expressinstall" value="Scripts/expressInstall.swf" />
             <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
             <!--[if !IE]>-->
             <object type="application/x-shockwave-flash" data="flash/menu_v8.swf" width="980" height="137">
               <!--<![endif]-->
               <param name="quality" value="high" />
               <param name="wmode" value="transparent" />
               <param name="swfversion" value="8.0.35.0" />
               <param name="expressinstall" value="Scripts/expressInstall.swf" />
               <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
               <div>
                 <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                 <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" id="Image2" /></a></p>
               </div>
               <!--[if !IE]>-->
             </object>
             <!--<![endif]-->
           </object>
         </div>
           <div class="flash1">
             <object id="FlashID2" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="587" height="389">
               <param name="movie" value="flash/header_v8.swf" />
               <param name="quality" value="high" />
               <param name="wmode" value="transparent" />
               <param name="swfversion" value="8.0.35.0" />
               <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
               <param name="expressinstall" value="Scripts/expressInstall.swf" />
               <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
               <!--[if !IE]>-->
               <object type="application/x-shockwave-flash" data="flash/header_v8.swf" width="587" height="389">
                 <!--<![endif]-->
                 <param name="quality" value="high" />
                 <param name="wmode" value="transparent" />
                 <param name="swfversion" value="8.0.35.0" />
                 <param name="expressinstall" value="Scripts/expressInstall.swf" />
                 <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
                 <div>
                   <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                   <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" id="Image3" /></a></p>
                 </div>
                 <!--[if !IE]>-->
               </object>
               <!--<![endif]-->
             </object>
           </div>
            <div class="indent1">
             <div class="container1">
               <p>Welcome to ACL International.<br />
                     Through our offices in the UK and Portugal we supply the<br />
                     very latest in energy saving technologies with our main<br />
                     focus being on lighting. ACL have been active in the lighting<br />
                  industry for over 10 years and have built up strong relationships with some of the world's leading lighting manufacturers.</p>
               <p> </p>
               <p>Welcome to ACL International.<br />
    Through our offices in the UK and Portugal we supply the<br />
    very latest in energy saving technologies with our main<br />
    focus being on lighting. ACL have been active in the lighting<br />
    industry for over 10 years and have built up strong relationships with some of the world's leading lighting manufacturers.</p>
              </div>
          </div>
        </div>
    </div>
    <div id="content">
        <div class="main">
            <div class="indent-main">
                <div class="container bg">
                    <div class="container bg1">
                        <div class="container bg2">
                            <div class="col-1 bg-1">
                             <div class="indent-col">
                                 <img alt="" src="images/1page_title1.gif" class="title" /><br />
                                    <p>An easy and affordable<br />
                                  way to change existing<br />
                                  lighting to an energy<br />
                                  saving alternative...</p>
                                    <div class="container"><a href="#" class="link-1"><em><b>read more</b></em></a></div>
                                </div>
                            </div>
                            <div class="col-1 bg-2">
                             <div class="indent-col">
                                 <img alt="" src="images/1page_title2.gif" class="title" /><br />
                                    <p>A more natural,<br />
                                    environmentally<br />
                                    friendly light<br />
                                    source...  </p>
                                    <div class="container"><a href="#" class="link-1"><em><b>read more</b></em></a></div>
                                </div>
                            </div>
                            <div class="col-1 bg-3">
                             <div class="indent-col">
                                 <img alt="" src="images/1page_title3.gif" class="title" /><br />
                                    <p>Up to 80% energy <br />
                                  saving with an<br />
                                  extremely long<br />
                                  lifetime... </p>
                                    <div class="container"><a href="#" class="link-1"><em><b>read more</b></em></a></div>
                                </div>
                            </div>
                            <div class="col-1 bg-4">
                             <div class="indent-col">
                                 <img alt="" src="images/1page_title4.gif" class="title" /><br />
                                    <p>Low glare,<br />
                                    creating a more<br />
                                    comfortable<br />
                                    environment... </p>
                                    <div class="container"><a href="#" class="link-1"><em><b>read more</b></em></a></div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div id="footer">
        <div class="main">
            <div class="indent-footer">
              <table width="929" border="0">
                <tr>
                  <td width="869">ACLI  &copy; 2012  <a href="index-5.html">Privacy Policy</a></td>
                  <td><img src="images/followus.gif" alt="" width="73" height="20" /></td>
                  <td width="20"><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('facebook','','images/facebook2.gif',1)"><img src="images/facebook.gif" width="20" height="20" border="0" id="facebook" /></a></td>
                  <td width="20"><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('linkedin','','images/linkedin2.gif',1)"><img src="images/linkedin.gif" width="25" height="20" border="0" id="linkedin" /></a></td>
                  <td width="20"><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('twitter','','images/twitter2.gif',1)"><img src="images/twitter.gif" width="27" height="20" border="0" id="twitter" /></a></td>
                </tr>
              </table>
            </div>
        </div>
    </div>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    swfobject.registerObject("FlashID2");
    </script>
    </body>
    </html>
    The CSS of the layout is as follows:
    .col-1, .col-2, .col-3, .col-4, .col-5{ float:left}
    /*======= width =======*/
    .main{margin:0 auto; text-align:left; width:929px; }
    /*======= header =======*/
    #header {height:339px;  background:url(images/bg.jpg) }
    #page1 #header {height:526px;}
    /*======= index.html =======*/
    #page1 #content .col-1{ width:231px; margin-right:1px}
    #page1 #content .bg{ background:url(images/tail.gif) repeat-y 231px top }
    #page1 #content .bg1{ background:url(images/tail.gif) repeat-y 463px top }
    #page1 #content .bg2{ background:url(images/tail.gif) repeat-y 695px top }
    /*======= index-1.html =======*/
    #page2 #content .col-1{ width:339px; margin-right:0}
    #page2 #content .col-2{ width:590px}
    #page2 #content .col-3{ width:154px; margin-right:32px}
    #page2 #content .col-4{ width:158px; margin-right:30px}
    #page2 #content .col-5{ width:155px; margin-right:0}
    /*======= index-2.html =======*/
    #page3 #content .col-1{ width:590px; margin-right:0}
    #page3 #content .col-2{ width:339px}
    #page3 #content .col-3{ width:188px; margin-right:0}
    #page3 #content .col-4{ width:155px; margin-right:0}
    /*======= index-3.html =======*/
    #page4 #content .col-1{ width:339px; margin-right:0}
    #page4 #content .col-2{ width:590px}
    #page4 #content .col-3{ width:95px; margin-right:2px; text-align:right; line-height:1em; padding-top:3px}
    #page4 #content .col-4{ width:188px; margin-right:0}
    /*======= index-4.html =======*/
    #page5 #content .col-1{ width:590px; margin-right:0}
    #page5 #content .col-2{ width:339px}
    #page5 #content .col-3{ width:95px; margin-right:2px; text-align:right; line-height:1em; padding-top:3px}
    #page5 #content .col-4{ width:188px; margin-right:0}
    /*======= footer =======*/
    #footer { height:110px; }
    The CSS of the style is as follows:
    /* CSS Document */
    * { margin:0; padding:0;}
    html, body { height:100%; }
    body {font-size:100%; line-height:1.125em;}
    html, input, textarea {
    font-family: "Century Gothic";
    color:#646464;
    .alignMiddle{ vertical-align:middle}
    .alignCenter{ text-align: center}
    .container1{ width:100%}
    object { vertical-align:top; outline:none}
    .clear { clear:both;}
    .fleft{ float:left}
    .fright{ float:right}
    div.container { overflow:hidden; width: 100%;}
    a img{ border:0}
    img{ vertical-align:top;  }
    a{color:#000000; text-decoration:underline; outline:none}
    a:hover{text-decoration:none}
    .link{color:#000000; background:url(images/marker.gif) top left no-repeat; padding-left:20px; background-position:0 5px; text-decoration:none; font-size:.916em  }
    .link:hover{text-decoration:underline }
    .button{color:#fff; font-size:.916em; line-height:20px ; padding:2px 8px 8px 6px; text-decoration:none;  }
    .button:hover{color:#000; background:url(images/button.gif) top left no-repeat; padding:2px 8px 8px 6px; text-decoration:none; line-height:20px ;  }
    .current{color:#000; background:url(images/button.gif) top left no-repeat; padding:2px 8px 8px 6px; text-decoration:none; line-height:20px ;  }
    ul{margin:0; padding:0; list-style:none;}
    ul li a{color:#646464; text-decoration: underline; line-height:1.66em}
    ul li a:hover { text-decoration:none; }
    .ul1 li{background:url(images/marker.gif) top left no-repeat; background-position:0 5px; margin:0; padding-left:10px; }
    .ul1 li a{color:#646464; text-decoration:none ; line-height:1.5em}
    .ul1 li a:hover { text-decoration:underline; }
    .ul li{background:url(images/tail-1.gif) repeat-x bottom; margin:0; padding-left:0; }
    .ul li span{color:#646464; float:right; background:url(images/tail-2.gif) repeat-x bottom;}
    .ul li a{color:#646464; text-decoration: underline; line-height:1.66em;  background:url(images/tail-2.gif) repeat-x bottom;}
    .ul li a:hover { text-decoration:none; }
    .link-1 { display:block; float:left; background:url(images/link_bg.gif) left top repeat-x; color:#ffffff; text-decoration:none; }
    .link-1 em { display:block; background:url(images/link_left.gif) no-repeat left top;}
    .link-1  b { display:block; background:url(images/link_right.gif) no-repeat right top; padding:0 5px 3px 7px; font-weight:normal; font-style:normal;}
    .link-1:hover{ text-decoration:none; color:#627311}
    .link-2 { display:block; float:left; background:url(images/link_bg.gif) left top repeat-x; color:#ffffff; text-decoration:none; }
    .link-2 em { display:block; background:url(images/link_left.gif) no-repeat left top;}
    .link-2  b { display:block; background:url(images/link_right.gif) no-repeat right top; padding:0 15px 3px 17px; font-weight:normal; font-style:normal;}
    .link-2:hover{ text-decoration:none; color:#627311}
    /*header*/
    #header {font-size:0.75em; color:#646464 }
    #header .logo{ margin:19px 0 9px 0 }
    #header .indent{margin:30px 0 0 755px; position:absolute; width:175px; color:#625a49}
    #page1 #header .indent1{padding:40px 0 0 565px}
    #header .indent1{padding:22px 0 0 0px}
    #header .indent2{padding:11px 0 0 397px}
    #header .img-left{ float:left; margin:0 31px 0 0}
    #header .img-indent{ margin:0 24px 0 0}
    #header .img-indent1{ margin:0 23px 0 0;}
    #header .title{  margin-bottom:11px}
    #header a{ color:#625a49; text-decoration:none}
    #header a:hover{text-decoration: underline}
    .flash{ margin:0 -27px 0 -25px; position:relative}
    .flash1{ margin:0 0 0 -25px; position: absolute}
    #page1 .bg-1{
    background-image: url(images/1page_img1.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    #page1 .bg-2{ background:url(images/1page_img2.jpg) no-repeat bottom right}
    #page1 .bg-3{ background:url(images/1page_img3.jpg) no-repeat bottom right}
    #page1 .bg-4{ background:url(images/1page_img4.jpg) no-repeat bottom right}
    .bg-5{ background:url(images/bg-1.gif) repeat-x top #e5e5e5; width:100%}
    .bg-6{ background:url(images/bg-2.gif) repeat-x top #fff; width:100%}
    /*content*/
    #content{ font-size:0.75em; width:100%; text-align:left; background:url(images/bg_cont.gif) repeat-x top #fff}
    #content .indent-main{padding:11px 0 0 0}
    #content .indent-main1{padding:3px 0 0 0}
    #content .indent-col{padding:14px 0 28px 20px}
    #content .indent-col1{padding:32px 14px 24px 15px}
    #content .indent-col2{padding:32px 28px 0 28px}
    #content .title{  margin-bottom:8px}
    #content .img-left{ float:left; margin:0 20px 16px 0}
    #content .img-right{ float:right; margin:0 0 0 10px}
    #content .img-indent{ margin:0 0 16px 0}
    #content p{ margin:0 0 17px 0}
    #content .p{ margin:0}
    #content .p1{ margin:0 0 17px 0}
    #content h4{color:#8b870e; font-size:1em; margin-bottom:13px;  }
    #content .tail{ background:url(images/tail2.gif) repeat-x bottom; padding-bottom:26px; margin-bottom:21px}
    .txt{ color:#8e9c2e; font-weight:normal}
    .txt a{ color:#8e9c2e; }
    #content .indent{padding:15px 0 0 0}
    /*box*/
    .box{ background:#fcfcfc; width:100%;}
    .box .indent-box{ padding:11px 18px 11px 20px; }
    .box .indent-box1{ padding:11px 10px 11px 10px; }
    /*footer*/
    #footer { color:#5a5a5a; text-transform:uppercase; font-size:0.6875em ; }
    #footer .indent-footer{ padding:37px 0 0 0; background:url(images/bot.gif) repeat-x top;}
    #footer a {color:#5a5a5a; text-decoration:underline} 
    #footer a:hover {  text-decoration:none}
    .jamp{ width:69px;}
    .jamp1{ width:64px;}
    .jamp2{ width:58px;}
    .jamp3{ width:52px;}
    select{font-size:12px; color:#646464; height:19px; font-family: Arial, Helvetica, sans-serif;}
    .indent-2{ position:relative; padding-right:20px; float:left}
    .h{ height:29px}
    .block-contact span{ float:right; margin-right:50px}
    input{
    width:183px; height:17px;
    font-size:1em;
    color:#646464;
    padding-left:5px;
    textarea{
    width:183px; height:57px;
    font-size:1em;
    color:#646464;
    padding-left:5px;
    margin-bottom:11px;
    overflow:auto}
    .textarea{
    width:183px; height:142px;
    font-size:1em;
    color:#646464;
    padding-left:5px;
    margin-bottom:11px;
    overflow:auto}
    The JS page is as follows:
    var ElementMaxHeight = function() {
      this.initialize.apply(this, arguments);
    ElementMaxHeight.prototype = {
      initialize: function(className) {
        this.elements = document.getElementsByClassName(className || 'maxheight');   
        this.textElement = document.createElement('span');
        this.textElement.appendChild(document.createTextNode('A'));
        this.textElement.style.display = 'block';
        this.textElement.style.position = 'absolute';
        this.textElement.style.fontSize = '1em';
        this.textElement.style.top = '-1000px';
        this.textElement.style.left = '-1000px';
        document.body.appendChild(this.textElement);
        this.textElementHeight = document.getDimensions(this.textElement).height;
        var __object = this;
        var __checkFontSize = this.checkFontSize;
        this.checkFontSizeInterval = window.setInterval(function() {return __checkFontSize.apply(__object)}, 500);
        this.expand();
        // Refresh elements height onResize event
        var __expand = this.expand;
        if (window.addEventListener) {
          window.addEventListener('resize', function(event) {return __expand.apply(__object, [( event || window.event)])}, false);
        } else if (window.attachEvent) {
          window.attachEvent('onresize', function(event) {return __expand.apply(__object, [( event || window.event)])});
      expand: function() {
        this.reset();
       for (var i = 0; i < this.elements.length; i++) {  
          this.elements[i].style.height = document.getDimensions(this.elements[i].parentNode).height + 'px';
      reset: function() {
        for (var i = 0; i < this.elements.length; i++) {   
          this.elements[i].style.height = 'auto';
      checkFontSize: function() {
       var height = document.getDimensions(this.textElement).height;
       if(this.textElementHeight != height) {
        this.textElementHeight = height;
        this.expand();
    if (!!document.evaluate) {
      document._getElementsByXPath = function(expression, parentElement) {
        var results = [];
        var query = document.evaluate(expression, parentElement || document,
          null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
        for (var i = 0, length = query.snapshotLength; i < length; i++)
          results.push(query.snapshotItem(i));
        return results;
    document.getElementsByClassName = function(className, parentElement) {
      if (!!document.evaluate) {
        var q = ".//*[contains(concat(' ', @class, ' '), ' " + className + " ')]";
        return document._getElementsByXPath(q, parentElement);
      } else {
        var children = (parentElement || document.body).getElementsByTagName('*');
        var elements = [], child;
        for (var i = 0, length = children.length; i < length; i++) {
          child = children[i];
          if (child.className.length != 0 &&
              (child.className == className ||
               child.className.match(new RegExp("(^|\\s)" + className + "(\\s|$)")))) {     
            elements.push(child);
        return elements;
    document.getDimensions = function (element) {
      var display = element.style.display;
      if (display != 'none' && display != null) { // Safari bug
        return {width: element.offsetWidth, height: element.offsetHeight};
      return {width: originalWidth, height: originalHeight};

    A sticky footer is position:fixed and therefor always visible in the bottom of browser viewports -- even when users scroll up or down the page.
    Sticky Footer Demo:
    http://alt-web.com/DEMOS/CSS2-Sticky-Footer.shtml
    I believe what you're trying to achieve is 100% height on long & short pages.  Try this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>100% height page layout</title>
    <style type="text/css">
    /**==========================
    100% height layout
    ===========================*/
    html,body {
    margin:0;
    padding:0;
    height:100%; /* needed for container min-height */
    background:gray;
    font-family:arial,sans-serif;
    font-size:small;
    color:#666;
    zoom: 1;
    #container {
    position:relative; /* needed for footer positioning*/
    margin:0 auto; /* center, not in IE5 */
    width:1000px;
    background:#FF9999;
    height:auto !important; /* real browsers */
    height:100%; /* IE6: treated as min-height*/
    min-height:100%; /* real browsers */
    #header {
    padding:1em;
    background:#ddd;
    min-height: 95px;
    border-bottom:6px double gray;
    #content {
    padding:1em 1em 5em; /* bottom padding for footer */
    #footer {
    position:absolute;
    width:100%;
    bottom:0; /* stick to bottom */
    background:#ddd;
    min-height: 95px;
    border-top:6px double gray;
    #footer p {padding:1em}
    </style>
    </head>
    <body>
    <div id="container">
    <div id="header">
    <p>here is the header</p>
    </div>
    <div id="content">
    <p>Here is the content</p>
    </div>
    <div id="footer">
    <p>Here is the footer</p>
    </div>
    <!--end container --></div>
    </body>
    </html>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • I wnat to add new fieldtext in the alv list output plz tell me

    hi,
    i whant add new fieldtext in the list output, plz tell me where can i modify it.
    CORRECTIONS
    DATE       CORRECTION NOTE    AUTHOR DESCRIPTION
    09.03.2001 L9CK045451 0388404 XSC    Wrong list output for multiple Os
    05.06.2001 AL0K023393 0410219 Lud    Wrong keydate for search with
                                         Pchbegda and pchendda.
    22.04.2004 S6BK024775 730486  PS     Too many selection parameters in
                                         header
    19.06.2006 S6BK035494 956731  JF     No sorting by qualification
    REPORT RHPK_FIND_PERS_WITH_EXPIRED_QU MESSAGE-ID PQ.
    DATA  AUFRUF(8).
    TABLES : OBJEC, GDSET.
    DATA  LIST.
    DATA  MARKFIELD(1) TYPE C.
    ALV_POOL
    TYPE-POOLS SLIS.
    INCLUDES
    INCLUDE .
    INCLUDE RHPEINI0.
    TABLES
    DATA: orgeh_BUFFER like hrobject OCCURS 1 WITH HEADER LINE.
    DATA: OBJECTS    LIKE HRSOBID    OCCURS 1 WITH HEADER LINE.
    DATA: h_OBJEC    LIKE objec    OCCURS 0 WITH HEADER LINE.
    DATA: pers_objects LIKE HRSOBID    OCCURS 1 WITH HEADER LINE.
    DATA: QUALI_TAB LIKE QUALI_PROF OCCURS 1 WITH HEADER LINE.
    DATA: PERSONS LIKE PERSQ_PROF OCCURS 1 WITH HEADER LINE.
    DATA: H_PERSONS LIKE HRPE_PROFL OCCURS 1 WITH HEADER LINE.
    DATA: LIST_OUTPUT LIKE PERSQ_PROF OCCURS 1 WITH HEADER LINE.
    DATA: BOOK_EVENT_TAB LIKE PERSQ_PROF OCCURS 1 WITH HEADER LINE.
    DATA: PLAN_EVENT_TAB LIKE PERSQ_PROF OCCURS 1 WITH HEADER LINE.
    DATA H_SUITED LIKE DYNP_PCRIT-SUITED.
    DATA: O_COLOR LIKE STREEATTR-COLOR.
    DATA: O_INTENSIV LIKE STREEATTR-INTENSIV.
    DATA  SHOW_KEY.
    DATA EVENT.
    DATA: HTEXT LIKE P1000-STEXT.
    DATA: EVENT_TAB LIKE PERSQ_PROF OCCURS 1 WITH HEADER LINE.
    DATA: COLLECTED_EVENTS LIKE PERSQ_PROF OCCURS 1 WITH HEADER LINE.
    DATA: SUBTY_TAB LIKE HRPE_OTYPE_SUBTY OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF  HIDE_STRU,
            PERSTYPE LIKE HROTYPE-OTYPE,
            PERSOBID LIKE HRSOBID-SOBID,
            PERSTXT LIKE PERSQ_PROF-STEXT,
            SCALE_ID LIKE HRPE_PROFQ-SCALE_ID,
            TRAININGTYPE LIKE HRP1000-OTYPE,
            TRAININGID   LIKE HRP1000-OBJID,
            TRAININGSTXT LIKE HRP1000-STEXT,
            QUALID LIKE QUALI_PROF-QUALID,
            QUALTEXT LIKE QUALI_PROF-QUALSTXT,
          END OF HIDE_STRU.
    DATA: BEGIN OF EXTAB OCCURS 10,
             FCODE LIKE RSMPE-FUNC,
          END OF EXTAB.
    DATA:  CURRENT_QUALID LIKE QUALI_PROF-QUALID.
    DATA:  CURRENT_TRAININGSID LIKE HRP1000-OBJID.
    DATA:  CURRENT_TRAININGTYPE LIKE HRP1000-OTYPE.
    DATA: SUBRC LIKE SY-SUBRC.
    VARIABLES
    DATA: OBJID LIKE P1000-OBJID.
    DATA: H_LINE_COUNT TYPE I.
    DATA: H_TABIX1 LIKE SY-TABIX.
    ALV-Variables
    DATA: alv_events_line    TYPE slis_alv_event.         "header line
    DATA ALV_EVENTS TYPE SLIS_T_EVENT.
    DATA GT_ALV_LIST_TOP_OF_LIST TYPE SLIS_T_LISTHEADER.
    DATA: gt_events TYPE SLIS_T_EVENT.
    DATA G_REPID LIKE SY-REPID.
    DATA G_VARIANT LIKE DISVARIANT.
    DATA ALV_USERCOMMAND TYPE SLIS_FORMNAME VALUE 'USER_COMMAND'.
    DATA G_USERCOMMAND_FOR_RANKINGLIST TYPE SLIS_FORMNAME VALUE
    'USER_COMMAND_FOR_RANKINGLIST'.
    DATA ALV_LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA: GT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA: ALV_OUTPUT  LIKE HRPDV_EXPIRED_Q OCCURS 0 WITH HEADER LINE.
    DATA: Help_OUTPUT LIKE HRPDV_EXPIRED_Q OCCURS 0 WITH HEADER LINE.
    begin of Dynpro 5020 - POPUP: WEITER
    DATA: OK_CODE_5020   LIKE SY-UCOMM.
    DATA: NO_ORG.                          "if no org selected
    DATA: H_TABIX LIKE SY-TABIX.
    begin of Dynpro 20nn - Header
    TABLES: DYNP_RHPP.
    SELECTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-005.
    PARAMETERS:
       H_EVENTS LIKE DYNP_RHPP-GEN_TRAIN,  "with training sugg
       H_QUAL   LIKE DYNP_RHPP-EXPIRED_QUAL. "with Qual
    SELECTION-SCREEN END OF BLOCK B3.
    INITIALIZATION
    INITIALIZATION.
      PERFORM READ_T77S0_PARAMETERS_FOR_PE.
    get user parameters/Planvariante und Beginndatum setzen:
      PCHOTYPE = $ORGEH.
      CALL FUNCTION 'RHP0_USER_PARAMETERS_GET'
           EXPORTING
                FILL_IF_INITIAL = 'X'
           IMPORTING
                PLVAR           = PCHPLVAR
                BEGDA           = PCHBEGDA
                endda           = Pchendda    "Correction 0410219
                WITH_KEY        = SHOW_KEY
              SUBSTITUTE      =
              ESSENTIAL       = only_essential
                ORG_UNIT        = PCHOBJID-LOW
          EXCEPTIONS
                OTHERS     = 0.
    PCHBEGDA = LOW_DATE.   "Correction note: 0410219 / AL0K023393
    get menu text for key on/off
      PERFORM USER_MENU_TEXT_KEY(SAPLRHP0) USING G_MENU_TEXT_KEY.
    start-of-selection
    START-OF-SELECTION.
    terminate the selection if objid isn't given
      READ TABLE PCHOBJID INDEX 1 TRANSPORTING NO FIELDS.
      IF SY-SUBRC <> 0
      AND PCHOBJID IS INITIAL.
        PCHOBJID-SIGN   = 'I'.
        PCHOBJID-OPTION = 'EQ'.
        PCHOBJID-LOW    = '00000001'.
        APPEND PCHOBJID.
        NO_ORG = TRUE.
      ELSE.
        NO_ORG = FALSE.
      ENDIF.
    GET OBJEC.
    terminate the selection if objid isn't given
      IF NO_ORG = TRUE.
        EXIT.
      ENDIF.
      OBJECTS-PLVAR = PCHPLVAR.
      OBJECTS-OTYPE = PCHOTYPE.
      OBJECTS-SOBID = OBJEC-REALO.
      APPEND OBJECTS.
    Für das lesen der Organisationseinheit
      h_OBJEC-PLVAR = OBJEC-PLVAR.
      h_OBJEC-OTYPE = OBJEC-OTYPE.
      h_OBJEC-OBJID = OBJEC-objid.
      append h_objec.
      Read table h_objec index 1 transporting no fields.
      if sy-subrc = 0.
    Fill Buffer
        orgeh_BUFFER = h_OBJEC.
        orgeh_BUFFER[] = h_OBJEC[].
        CALL FUNCTION 'RH_TEXT_BUFFER_FILL'
          TABLES
            OBJECTS = orgeh_BUFFER.
        Loop at h_OBJEC.
          H_TABIX = SY-TABIX.
    Read text of organisation
          CALL FUNCTION 'RH_READ_OBJECT'
               EXPORTING
                    PLVAR     = h_OBJEC-plvar
                    OTYPE     = h_OBJEC-otype
                    OBJID     = h_OBJEC-OBJID
               IMPORTING
                  OBEG      = h_objec-begda
                  OEND      = h_objec-endda
                   SHORT     = short
                    STEXT     = h_OBJEC-stext
              EXCEPTIONS
                    NOT_FOUND = 1
                    OTHERS    = 2.
          IF SY-SUBRC = 0.
            modify h_OBJEC index H_TABIX.
          ENDIF.
        endloop.
      endif.
    end-of-selection
    END-OF-SELECTION.
    read objects of the organizational unit
      OBJID = OBJECTS-SOBID.
      CALL FUNCTION 'RHPH_PICK_UP_PERSONS'
          EXPORTING
               BEGDA      = PCHBEGDA    "Correction 0410219
               ENDDA      = PCHENDDA    "Correction 0410219
             STATUS     = '1'
               WITH_STEXT = 'X'
           TABLES
                OBJECTS    = OBJECTS
                PERSONS    = H_PERSONS
          EXCEPTIONS
               UNDEFINED  = 1
               OTHERS     = 2.
      IF SY-SUBRC = 0.
    prepare objects !
        objects-otype = h_persons-ttype.
        objects-sobid = h_persons-tobid.
        append objects.
      ELSE.
        EXIT.
      ENDIF.
    CLEAR OBJECTS. REFRESH OBJECTS.
    prepare sel_objects !
      pers_objects-PLVAR = PCHPLVAR.
      LOOP AT H_PERSONS.
        pers_objects-OTYPE = H_PERSONS-TTYPE.
        pers_objects-SOBID = H_PERSONS-TOBID.
        APPEND pers_objects.
      ENDLOOP.
    sort objects and delete adjacent duplicates
      SORT Pers_OBJECTS BY PLVAR OTYPE SOBID.
      DELETE ADJACENT DUPLICATES FROM Pers_OBJECTS COMPARING PLVAR OTYPE
    SOBID.
      CALL FUNCTION 'RHPK_FIND_PERS_WITH_EXPIRED_Q'
           EXPORTING
               PLVAR            = PCHPLVAR
               CHECK_BEGDA      = PCHBEGDA
               CHECK_ENDDA      = PCHENDDA
               SUBTY            = $ownsb                        "'B032'
             only_essential   =
             target_otype     =
             target_ap_iea    =
           TABLES
                IMP_PER_TAB     = pers_objects
                QUALI_TAB       = QUALI_TAB
                PERSONS         = LIST_OUTPUT
            altq_tab          =
          EXCEPTIONS
               NO_QUALIFICATION = 1
               NO_PERSON_FOUND  = 2
               OTHERS           = 3.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    100% case
      READ TABLE pers_objects INDEX 1 TRANSPORTING NO FIELDS.
      IF SY-SUBRC = 0.
        sort pers_objects by otype sobid.
      check the selected persons: if org.unit was selected !
        Loop at pers_objects.
          H_TABIX = SY-TABIX.
          READ TABLE LIST_OUTPUT WITH KEY  OTYPE = pers_objects-OTYPE
                                           SOBID = pers_objects-SOBID
                                           BINARY SEARCH.
          IF SY-SUBRC <> 0.
          person doesn't belong to the selected org.unit
          DELETE LIST_OUTPUT INDEX H_TABIX.
          ENDIF.
        ENDLOOP.
      ENDIF.                               "org.unit check needed ?
    end-of-selection.
      sort h_objec by otype objid.
      sort list_output by otype sobid.
      sort h_persons by ttype tobid.
    ALV-Liste aufbauen
      loop at h_objec.
        loop at h_persons where otype = h_objec-otype     "XSC
                          and   sobid = h_objec-objid.    "XSC
          Read table list_output with key
                                 otype = h_persons-ttype
                                 sobid = h_persons-tobid
                                 binary search.
          if sy-subrc = 0.
            h_tabix1 = sy-tabix.
            while sy-subrc = 0.
              clear alv_output.                            "XSC
              ALV_OUTPUT-otype    = h_objec-otype.
              ALV_OUTPUT-sobid    = h_objec-objid.
              ALV_OUTPUT-stext    = h_objec-stext.
              ALV_OUTPUT-Ptype    = LIST_OUTPUT-otype.
              ALV_OUTPUT-pobid    = LIST_OUTPUT-sobid.
              ALV_OUTPUT-pshort   = LIST_OUTPUT-short.
              ALV_OUTPUT-ptext    = LIST_OUTPUT-stext.
              ALV_OUTPUT-qualid   = LIST_OUTPUT-qualid.
              ALV_OUTPUT-qualstxt = LIST_OUTPUT-qualstxt.
              ALV_OUTPUT-expbegda = LIST_OUTPUT-vbegda.
              ALV_OUTPUT-expendda = LIST_OUTPUT-vendda.
          PERFORM FIND_TRAINING TABLES QUALI_TAB EVENT_TAB COLLECTED_EVENTS
                    USING $PLVAR $GDATE H_EVENTS H_QUAL.
              IF NOT EVENT_TAB[] IS INITIAL.
                READ TABLE COLLECTED_EVENTS WITH KEY
                                     QUALID = LIST_OUTPUT-QUALID.
                IF SY-SUBRC = 0.
                  ALV_OUTPUT-ICON_S_EVENTS = ICON_BOOKEVENT.
                endif.
              ENDIF.
              Append ALV_OUTPUT.
              h_tabix1 = h_tabix1 + 1.
              READ TABLE list_output INDEX h_tabix1
                         COMPARING otype sobid.
            endwhile.
          endif.
        endloop.
      endloop.
    check if indicator for qualification view is set
      IF h_qual = 'X'.                                          "note 956731
        SORT alv_output by qualid OTYPE SOBID ptype pobid       "note 956731
        expbegda expendda.                                      "note 956731
      ELSE.                                                     "note 956731
        SORT alv_output by OTYPE SOBID ptype pobid qualid expbegda expendda.
      ENDIF.                                                    "note 956731
      DELETE ADJACENT DUPLICATES FROM ALV_OUTPUT COMPARING OTYPE SOBID ptype
        pobid qualid expbegda expendda.
    stext_AQ und icon-Feld noch nicht gefüllt
        perform PREPARE_TOP_OF_LIST.
        perform Build_FIELDCAT using GT_FIELDCAT[] H_EVENTS.
        perform ALV_LAYOUT USING alv_layout.
        G_REPID          = SY-REPID.
        G_VARIANT-REPORT = G_REPID.
        PERFORM EVENTTAB_BUILD USING GT_EVENTS.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
        I_INTERFACE_CHECK        = 'X'
            I_CALLBACK_PROGRAM       = G_REPID
        I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'
            I_CALLBACK_USER_COMMAND  = ALV_USERCOMMAND
            I_STRUCTURE_NAME         = 'HRPDV_EXPIRED_Q'
            IS_LAYOUT                = ALV_LAYOUT
            IT_FIELDCAT              = GT_FIELDCAT[]
        IT_EXCLUDING             =
        IT_SPECIAL_GROUPS        =
        IT_SORT                  =
        IT_FILTER                =
        IS_SEL_HIDE              =
            I_DEFAULT                = 'X'
            I_SAVE                   = 'A'
            IS_VARIANT               = G_VARIANT
            IT_EVENTS                = GT_EVENTS
        IT_EVENT_EXIT            =
        IS_PRINT                 =
        IS_REPREP_ID             =
        I_SCREEN_START_COLUMN    = 0
        I_SCREEN_START_LINE      = 0
        I_SCREEN_END_COLUMN      = 0
        I_SCREEN_END_LINE        = 0
        IMPORTING
          E_EXIT_CAUSED_BY_CALLER  =
          ES_EXIT_CAUSED_BY_USER   =
          TABLES
            T_OUTTAB                 = ALV_OUTPUT
          EXCEPTIONS
              PROGRAM_ERROR            = 1
              OTHERS                   = 2  .
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    *&      Form  FIND_TRAINING
          text
         -->P_QUALI_TAB  text
         -->P_EVENT_TAB  text
         -->P_$PLVAR  text
         -->P_GDATE  text
         -->P_H_EVENT  text
         -->P_H_QUAL  text
    FORM FIND_TRAINING TABLES  P_QUALI_TAB STRUCTURE QUALI_TAB
                               P_EVENT_TAB STRUCTURE EVENT_TAB
                               P_COLLECTED_EVENTS STRUCTURE COLLECTED_EVENTS
                       USING   VALUE(P_$PLVAR) LIKE P1000-PLVAR
                               VALUE(P_GDATE) LIKE P1000-GDATE
                               VALUE(P_H_EVENT) TYPE ANY
                               VALUE(P_H_QUAL) TYPE ANY.
      IF NOT P_H_EVENT IS INITIAL.
        READ TABLE EVENT_TAB INDEX 1 TRANSPORTING NO FIELDS.
        IF SY-SUBRC <> 0.
          CLEAR P_EVENT_TAB. REFRESH EVENT_TAB.
          CLEAR P_COLLECTED_EVENTS. REFRESH P_COLLECTED_EVENTS.
          IF EVENT = FALSE.
            EVENT = TRUE.
          ELSE.
            EVENT = FALSE.
          ENDIF.
          CALL FUNCTION 'RHPH_FIND_TRAINING_FOR_QUAL'
               EXPORTING
                    PLVAR            = PCHPLVAR
                    GDATE            = SY-DATUM
                  GET_NAME         = 'X'
               TABLES
                    QUALI_TAB        = QUALI_TAB
                    TO_Q_TAB         = EVENT_TAB
              EXCEPTIONS
                   NO_QUALIFICATION = 1
                   NO_OBJECT_FOUND  = 2
                   TECHNICAL_ERROR  = 3
                   OTHERS           = 4.
          IF SY-SUBRC = 0.
    the found qualifications are picked up into table event_tab
          ENDIF.
          IF SY-SUBRC = 1.
            MESSAGE S015.   "Zu den Eingaben wurden keine Daten gefunden
          ENDIF.
          IF SY-SUBRC > 2.
            EXIT.
          ENDIF.
    collect events when there are double.
    Veranstaltungen kollektieren, Können mehrfach auftauchen, da
    verschiedenen Qualifikationen von gleichen Veranstaltungen vermittelt
          LOOP AT P_EVENT_TAB INTO P_COLLECTED_EVENTS.
            APPEND P_COLLECTED_EVENTS.
          ENDLOOP.
          SORT P_COLLECTED_EVENTS BY QUALID STEXT.
        ENDIF.
      ENDIF.
    ENDFORM.                               " FIND_TRAINING
    *&      Form  PREPARE_TOP_OF_LIST
          text
    -->  p1        text
    <--  p2        text
    FORM PREPARE_TOP_OF_LIST.
      DATA ALV_TOP_OF_LIST TYPE SLIS_LISTHEADER.  "typ, key, info
      DATA STEXT LIKE HRPDV_SUCCESSOR_VIEW-TTEXT.
      DATA P_SUBRC LIKE SY-SUBRC.
      DATA P_STEXT LIKE T777O-OTEXT.
      DATA l_tabix like sy-tabix value 0.
      DATA: h_counter TYPE i.                             "note 730486
      ALV_TOP_OF_LIST-TYP = 'H'.
      ALV_TOP_OF_LIST-INFO = TEXT-REQ.
      APPEND ALV_TOP_OF_LIST TO GT_ALV_LIST_TOP_OF_LIST.
    Organisationseinheit
      ALV_TOP_OF_LIST-typ = 'S'.
    Read text for organisationunit
      PERFORM READ_TEXT_OTYPE_T777O(SAPLRHP0) USING SY-LANGU $ORGEH
                                                    P_STEXT P_SUBRC.
      ALV_TOP_OF_LIST-key = P_STEXT.
    fill buffer for read organisation-text
      CALL FUNCTION 'RH_TEXT_BUFFER_FILL'
         EXPORTING
              CHECK_STRU_AUTH = 'X'
              WITH_EXTINT     = ' '
           TABLES
                OBJECTS         = OBJECTS.
    loop at objects for multipleselection
      clear h_counter.                          "note 730486
      LOOP AT OBJECTS.
        $OBJID = OBJECTS-SOBID.
        CALL FUNCTION 'RH_READ_OBJECT'
             EXPORTING
                PLVAR           = OBJECTS-PLVAR
                OTYPE           = OBJECTS-OTYPE
                OBJID           = $OBJID
             IMPORTING
              SHORT           = short
                STEXT           = STEXT
             EXCEPTIONS
                NOT_FOUND       = 1
                OTHERS          = 2.
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        IF h_counter >= 15.                               "note 730486
          MOVE '( ... )' TO ALV_TOP_OF_LIST-INFO.         "note 730486
          APPEND ALV_TOP_OF_LIST TO gt_alv_list_top_of_list.
          "note 730486
          EXIT.                                           "note 730486
        ENDIF.                                            "note 730486
        CONCATENATE $ORGEH OBJECTS-SOBID STEXT INTO
        ALV_TOP_OF_LIST-INFO SEPARATED BY SPACE.
        APPEND ALV_TOP_OF_LIST TO GT_ALV_LIST_TOP_OF_LIST.
        CLEAR ALV_TOP_OF_LIST.
        ALV_TOP_OF_LIST-typ = 'S'.
        l_tabix = l_tabix + 1.
        ADD 1 TO h_counter.                         "note 730486
      ENDLOOP.
    CLEAR ALV_TOP_OF_LIST.
      ALV_TOP_OF_LIST-TYP  = 'S'.
      ALV_TOP_OF_LIST-key = TEXT-003.
      WRITE PCHBEGDA TO ALV_TOP_OF_LIST-INFO.
      APPEND ALV_TOP_OF_LIST TO GT_ALV_LIST_TOP_OF_LIST.
      clear ALV_TOP_OF_LIST-INFO.
      ALV_TOP_OF_LIST-key = TEXT-004.
      WRITE PCHENDDA TO ALV_TOP_OF_LIST-INFO.
      Append ALV_TOP_OF_LIST TO GT_ALV_LIST_TOP_OF_LIST.
    ENDFORM.                               " PREPARE_TOP_OF_LIST
    *&      Form  BUILD_FIELDCAT
          text
         -->P_GT_FIELDCAT[]  text
    FORM BUILD_FIELDCAT USING  P_GT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV
                               P_H_EVENTS.
      DATA: WA_FIELDCAT LIKE LINE OF P_GT_FIELDCAT.
      DATA: P_REPNAME LIKE SY-REPID,
            L_TABIX LIKE SY-TABIX.         "local variable for sy-tabix.
      P_REPNAME = SY-REPID.
    Erstellen des Feldkataloges
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
         EXPORTING
               I_PROGRAM_NAME         = P_REPNAME
               I_INTERNAL_TABNAME     =
               I_STRUCTURE_NAME       = 'HRPDV_EXPIRED_Q'
               I_CLIENT_NEVER_DISPLAY = 'X'
               I_INCLNAME             = PRONAME
         CHANGING
               CT_FIELDCAT            = P_GT_FIELDCAT
         EXCEPTIONS
               INCONSISTENT_INTERFACE = 0
               PROGRAM_ERROR          = 0
               OTHERS                 = 0.
      LOOP AT P_GT_FIELDCAT INTO WA_FIELDCAT.
        l_tabix = sy-tabix.
        CASE WA_FIELDCAT-FIELDNAME.
          when 'OTYPE'.
            WA_FIELDCAT-DDICTXT = 'L'.
          when 'SOBID'.
            WA_FIELDCAT-DDICTXT = 'L'.
          WHEN 'STEXT'.
            WA_FIELDCAT-DDICTXT = 'L'.
          when 'PTYPE'.
            WA_FIELDCAT-DDICTXT = 'L'.
          when 'POBID'.
            WA_FIELDCAT-DDICTXT = 'L'.
          when 'PSHORT'.
            WA_FIELDCAT-DDICTXT = 'L'.
          WHEN 'PTEXT'.
            WA_FIELDCAT-DDICTXT = 'L'.
          WHEN 'QUALID'.
            WA_FIELDCAT-DDICTXT = 'L'.
          WHEN 'QUALSTXT'.
            WA_FIELDCAT-DDICTXT = 'L'.
          WHEN 'EXPBEGDA'.
            WA_FIELDCAT-DDICTXT = 'L'.
          WHEN 'EXPENDDA'.
            WA_FIELDCAT-DDICTXT = 'L'.
          WHEN 'ICON_S_EVENTS'.
            IF P_H_EVENTS IS INITIAL.
              WA_FIELDCAT-NO_OUT = 'X'.
            else.
              WA_FIELDCAT-DDICTXT = 'X'.
            endif.
        ENDCASE.
        MODIFY P_GT_FIELDCAT FROM WA_FIELDCAT INDEX l_tabix.
      ENDLOOP.
    ENDFORM.                               " BUILD_FIELDCAT
    *&      Form  ALV_LAYOUT
          text
         -->P_L_ALV_LAYOUT  text
    FORM ALV_LAYOUT USING    P_ALV_LAYOUT  TYPE slis_layout_alv.
    build layout
    P_LAYOUT-BOX_FIELDNAME = 'MARK_X'.   "fieldname for checkbox
      P_ALV_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
      P_ALV_LAYOUT-BOX_TABNAME   =  ALV_OUTPUT.   "tabname for checkbox
      p_ALV_layout-info_fieldname = 'ALV_COLOR'.
    ENDFORM.                               " ALV_LAYOUT
    FORM eventtab_build USING
    FORM EVENTTAB_BUILD USING RT_EVENTS TYPE SLIS_T_EVENT.
      DATA: LS_EVENT TYPE SLIS_ALV_EVENT.
      MOVE 'TOP_OF_PAGE' TO LS_EVENT-NAME.
      MOVE 'TOP_OF_PAGE' TO LS_EVENT-FORM.
      APPEND LS_EVENT TO RT_EVENTS.
    ENDFORM.                    "EVENTTAB_BUILD
    *FORM TOP_OF_PAGE
    FORM TOP_OF_PAGE.                                           "#EC CALLED
      NEW-PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY = GT_ALV_LIST_TOP_OF_LIST[].
    ENDFORM.                    "TOP_OF_PAGE
          FORM USER_COMMAND                                             *
    USER_COMMAND for the list of successor view                         *
    -->  r_ucomm                                                       *
    -->  rs_selfield                                                   *
    FORM USER_COMMAND USING ALV_UCOMM LIKE SY-UCOMM
          RS_SELFIELD TYPE SLIS_SELFIELD.                       "#EC CALLED
      DATA: SELECTED_LINE LIKE HRPDV_expired_q.
      DATA: SOBID_QUA LIKE P1000-OBJID.
      DATA: LT_PERS_TAB LIKE HRSOBID OCCURS 0 WITH HEADER LINE.
      CASE ALV_UCOMM.
        WHEN '&IC1'.                       "per Doppelklick auswählen
          READ TABLE ALV_OUTPUT INDEX
          RS_SELFIELD-TABINDEX INTO SELECTED_LINE.
          CASE RS_SELFIELD-FIELDNAME.
            WHEN 'POTYPE' or 'POBID' or 'PTEXT' or 'OTYPE' or 'SOBID' or
    'STEXT' or 'QUALID' or 'QUALSTXT' or 'EXPBEGDA' or 'EXPENDDA'.
              READ TABLE ALV_OUTPUT INDEX RS_SELFIELD-TABINDEX INTO
                    Help_output.
              IF SY-SUBRC <> 0.
                MESSAGE S027.               "Bitte gültige Zeile auswählen
                EXIT.
              Endif.
         IF ALV_OUTPUT-SOBID IS INITIAL.
           MESSAGE S015.  "Zu den Eingaben wurden keine Daten gefunden
         ELSE.
         converte the variable because of the different types
         SOBID_QUA = SELECTED_LINE-SOBID_QUA.
              CALL FUNCTION 'RHPP_SHOW_PROFILE'
                EXPORTING
                  PLVAR        = pchplvar
                  OTYPE        = SELECTED_LINE-PTYPE       "XSC
                  OBJID        = SELECTED_LINE-POBID       "XSC
                  BEGDA        = PCHBEGDA
                  ENDDA        = PCHENDDA
                  MAINTAIN     = ' '
                EXCEPTIONS
                  NO_AUTHORITY = 1
                  NOT_FOUND    = 2
                  OTHERS       = 3.
              CASE SY-SUBRC.
                WHEN 0.
                All right.
                WHEN 1.
                  MESSAGE S015.
                Zu Ihren Eingaben konnten keine Daten gefunden werden!
                WHEN 2.
                  MESSAGE E000.
                Dazu haben sie keine berechtigung!
                WHEN OTHERS.
                  MESSAGE E008.
                Es ist ein unvorhergesehener Fehler aufgetreten.
              ENDCASE.                     "sy-subrc.
              CLEAR ALV_OUTPUT.
       ENDIF.    "IF ALV_OUTPUT-SOBID IS INITIAL.
       CLEAR ALV_OUTPUT-SOBID.
            when 'ICON_S_EVENTS'.
              IF SELECTED_LINE-ICON_S_EVENTS IS INITIAL.
                MESSAGE S027.              "Bitte gültige Zeile auswählen
                EXIT.
              ENDIF.
              CLEAR LT_PERS_TAB.
              REFRESH LT_PERS_TAB.
              LT_PERS_TAB-PLVAR = pchPLVAR.
              LT_PERS_TAB-OTYPE = SELECTED_LINE-PTYPE.          "XSC
              LT_PERS_TAB-SOBID = SELECTED_LINE-POBID.          "XSC
              APPEND LT_PERS_TAB.
              SOBID_QUA = SELECTED_LINE-QUALID.
              CALL FUNCTION 'RHPP_SHOW_SUGGEST_EVENTS'
              EXPORTING
                P_PLVAR      = pchPLVAR
                P_SOBID_QUA  = SOBID_QUA
              P_PROFCY_REQ = SELECTED_LINE-RATING_REQ
                P_GDATE      = sy-datum
              TABLES
              EVENT_TAB    =
                PERS_TAB     = LT_PERS_TAB.
          endcase.
          CLEAR SELECTED_LINE.
      ENDCASE.                             "case sy-ucomm
    CLEAR SY-UCOMM.
    ENDFORM.                    "USER_COMMAND

    Pls be more specific in your question. If you want to include an extra field in your alv output, then read the field catalog table you created through "Reuse_alv_fieldcatalog_merge" and then add an extra entry in it giving the details of the field you want to add.. and then call the "resuse_alv_grid_display",
    Hope this helps. To be able to help you in a better way, kindly revert with any specific issue.
    Reward if helpful,
    Karan

  • How to disable a Entire row in a Matrix in Find Mode (User Form)

    Hi,
    How to disable a Entire row in a Matrix in Find Mode (User Form)
    Regards
    Jambu

    Hi,
       Iam using Bubble event = false in click event but the matrix row
    is allow to edit but we cant save the document in Find Mode That is fine.
    What is my actual requirement is In find mode matrix Row not allow to enter the data .
    For examble In ADD mode i enter the data in Three rows (Item Section - Matrix) and
    save the document. Whwn i open the document in find mode the three row is not allow
    to editable like the same functionality of PO, sales Order, etc ..
    Regards
    Jambu

  • Master / Details Regions with yui Calendar

    I have a Calendar of Events that I need to display.  I have put a yui Calendar in my Master Region, and need it to control the Details Region.  I can get the Details Region to show a single event per day.
    Is there a way to let the Details Region show multiple Events if they are scheduled on the same date?
    I do not have access to an external web server to post my page to, but here is the code to the Master/Details Region on my site:
    <div id="sidebar2">
        <div id="yuicalendar1"></div>
    <script type="text/javascript">
    // BeginWebWidget YUI_Calendar: yuicalendar1   (function() {
        var cn = document.body.className.toString();
        if (cn.indexOf('yui-skin-sam') == -1) {
          document.body.className += " yui-skin-sam";
      })();  var inityuicalendar1 = function() {
        var yuicalendar1 = new YAHOO.widget.Calendar("yuicalendar1");    // The following event subscribers demonstrate how to handle
        // YUI Calendar events, specifically when a date cell is
        // selected and when it is unselected.
        // See: http://developer.yahoo.com/yui/calendar/ for more
        // information on the YUI Calendar's configurations and
        // events.
        // The YUI Calendar API cheatsheet can be found at:
        // http://yuiblog.com/assets/pdf/cheatsheets/calendar.pdf
        //--- begin event subscribers ---//
        yuicalendar1.selectEvent.subscribe(selectHandler, yuicalendar1, true);
        yuicalendar1.deselectEvent.subscribe(deselectHandler, yuicalendar1, true);
        //--- end event subscribers ---//
    yuicalendar1.cfg.setProperty("title", "Calendar of Events", false);    yuicalendar1.render();
      }  function selectHandler(event, data) {
      // The JavaScript function subscribed to yuicalendar1.  It is called when
      // a date cell is selected.
      // alert(event) will show an event type of "Select".
      // alert(data) will show the selected date as [year, month, date].
      var formattedDateString = data[0][0][1] + "/" + data[0][0][2] + "/" + data[0][0][0];
      var r = dsCalendar.findRowsWithColumnValues({"Date": formattedDateString }, true);
      var region = Spry.Data.getRegion("classDetail");
      if(r){
       dsCalendar.setCurrentRow(r.ds_RowID);
       region.setState("showClass", true);
       } else {
        region.setState("ready", true);
      };  function deselectHandler(event, data) {
      // The JavaScript function subscribed to yuicalendar1.  It is called when
      // a selected date cell is unselected.
      };      // Create the YUI Calendar when the HTML document is usable.
      YAHOO.util.Event.onDOMReady(inityuicalendar1);
    // EndWebWidget YUI_Calendar: yuicalendar1
    </script>
    <div spry:detailregion="dsCalendar" spry:setrow="dsCalendar" id="classDetail">
    <div spry:state="showClass">
    <table width="100%" border="0" cellpadding="1">
       <tr>
         <td colspan="2"><h4>{Class}</h4></td>
        </tr>
       <tr>
        <td colspan="2">{Description}</td>
        </tr>
       <tr>
         <td>{Location}</td>
         <td>{Date}</td>
       </tr>
    </table>
        </div>
        <div spry:state="ready">
    There are no classes on this date. Please select another date.
    </div></div>
      <!-- end #sidebar2 --></div>
    And, here is the code to my "schedule.htm" file:
    Class
    Logo
    Description
    Location
    Date
    Dreamweaver CS4 Intermediate
    Take your skills to the next level with this training.
    Austin, TX
    12/15/2008
    InDesign CS4 Advanced
    This class is for experienced users that want to go beyond the basics.
    Phoenix, AZ
    12/18/2008
    Flex CS4 Data Services
    Learn about Live Cycle Data Services in this training.
    Austin, TX
    12/19/2008
    Flash CS4 Rich Content Creation
    From beginning to intermediate, learn how to animate with the latest tools.
    Austin, TX
    12/30/2008
    Photoshop Advanced
    Experienced Photoshop users will learn how to use advanced tools for image manipulation.
    Phoenix, AZ
    12/20/2008
    Dreamweaver CS4 Intermediate
    Take your skills to the next level with this training.
    Austin, TX
    12/01/2008
    InDesign CS4 Advanced
    This class is for experienced users that want to go beyond the basics.
    Phoenix, AZ
    12/08/2008
    Flex CS4 Data Services
    Learn about Live Cycle Data Services in this training.
    Austin, TX
    12/25/2008
    Flash CS4 Rich Content Creation
    From beginning to intermediate, learn how to animate with the latest tools.
    Austin, TX
    12/26/2008
    Photoshop Advanced
    Experienced Photoshop users will learn how to use advanced tools for image manipulation.
    Phoenix, AZ
    8/21/2009
    Short Course
    Seminar where the engineers come together to discuss TxDOT.
    Austin, TX
    8/26/2009
    Long Course
    Around the cementary, down to the high school, and back.
    Wolfforth, TX
    8/21/2009
    No Class
    No classes on this date.
    n/a
    Notice on the schedule.htm file, there are some classes that have the same date.  I would like the Details region to show multiple classes based on the date.  Is that even possible?
    Thanks!

    @strick,
    Don't know if you got this sorted out already, but I'll add an answer since I looked here when trying to figure this out.
    I had the same problem.
    You can get this to do what you want in two steps:
    1.)  Just below the line in your code that reads
    var formattedDateString = data[0][0][1] + "/" + data[0][0][2] + "/" + data[0][0][0];
    add the following code:
    function myFilterFunc(dataSet, row, rowNumber)
    // Filter all rows with date = selected date
    if (row['Date'] == formattedDateString){
    return row;   }
    else {
    return null;}
    // Filter the data.
    dscalendar.filter(myFilterFunc);
    2.) Just after the line in your code that reads
    <table width="100%" border="0" cellpadding="1">
    add the following code:
    <tr spry:repeat="dscalendar">
    Ok, one last step for the code that you've listed here.  You should be able to get rid of all the <tr> tags except for the outermost ones.  So, it could
    look like this:
    <table width="100%" border="0" cellpadding="1">
       <tr spry:repeat="dscalendar">
        <td colspan="2"><h4>{Class}</h4></td>
        <td colspan="2">{Description}</td>
        <td>{Location}</td>
        <td>{Date}</td>
       </tr>
    </table>
    You can see a working example of this at http://www.coloradogreenline.com/YUISpryCalendar/sprytest6.html.  October 13, 2009 has more than one event scheduled.  This one doesn't display the data in table format, but you can still it working.
    Hope this helps.

  • Login error when trying to access iCloud Mail

    I am receiving the following error when trying to access iCloud Mail. All other iCloud services are functioning.
    IS FATAL
    true
    APPLICATION NAME
    mail
    TITLE
    Mail could not be loaded
    MESSAGE
    There was a problem loading the application due to a possible network error or missing resources. Please try again.
    LOG
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: MAIL in main()
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.User object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 1:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc1473:dispatch('load content')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc2647:dispatch('noContent')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
      Status:0
      Request:/wm/preference
      Wmsid:null
      Redirect Count:1
      Timeout Redirect Count:1
      ResponseText:
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 2:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: ,
    this._redirectCount: 1
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <--  Response 2:  0  (72ms),  headers:   body: (empty)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1425991198034/1,httpStatus: 0,round trip time: 71ms, wmsid: null
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: retrieveResponseError:
      ServerPreferencesDataSource.retrieveResponse
      error:-1/0
      guid:serverPrefsGuid
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: Bootstrap error: Preferences.RefreshError
    TYPE
    server
    APP STATECHART
    SC.Statechart:sc1030
      initialized: true
      name: cloudos-statechart
      current-states: [
        active.springboard.displayingSpringboard.springboard
      state-transition:
        active: false
        suspended: false
      handling-event: false
    BUILD NUMBER
    15B.169e9f7
    TIME
    Tue Mar 10 2015 07:40:01 GMT-0500 (CDT)        (1425991201489)
    HOST
    www.icloud.com
    USER AGENT
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    DSID
    103705688
    ENVIRONMENT
    PROD
    RECENT LOG MESSAGES
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: MAIL in main()
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.User object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 1:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc1473:dispatch('load content')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc2647:dispatch('noContent')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
      Status:0
      Request:/wm/preference
      Wmsid:null
      Redirect Count:1
      Timeout Redirect Count:1
      ResponseText:
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 2:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: ,
    this._redirectCount: 1
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <--  Response 2:  0  (72ms),  headers:   body: (empty)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1425991198034/1,httpStatus: 0,round trip time: 71ms, wmsid: null
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: retrieveResponseError:
      ServerPreferencesDataSource.retrieveResponse
      error:-1/0
      guid:serverPrefsGuid
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: Bootstrap error: Preferences.RefreshError

    After activatin iCloud, my dotMac account wouldn't retrieve mail anymore. It kept saying that my username or password were not good. No matter how many times I tried, I couldn't restore the service.
    Here's how I got it working again.
    Apparently my 6 letter password is no longer acceptable. You need to update it to an 8 letter password that includes numbers and capital letters.
    So I went to https://iforgot.apple.com and asked to reset my password.
    Because I could still get my emails logging into iCloud with Safari, I responded to Apple's email, and created a stronger password.
    Than I updated the passwords on my computer's Mail program, iPhone, and iPad (and of course everything else, iTunes, etc.).
    That was it!
    Everything works as normal again, I even was finally able to synchronize calendars over different computers again.
    Try it out, it could be your issue as well.

  • I can no longer get email on my account

    I can log-in to Apple but when I try to get email the system tells me my password is incorrect ... I've tried to change my password but nothing helps ... please help!!!

    These are the details listed on my report
    IS FATAL
    true
    APPLICATION NAME
    mail
    TITLE
    Mail could not be loaded
    MESSAGE
    There was a problem loading the application due to a possible network error or missing resources. Please try again.
    LOG
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: MAIL in main()
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Fri, 18 Jan 2013 14:16:05 GMT:  WARN:  Attempting to process mailprefs from CloudOS…
    Fri, 18 Jan 2013 14:16:05 GMT:  WARN:  Rejecting mailprefs from CloudOS because timeZone information is unavailable in mailprefs
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: Creating local CK.User object
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: -->  Request 1:   POST to https://p04-mailws.icloud.com:443/wm/preference?clientBuildNumber=1N44&clientId= 4B34496D-0E02-4A50-9A55-593BF9B75831&dsid=1366528703&id=6A514C097FE2E456E5CCA5A1 3AC5FCB79B2C440E,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1358518565492/1
              wmsid: 30
              params: {"locale":"en-us","timeZone":"US/Central"}
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: SC.Object:sc1364:dispatch('load content')
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: SC.Object:sc2821:dispatch('noContent')
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Fri, 18 Jan 2013 14:16:08 GMT:  DEBUG: APPLICATION: Received applicationWillBecomeActive
    Fri, 18 Jan 2013 14:16:08 GMT:  DEBUG: APPLICATION: Received routeDidChange
    Fri, 18 Jan 2013 14:16:08 GMT:  WARN:  APPLICATION: Received applicationDidBecomeActive
    Fri, 18 Jan 2013 14:16:35 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
                                                                Status:0
                                                                Request:/wm/preference
                                                                Wmsid:30
                                                                Redirect Count:1
                                                                Timeout Redirect Count:1
                                                                ResponseText:Oops...rawRequest is null
    Fri, 18 Jan 2013 14:16:35 GMT:  DEBUG: -->  Request 2:   POST to https://p04-mailws.icloud.com:443/wm/preference?clientBuildNumber=1N44&clientId= 4B34496D-0E02-4A50-9A55-593BF9B75831&dsid=1366528703&id=6A514C097FE2E456E5CCA5A1 3AC5FCB79B2C440E,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 18 Jan 2013 14:16:35 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1358518565492/1
              wmsid: 30
              params: {"locale":"en-us","timeZone":"US/Central"}
    Fri, 18 Jan 2013 14:17:06 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: Oops...rawRequest is null,
    this._redirectCount: 1
    Fri, 18 Jan 2013 14:17:06 GMT:  DEBUG: <--  Response 2:  0  (timed out),  headers:   body: (empty)
    Fri, 18 Jan 2013 14:17:06 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1358518565492/1,httpStatus: 0,round trip time: 30092ms, wmsid: 30
    Fri, 18 Jan 2013 14:17:06 GMT:  ERROR: retrieveResponseError:
                                  ServerPreferencesDataSource.retrieveResponse
                                  error:-1/0
                                  guid:serverPrefsGuid
    Fri, 18 Jan 2013 14:17:06 GMT:  ERROR: Bootstrap error: Preferences.RefreshError
    ORIGIN
    server
    TYPE
    error
    APP STATECHART
    SC.Statechart:sc1449
      initialized: true
      name: cloudos-statechart
      current-states: [
        active.application.displayingCurrentApp
      state-transition:
        active: false
        suspended: false
      handling-event: false
    BUILD NUMBER
    1N.70032
    TIME
    Fri Jan 18 2013 08:19:27 GMT-0600 (Central Standard Time)        (1358518767544)
    HOST
    www.icloud.com
    USER AGENT
    Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17
    DSID
    1366528703
    ENVIRONMENT
    PROD
    RECENT LOG MESSAGES
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: MAIL in main()
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Fri, 18 Jan 2013 14:16:05 GMT:  WARN:  Attempting to process mailprefs from CloudOS…
    Fri, 18 Jan 2013 14:16:05 GMT:  WARN:  Rejecting mailprefs from CloudOS because timeZone information is unavailable in mailprefs
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: Creating local CK.User object
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: -->  Request 1:   POST to https://p04-mailws.icloud.com:443/wm/preference?clientBuildNumber=1N44&clientId= 4B34496D-0E02-4A50-9A55-593BF9B75831&dsid=1366528703&id=6A514C097FE2E456E5CCA5A1 3AC5FCB79B2C440E,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1358518565492/1
              wmsid: 30
              params: {"locale":"en-us","timeZone":"US/Central"}
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: SC.Object:sc1364:dispatch('load content')
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG: SC.Object:sc2821:dispatch('noContent')
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Fri, 18 Jan 2013 14:16:05 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Fri, 18 Jan 2013 14:16:08 GMT:  DEBUG: APPLICATION: Received applicationWillBecomeActive
    Fri, 18 Jan 2013 14:16:08 GMT:  DEBUG: APPLICATION: Received routeDidChange
    Fri, 18 Jan 2013 14:16:08 GMT:  WARN:  APPLICATION: Received applicationDidBecomeActive
    Fri, 18 Jan 2013 14:16:35 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
                                                                Status:0
                                                                Request:/wm/preference
                                                                Wmsid:30
                                                                Redirect Count:1
                                                                Timeout Redirect Count:1
                                                                ResponseText:Oops...rawRequest is null
    Fri, 18 Jan 2013 14:16:35 GMT:  DEBUG: -->  Request 2:   POST to https://p04-mailws.icloud.com:443/wm/preference?clientBuildNumber=1N44&clientId= 4B34496D-0E02-4A50-9A55-593BF9B75831&dsid=1366528703&id=6A514C097FE2E456E5CCA5A1 3AC5FCB79B2C440E,  headers: Content-Type=text/plain,  body: (omitted)
    Fri, 18 Jan 2013 14:16:35 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1358518565492/1
              wmsid: 30
              params: {"locale":"en-us","timeZone":"US/Central"}
    Fri, 18 Jan 2013 14:17:06 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: Oops...rawRequest is null,
    this._redirectCount: 1
    Fri, 18 Jan 2013 14:17:06 GMT:  DEBUG: <--  Response 2:  0  (timed out),  headers:   body: (empty)
    Fri, 18 Jan 2013 14:17:06 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1358518565492/1,httpStatus: 0,round trip time: 30092ms, wmsid: 30
    Fri, 18 Jan 2013 14:17:06 GMT:  ERROR: retrieveResponseError:
                                  ServerPreferencesDataSource.retrieveResponse
                                  error:-1/0
                                  guid:serverPrefsGuid
    Fri, 18 Jan 2013 14:17:06 GMT:  ERROR: Bootstrap error: Preferences.RefreshError

  • Need help please?

    APPLICATIONNAME
    cloudos
    ERROR
    authDidNotConnect
    ORIGIN
    server
    TYPE
    error
    APPSTATECHART
    SC.Statechart:sc763
    initialized: true
    name: cloudos-statechart
    current-states: [
    active.authUI.fieldsEditable
    state-transition:
    active: false
    suspended: false
    handling-event: false
    BUILDNUMBER
    1K.53438
    TIME
    Wed Jul 18 2012 12:20:11 GMT-0700 (Pacific Daylight Time) (1342639211455)
    HOST
    www.icloud.com
    USERAGENT
    Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11
    RECENTLOGMESSAGES
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: CloudOS.main() already has localized strings, proceeding to run CloudOS.run() now.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Loading localized strings and metrics
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN initialize statechart
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN gotoState: __ROOT_STATE__
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: starting from current state: ---
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states before: ---
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: __ROOT_STATE__
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: loading
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states after: loading
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END gotoState: __ROOT_STATE__
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN gotoState: validatingAuth
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: starting from current state: loading
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states before: loading
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: pivot state = __ROOT_STATE__
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: <-- exiting state: loading
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: validatingAuth
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: validatingAuth.gettingReply
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: COS: Sending validate POST request to https://setup.icloud.com/setup/ws/1/validate
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: --> Request 1: POST to https://setup.icloud.com/setup/ws/1/validate, headers: Content-Type=text/plain, body: (omitted)
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states after: validatingAuth.gettingReply
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END gotoState: validatingAuth
    Wed, 18 Jul 2012 19:19:57 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END initialize statechart
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Language check: null -> en-us. We WILL relocalize.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Relocalizing mail because: CloudOS.run() wants the initial relocalize call
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that mail is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Relocalizing contacts because: CloudOS.run() wants the initial relocalize call
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that contacts is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Relocalizing calendar because: CloudOS.run() wants the initial relocalize call
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that calendar is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Relocalizing find because: CloudOS.run() wants the initial relocalize call
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that find is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Relocalizing iwork because: CloudOS.run() wants the initial relocalize call
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that iwork is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Relocalizing documents because: CloudOS.run() wants the initial relocalize call
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that documents is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Relocalizing bight because: CloudOS.run() wants the initial relocalize call
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that bight is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that mail is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that contacts is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that calendar is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that find is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that iwork is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that documents is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Ensuring that bight is torn down.
    Wed, 18 Jul 2012 19:19:57 GMT: DEBUG: Spent 125ms painting the background canvas, which, in addition to the radial gradient, required 12 drawImage calls for the tiles.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: <-- Response 1: 401 (773ms), headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8 body: {"error":"Validate Request -- Missing X-APPLE-WEBAUTH-TOKEN cookie","instance":"1329598861","success":false}
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: COS: invoking validateDidFail
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN sendEvent: 'authDidNotValidate'
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: validatingAuth.gettingReply: will handle event 'authDidNotValidate'
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN gotoState: active.authUI
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: starting from current state: validatingAuth.gettingReply
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states before: validatingAuth.gettingReply
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: pivot state = __ROOT_STATE__
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: <-- exiting state: validatingAuth.gettingReply
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: <-- exiting state: validatingAuth
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: active
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: active.authUI
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: active.authUI.downloadingAuthModule
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Attempting to load 'cloudos/auth_ui'
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Module 'cloudos/auth_ui' is not loaded, loading now.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: 'cloudos/auth_ui' depends on 'cloudkit/photo', loading dependency…
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Attempting to load 'cloudkit/photo'
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Module 'cloudkit/photo' is not loaded, loading now.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Loading JavaScript file in 'cloudkit/photo' -> '/system/cloudos/cloudkit/photo/en-us/1K.53438/javascript-strings.js'
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Loading CSS file in 'cloudos/auth_ui' -> '/system/cloudos/cloudos/auth_ui/en-us/1K.53438/stylesheet.css'
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Loading JavaScript file in 'cloudos/auth_ui' -> '/system/cloudos/cloudos/auth_ui/en-us/1K.53438/javascript-strings.js'
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states after: active.authUI.downloadingAuthModule
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END gotoState: active.authUI
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END sendEvent: 'authDidNotValidate'
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Module 'cloudos/auth_ui' finished loading.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Dependencies for 'cloudos/auth_ui' not met yet, waiting to evaluate.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Module 'cloudkit/photo' finished loading.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Evaluating and invoking callbacks for 'cloudkit/photo'.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Module 'cloudkit/photo' has completed loading, invoking callbacks.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Now that cloudkit/photo has loaded, all dependencies for a dependent cloudos/auth_ui are met.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Evaluating and invoking callbacks for 'cloudos/auth_ui'.
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: SC.Module: Module 'cloudos/auth_ui' has completed loading, invoking callbacks.
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN gotoState: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: starting from current state: active.authUI.downloadingAuthModule
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states before: active.authUI.downloadingAuthModule
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: pivot state = active.authUI
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: <-- exiting state: active.authUI.downloadingAuthModule
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states after: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:19:58 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END gotoState: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: Preloading https://www.icloud.com/system/cloudos/cloudos/auth_ui/en-us/1K.53438/stylesheet- 1.png
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: Preloading explicitly-specified image /system/cloudos/cloudos/auth_ui/en-us/1K.53438/source/resources/images/rotating _gradient.jpg
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: Preloading explicitly-specified image /system/cloudos/cloudos/auth_ui/en-us/1K.53438/source/resources/images/canvas_m ask.png
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: Finished loading /system/cloudos/cloudos/auth_ui/en-us/1K.53438/source/resources/images/canvas_m ask.png. images remaining before callback: 2
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: Finished loading /system/cloudos/cloudos/auth_ui/en-us/1K.53438/source/resources/images/rotating _gradient.jpg. images remaining before callback: 1
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: Finished loading https://www.icloud.com/system/cloudos/cloudos/auth_ui/en-us/1K.53438/stylesheet- 1.png. images remaining before callback: 0
    Wed, 18 Jul 2012 19:19:58 GMT: DEBUG: All images are downloaded. Now running callback.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Prefetching module 'cloudos/language'.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Loading JavaScript file in 'cloudos/language' -> '/system/cloudos/cloudos/language/en-us/1K.53438/javascript-strings.js'
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Prefetching module 'cloudkit/error_catcher'.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Loading CSS file in 'cloudkit/error_catcher' -> '/system/cloudos/cloudkit/error_catcher/en-us/1K.53438/stylesheet.css'
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Loading JavaScript file in 'cloudkit/error_catcher' -> '/system/cloudos/cloudkit/error_catcher/en-us/1K.53438/javascript-strings.js'
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Prefetching module 'cloudos/account'.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: 'cloudos/account' depends on 'coreweb/timezone_picker', loading dependency…
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Attempting to load 'coreweb/timezone_picker'
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'coreweb/timezone_picker' is not loaded, loading now.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Loading CSS file in 'coreweb/timezone_picker' -> '/system/cloudos/coreweb/timezone_picker/en-us/1K.53438/stylesheet.css'
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Loading JavaScript file in 'coreweb/timezone_picker' -> '/system/cloudos/coreweb/timezone_picker/en-us/1K.53438/javascript-strings.js'
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Loading CSS file in 'cloudos/account' -> '/system/cloudos/cloudos/account/en-us/1K.53438/stylesheet.css'
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Loading JavaScript file in 'cloudos/account' -> '/system/cloudos/cloudos/account/en-us/1K.53438/javascript-strings.js'
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'cloudos/language' finished loading.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'cloudos/language' was prefetched, not evaluating until needed.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'cloudkit/error_catcher' finished loading.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'cloudkit/error_catcher' was prefetched, not evaluating until needed.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'cloudos/account' finished loading.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'cloudos/account' was prefetched, not evaluating until needed.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'coreweb/timezone_picker' finished loading.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Evaluating and invoking callbacks for 'coreweb/timezone_picker'.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'coreweb/timezone_picker' has completed loading, invoking callbacks.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Now that coreweb/timezone_picker has loaded, all dependencies for a dependent cloudos/account are met.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Evaluating and invoking callbacks for 'cloudos/account'.
    Wed, 18 Jul 2012 19:20:02 GMT: DEBUG: SC.Module: Module 'cloudos/account' has completed loading, invoking callbacks.
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN sendEvent: 'userDidSubmit'
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: active.authUI.fieldsEditable: will handle event 'userDidSubmit'
    Wed, 18 Jul 2012 19:20:07 GMT: DEBUG: CloudKit: Sending login POST request to https://setup.icloud.com/setup/ws/1/login
    Wed, 18 Jul 2012 19:20:07 GMT: DEBUG: --> Request 2: POST to https://setup.icloud.com/setup/ws/1/login, headers: Content-Type=text/plain, body: (omitted)
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN gotoState: active.authUI.attemptIsSubmitted
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: starting from current state: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states before: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: pivot state = active.authUI
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: <-- exiting state: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: active.authUI.attemptIsSubmitted
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states after: active.authUI.attemptIsSubmitted
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END gotoState: active.authUI.attemptIsSubmitted
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END sendEvent: 'userDidSubmit'
    Wed, 18 Jul 2012 19:20:07 GMT: DEBUG: <-- Response 2: 500 (23ms), headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8 body: {"error":"Unexpected Exception: statusCode = UnknownServerError, unknown error, http status code = 520","instance":"1329598861","success":false}
    Wed, 18 Jul 2012 19:20:07 GMT: DEBUG: COS: invoking loginDidFail
    Wed, 18 Jul 2012 19:20:07 GMT: WARN: Auth: No auth bag or recognized status code
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN sendEvent: 'authDidNotConnect'
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: active.authUI.attemptIsSubmitted: will handle event 'authDidNotConnect'
    Wed, 18 Jul 2012 19:20:07 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END sendEvent: 'authDidNotConnect'
    Wed, 18 Jul 2012 19:20:11 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: BEGIN gotoState: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:20:11 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: starting from current state: active.authUI.attemptIsSubmitted
    Wed, 18 Jul 2012 19:20:11 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states before: active.authUI.attemptIsSubmitted
    Wed, 18 Jul 2012 19:20:11 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: pivot state = active.authUI
    Wed, 18 Jul 2012 19:20:11 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: <-- exiting state: active.authUI.attemptIsSubmitted
    Wed, 18 Jul 2012 19:20:11 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: --> entering state: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:20:11 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: current states after: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:20:11 GMT: INFO: SC.Statechart<cloudos-statechart, sc763>: END gotoState: active.authUI.fieldsEditable
    Wed, 18 Jul 2012 19:20:11 GMT: DEBUG: CloudKit: ErrorCatcher dialog invoked.
    Wed, 18 Jul 2012 19:20:11 GMT: DEBUG: SC.Module: Attempting to load 'cloudkit/error_catcher'
    Wed, 18 Jul 2012 19:20:11 GMT: DEBUG: SC.Module: Module 'cloudkit/error_catcher' already loaded.
    Wed, 18 Jul 2012 19:20:11 GMT: DEBUG: SC.Module: Evaluating JavaScript for module 'cloudkit/error_catcher'.
    Wed, 18 Jul 2012 19:20:11 GMT: DEBUG: SC.Module: Module 'cloudkit/error_catcher' has completed loading, invoking callbacks.

    Which computer? There is a label on the bottom.
    -Jerry

Maybe you are looking for

  • Crash using Air on all apps  NY Times Reader and BBC Iplayer

    Any app that requires Air I am getting a crash report. Process:         Times Reader [3066] Path:            /Applications/Times Reader.app/Contents/MacOS/Times Reader Identifier:      com.nyt.timesreader.78C54164786ADE80CB31E1C5D95607D0938C987A.1 Ve

  • Error 1003 occurred at Open VI Reference in Dist Copy Non-VI Files.vi- Dist Build LLB Image.vi- Dist Build App Image.vi- Build Application.vi

    When trying to build  an application using labview 7.1 and windows XP,  I get the error Error 1003 occurred at Open VI Reference in Dist Copy Non-VI Files.vi->Dist Build LLB Image.vi->Dist Build App Image.vi->Build Application.vi I've tried the crtl-

  • SAP NetWeaver 7.0: Importing Process Integration Content

    Hello all, I have newly installed XI system (NetWeaver 7.0 with PI) with Support Package Stack 14. I wanted to import PI content as describe in note 836200, but after choosing the package - import source in Integration Builder Design - I have the mes

  • Display random image

    Hey all. Creating my first form in LiveCycle. Haven't a clue as to what I'm doing... maybe someone can help. I don't know javascript, so I usually just use trial and error until I figure it out... but I just can't get this to work. I have 20 images o

  • Cant upload artwork in iTunes

    Using itunes 11.0.4 on a macbook pro.  It refuses to let me add artwork that it can not find.  I have tried selecting single tracks and whole album and getting info, the artwork tab is greyed out so I can not click on it and when I drag and drop the