Last payroll offcycle close date/time

Hi Experts,
   i need to write a function module to determine the last payroll off cycle close date/time.Can anyone suggest as to which tables i should be using to retrieve the relevant data.
Thanks

Try  to read IT0267  records , this might Help .      Also go through IT 221

Similar Messages

  • How to return a specific date/time range and last event details, when checking the event log via command prompt

    I am new to scripting (literally started reading/learning scripting a few hours ago), and I am stuck in trying to get my current script/command to filter a specific date range.
    * Note: I am working with Server 2003 and 2008; because of the environment I am in, a lot of scripts (such as Powershell and VBScript) don't work; trying to stick with command line, as it appears to be the only thing that functions correctly in my environment
    I am trying to search the System log in event viewer, for the most recent server reboot. Here is the command that I am currently running:
    ===========================================================
    C:\Windows\System32\cscript C:\Windows\System32\eventquery.vbs /L System /FI "id eq 1074"
    ===========================================================
    When run, the output looks like this:
    ===========================================================
    Microsoft (R) Windows Script Host Version 5.6
    Copyright (C) Microsoft Corporation 1996-2001. All rights reserved
    Listing the events in 'system' log of host 'xxxxxxxxxxxxxxx'
    Type Event
    Date Time    Source
    Information 1074
    12/18/2013 2:48:06 AM    USER32
    Information 1074
    11/20/2013 3:25:04 AM    USER32
    Information 1074
    10/23/2013 2:06:09 AM    USER32
    ===========================================================
    What I would like it to do is only show events that have happened in the last seven days, as well as show the event details if it does find an event that matches the criteria.
    Any help would be greatly appreciated. Thanks!
    Nick

    I would prefer using Powershell , you can use below code 
    function Get-EventViewer
    param(
    [string[]]$ComputerName = $ENV:COMPUTERNAME,[string]$LogName,[int]$eventid
    $Object =@()
    foreach ($Computer in $ComputerName)
    $ApplicationEvents = get-eventlog -logname $LogName -cn $computer -after (Get-Date).AddDays(-7) | ?{$_.eventid -eq "$eventid" }
    foreach ($event in $ApplicationEvents) {
    $Object += New-Object -Type PSObject -Property @{
    ComputerName = $Computer.ToUpper();
    TimeGenerated = $event.TimeGenerated;
    EntryType = $event.EntryType;
    Source = $event.Source;
    Message = $event.Message;
    $column1 = @{expression="ComputerName"; width=12; label="ComputerName"; alignment="left"}
    $column2 = @{expression="TimeGenerated"; width=22; label="TimeGenerated"; alignment="left"}
    $column3 = @{expression="EntryType"; width=10; label="EntryType"; alignment="left"}
    $column4 = @{expression="Source"; width=15; label="Source"; alignment="left"}
    $column5 = @{expression="Message"; width=100; label="Message"; alignment="left"}
    $Object|format-table $column1, $column2, $column3 ,$column4 ,$column5
    $Object.GetEnumerator() | Out-GridView -Title "Event Viewer"
    You can do a function call like
    Get-EventViewer -LogName system -ComputerName "computername" -eventid "2017"

  • MBAM "Enterprise Compliance Report" not updating "Last Contact" date/time for any/all systems.

    Running BitLocker/MBAM 1.0.1237.1.
    About 1 month ago, "Last Contact" date/time listed in MBAM "Enterprise Compliance Report" stopped updating (last updated 1 month ago) for all systems. However, reporting against these exact same systems individually via
    "Computer Compliance Report" shows current/correct "Last Contact" date/time (last updated today).
    Have tried http://support.microsoft.com/kb/2620269/en-us but no luck.
    Hoping someone has experienced this before, fixed, and can share insights.
    Thx,
    DCL

    You may want to look for communication errors under the MBAM node in Event Viewer.
    You may also want to review the registry settings discussed under the
    Configure Lab Computers for MBAM Evaluation section of this TechNet article:
    HKLM\Software\Policies\Microsoft\FVE\MDOPBitLockerManagement\ClientWakeupFrequency
    HKLM\Software\Policies\Microsoft\FVE\MDOPBitLockerManagement\StatusReportingFrequency
    HKLM\Software\Microsoft\MBAM\NoStartupDelay
    Specifically the StatusReportingFrequency
    key.
    Brandon
    MDOP on the Springboard Series on TechNet

  • How to display document last modfied date time in core result web part?

    Hi,
    We have a requirment in the sharepoint application where we need to display last modified date&time of document in core result web part.
    To support this we have specify the property <Column Name="Write"/> in custom XSL.
    But it displays only the modified date.Is there is way to display modified date and time as well?
    D.Ganesh

    If you want to modify the
    XML can do i tin the
    template "DisplayTemplate":
    An example:
    Replace
    <xsl:value-of select="write" />
    by
    <xsl:value-of select="ddwrt:FormatDate($write, 1033, 2)"/>
    But I think the managed property"Write"
    is returned only as
    Date without
    Time. By
    this time will
    always 00:00.
    To see the resulting XML
    can replace
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/">
    <xmp><xsl:copy-of select="*"/></xmp>
    </xsl:template>
    </xsl:stylesheet>
    Where you see the format
    of "write"
    http://msdn.microsoft.com/en-us/library/ms546985(v=office.14).aspx
    Miguel de Hortaleza

  • How do I get the last changed date & time of a file in app server?

    Hi Experts,
    How do I get the last changed date & time of a file in app server?
    Thanks!
    - Anthony -

    Hi,
    that's what I use...
      CALL 'C_DIR_READ_FINISH'.             " just to be sure
      CALL 'C_DIR_READ_START' ID 'DIR' FIELD p_path.
      IF sy-subrc <> 0.
        EXIT. "Error
      ENDIF.
      DO.
        CLEAR l_srvfil.
        CALL 'C_DIR_READ_NEXT'
          ID 'TYPE'   FIELD l_srvfil-type
          ID 'NAME'   FIELD l_srvfil-file
          ID 'LEN'    FIELD l_srvfil-size
          ID 'OWNER'  FIELD l_srvfil-owner
          ID 'MTIME'  FIELD l_mtime
          ID 'MODE'   FIELD l_srvfil-attri.
    *    l_srvfil-dir = p_path .
        IF sy-subrc = 1.
          EXIT.
        ENDIF." sy-subrc <> 0.
        PERFORM p_to_date_time_tz
          USING    l_mtime
          CHANGING l_srvfil-mod_time
                   l_srvfil-mod_date.
        TRANSLATE l_srvfil-type TO UPPER CASE.               "#EC TRANSLANG
        PERFORM translate_attribute CHANGING l_srvfil-attri.
        CHECK:
          NOT l_srvfil-file = '.',
          l_srvfil-type = 'D' OR
          l_srvfil-type = 'F' .
        APPEND l_srvfil TO lt_srvfil.
      ENDDO.
      CHECK NOT lt_srvfil IS INITIAL.
      pt_srvfil = lt_srvfil.
    FORM p_to_date_time_tz  USING    p_ptime  TYPE p
                            CHANGING p_time   TYPE syuzeit
                                     p_date   TYPE sydatum.
      DATA:
        l_abaptstamp TYPE timestamp,
        l_time       TYPE int4,
        l_opcode     TYPE x VALUE 3,
        l_abstamp    TYPE abstamp.
      l_time = p_ptime.
      CALL 'RstrDateConv'
        ID 'OPCODE' FIELD l_opcode
        ID 'TIMESTAMP' FIELD l_time
        ID 'ABAPSTAMP' FIELD l_abstamp.
      l_abaptstamp = l_abstamp.
      CONVERT TIME STAMP l_abaptstamp TIME ZONE sy-zonlo INTO DATE p_date
          TIME p_time.
    ENDFORM.                    " p_to_date_time_tz
    Regards,
    Clemens

  • My laptop died last night and the date and time was set for 1/1/2000. I went to change the date and time and cannot. For some reason when i pull up system preferences it will not load date and time but will load other stuff. Please help.

    Last night my laptop died and the time and date was reset. I cannot acess date and time preferences to change it and my laptop is acting really weird. My CD drive is broken so there are no options to put in a cd. Please someone help i need my laptop for school and cannot afford another.

    Many system actions will misbehave, given an inaccurate date. Resetting the NVRAM and / or SMC will not fix it, and if the system has a preposterous date you may not be able to open System Preferences to correct it. This dilemma may or may not be addressed in a future OS X update.
    If you cannot open System Preferences you can reset your system date and time using Terminal.
    Please read everything that follows before proceeding. Write them down if necessary because the effects of setting a preposterous system date are unpredictable.
    Quit System Preferences, force quit if necessary: OS X: How to quit an unresponsive application using Force Quit
    Open Terminal - it is in your Utilities folder and looks like this
    You can find Terminal by using the Finder's Go menu and choosing Utilities, then double-click the Terminal icon.
    At the prompt, you will be typing a command resembling the following:
    sudo date mmddhhnnyyyy
    ... but you must substitute the actual date and time in the command that corresponds to the date format used for your location. In other words if your custom is to use a date like 8 February 2014 then reverse the mm and dd values.
    Substitute numerals in the above command according to the following:
    mm = month
    dd = date
    hh = hour (24 hour format)
    nn = minutes past the hour
    yyyy = year
    Each of those values must be two digits except for the year which can be two or four digits. As an example if the current date and time is February 8, 2014 at 9 PM your command will be the following:
    sudo date 020821002014
    or
    sudo date 0208210014
    Either one will work. If you enter nonsensical values the system will attempt to parse the entry correctly.
    To recover from your inability to use System Preferences to set the date and time, the value entered does not have to be precise, it just has to be approximate.
    Enter that command using the actual time and date for your location and in the appropriate format, then press the Return key. Terminal will ask for your Admin Password - the same one you use when you log in to your Mac. Type it and then press the Return key. What you type will not appear, not even with •••• characters.
    To determine if your change was effective just type the date command and press the Return key. Terminal will reply with the date and time. If it appears correct and in the correct format, you should be able to open System Preferences > Date & Time once again. Selecting the "Set time and date automatically" and choosing an appropriate time server will adjust your Mac's system clock to the precise time.

  • Min,Max for a time Range and Sum of Records for the last date/time

    Hi All,
    I have a table with the following structure/data:
    create table  Events   (
                                        [EventID]       
    int                   NOT NULL,
                                        [Title]            
    nvarchar(200)  NOT NULL,
                                        [SourceName]  nvarchar(20)    NOT NULL,
                                        [Type]             
    int                  NOT NULL,
                                        [eDate]           
    datetime
    insert into Events values(100, 'Event 1', 'S01', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S07', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S08', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S09', 3,'2014-01-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S010', 3,'2014-01-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S03', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S04', 3,'2014-01-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S05', 3,'2014-01-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S06', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S01', 3,'2014-02-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S02', 3,'2014-02-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S03', 3,'2014-02-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S04', 3,'2014-02-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S05', 3,'2014-02-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S06', 3,'2014-02-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S01', 3,'2014-03-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S02', 3,'2014-03-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S03', 3,'2014-03-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S04', 3,'2014-03-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S05', 3,'2014-03-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S06', 3,'2014-03-01 00:00:00.000')
    And I wrote the following query:
     select EventID as [Event ID],
           Title, 
           count(distinct(SourceName)) as [Instances], 
           Type,
           min(eDate) as  [First Detected],
           max(eDate) as [Last Detected],
           datediff(d,min(eDate),max(eDate)) as [Delta (days)]
    from  Events
    where type = 3
    group by EventID, Title, Type
    having max(eDate) <> min(eDate)
       and max(eDate) =(select top 1 eDate from Events order by eDate desc)
    and I get the following results (see the instance number)
    Event ID Title         Instances Type First Detected                      Last Detected                    
       Delta (days)
    =============================================================================================================================
    100         Event 1         5         3    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000    
    59
    101         Event 2        
    3         3    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000     59
    102         Event 3        
    2         3    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000     59
    This is normal for this query however what I need to do is a little different.
    In other words, while I need to show when we recorded a specific event first and last time,
    I need to display the results for the last date/time when it was recorded. 
    For example what I need to provide should look like this:
    Event ID  Title                Instances        Type       First Detected                    
    Last Detected                          Delta (days)
    =============================================================================================================================
    100         Event 1            2                   3           
    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000      59
    101         Event 2            2                   3           
    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000      59
    102         Event 3           
    2                   3            2014-01-01 00:00:00.000     2014-03-01 00:00:00.000     
    59
    Could you please help me to fix this query?
    TIA,
    John

    ;With cte As
    (Select EventID as [Event ID],
    Title,
    SourceName,
    Type,
    min(eDate) Over(Partition By EventID, Title, Type) as [First Detected],
    max(eDate) Over(Partition By EventID, Title, Type) as [Last Detected],
    eDate,
    datediff(d,min(eDate) Over(Partition By EventID, Title, Type),max(eDate) Over(Partition By EventID, Title, Type)) as [Delta (days)],
    max(eDate) Over() As MaxEDate
    from Events
    where type = 3)
    Select [Event ID],
    Title,
    COUNT(Distinct SourceName) As Instances,
    Type,
    [First Detected],
    [Last Detected],
    [Delta (days)]
    From cte
    Where eDate = MaxEDate And [First Detected] <> [Last Detected]
    Group By [Event ID],
    Title,
    Type,
    [First Detected],
    [Last Detected],
    [Delta (days)];
    Tom
    P.S. Thanks for providing the DDL and data.  That is always very helpful.

  • Displaying date/time in the report of last updating data?

    Hi,
    I have produced a report over a multiprovider. The multiprovider is built up from tow cubes. The data is being updated to one cube each hour and to the another cube one time daily.
    The date/time that display in the report is for the last updating data of the cube that updating one time daily.
    I want that the date\time be updated each hour, in another words, to display the date\time of last updating data to the second cube.
    Any suggestions?

    Hi Mohamad,
    Please read through this discussion for a solution:
    ROLLUPTIME of a multiprovider
    Hope this helps...

  • How to find the last update date time and user of record field peoplecode

    how to find the last update date time record field peoplecode?
    Thank you.

    One can check the last update date time using the following query
    SELECT LASTUPDDTTM FROM PSPCMPROG WHERE OBJECTVALUE1 LIKE 'RECNAME' AND OBJECTVALUE2 LIKE 'FIELDNAME'

  • Add Last Updated Date/Time to Cube

    Is there a way that you can display a date field in EXCEL when a user logs in to a cube so that they can see when the cube was last updated (date/time)? I am currently attaching a note using linked objects but would like to find a more automated solution.

    At a previous job, we managed to pick up the system date during the batch and write it into the Database/Set note (from app manager). I can't remember the exact details but pretty sure we used the API.Then people could see when they logged in whether the database had been updated or not.At another place we sent out automated e-mails at the end of each update to those users with access to the database.Ideas only I'm afraid but hope it helps.

  • Last Refresh Date/Time

    seems like this should be simple enough but i can't figure it out.
    i have a dashboard with a refresh button. the dashboard uses a LiveOffice universe query. the user would like to add something on the dashboard that shows the last date/time that it was refreshed. i can show the initial load date/time by using a text box and linking it to a cell with =now() formula but it doesn't change as the model is refreshed.
    i guess i could put something in the universe and query it for the current date/time but that seems like an awful lot of work. any ideas?

    This depends on your LO Data Source. If you are using a Web Intelligence Report, you can define a Variable with:
    =LastExecutionDate()" "LastExecutionTime()
    And then use a label on your dashboard pointint to where this is located on you spreadhsheet from the report.

  • Need a FM which returns the last modified date& time

    Hi,
    Kindly Suggest me if any Function Module is there which returns the last modified date& time for tables HRP1000 and HRP1001.
    Rgds
    Kishor.C

    just check the following tables..
    CDHDR - Change document header
    CDPOS - Change document items
    you can use this function module..
    BPCT_CHANGEDOCUMENT_DISPLAY
    Edited by: Arunima Rudra on Apr 14, 2009 4:49 PM

  • It seems that the last message sent in imessage doesn't show the date/time.

    When I look at the imessage screen it doesn't show the date/time on last messages.

    Claudia252 wrote:
    Thank you. I cant figure out how to change the lable infront of the number to "iPhone" . It shows "home", "work", "pager", etc. but it doesn't show an "iPhone" option.
    In the Contact, tap Edit.
    Tap the label in front of the number and another Label screen apears.
    Tap the label you want to use.

  • Safari crashes shortly after startup. Here is the last crach report:Date/Time:      2011-12-21 14:57:54.740 -0500 OS Version:     10.4.11 (Build 8S2167) Report Version: 4  Command: Safari Path:    /Applications/Safari.app/Contents/MacOS/Safari Parent:  Da

    Date/Time:      2011-12-21 14:57:54.740 -0500
    OS Version:     10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path:    /Applications/Safari.app/Contents/MacOS/Safari
    Parent:  WindowServer [58]
    Version:        4.1.3 (4533.19.4)
    Build Version:  1
    Project Name:   WebBrowser
    Source Version: 75331904
    PID:    198
    Thread: 5
    Exception:  EXC_BAD_ACCESS (0x0001)
    Codes:      KERN_PROTECTION_FAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0   libobjc.A.dylib                          0x90a59387 objc_msgSend + 23
    1   com.apple.Foundation                     0x9283b6e3 -[NSURLRequest dealloc] + 37
    2   com.apple.CoreFoundation                 0x9080dff1 CFRelease + 130
    3   com.apple.WebCore                        0x0168d7be WebCore::DocumentLoader::~DocumentLoader [not-in-charge]() + 792
    4   com.apple.WebKit                         0x010e3866 WebDocumentLoaderMac::~WebDocumentLoaderMac [in-charge deleting]() + 92
    5   com.apple.WebKit                         0x0101e893 -[WebDataSourcePrivate dealloc] + 165
    6   com.apple.WebKit                         0x0101e7c5 -[WebDataSource dealloc] + 59
    7   com.apple.WebKit                         0x01024c18 -[WebHTMLViewPrivate clear] + 142
    8   com.apple.WebKit                         0x01024885 -[WebHTMLView(WebPrivate) close] + 227
    9   com.apple.WebKit                         0x0102475c -[WebHTMLView dealloc] + 74
    10  com.apple.AppKit                         0x9329354b -[NSView release] + 180
    11  com.apple.Foundation                     0x927e72cf NSPopAutoreleasePool + 530
    12  com.apple.Foundation                     0x92867904 -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 951
    13  com.apple.Foundation                     0x928674d6 _sendCallbacks + 201
    14  com.apple.CoreFoundation                 0x9082cfce CFRunLoopRunSpecific + 1413
    15  com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    16  com.apple.HIToolbox                      0x92e01878 RunCurrentEventLoopInMode + 285
    17  com.apple.HIToolbox                      0x92e00f82 ReceiveNextEventCommon + 385
    18  com.apple.HIToolbox                      0x92e00dd9 BlockUntilNextEventMatchingListInMode + 81
    19  com.apple.AppKit                         0x93286f45 _DPSNextEvent + 572
    20  com.apple.AppKit                         0x93286b37 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    21  com.apple.Safari                         0x0000f6f9 0x1000 + 59129
    22  com.apple.AppKit                         0x932808c4 -[NSApplication run] + 512
    23  com.apple.AppKit                         0x93274820 NSApplicationMain + 573
    24  com.apple.Safari                         0x0000749b 0x1000 + 25755
    25  com.apple.Safari                         0x0010e512 0x1000 + 1103122
    26  com.apple.Safari                         0x00007219 0x1000 + 25113
    Thread 1:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x0050ade0 ***::ThreadCondition::wait(***::Mutex&) + 24
    2   com.apple.WebCore                        0x015eadd0 WebCore::IconDatabase::syncThreadMainLoop() + 256
    3   com.apple.WebCore                        0x015e8856 WebCore::IconDatabase::iconDatabaseSyncThread() + 192
    4   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 2:
    0   libSystem.B.dylib                        0x90009817 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Foundation                     0x9285f5da +[NSURLCache _diskCacheSyncLoop:] + 206
    4   com.apple.Foundation                     0x92802cfc forkThreadForFunction + 123
    5   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 3:
    0   libSystem.B.dylib                        0x90009817 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Safari                         0x00026c6d 0x1000 + 154733
    4   com.apple.Safari                         0x00026b26 0x1000 + 154406
    5   com.apple.Safari                         0x00026aab 0x1000 + 154283
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 4:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.Foundation                     0x92858c60 -[NSConditionLock lockWhenCondition:] + 39
    2   com.apple.Syndication                    0x998ce79e -[AsyncDB _run:] + 181
    3   com.apple.Foundation                     0x92802cfc forkThreadForFunction + 123
    4   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 5 Crashed:
    0   libobjc.A.dylib                          0x90a59387 objc_msgSend + 23
    1   com.apple.Foundation                     0x92866b96 -[NSConnectionHTTPURLProtocol dealloc] + 124
    2   com.apple.Foundation                     0x927e72cf NSPopAutoreleasePool + 530
    3   com.apple.Foundation                     0x928383a4 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 267
    4   com.apple.Foundation                     0x92802cfc forkThreadForFunction + 123
    5   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 6:
    0   libSystem.B.dylib                        0x90019d0c select + 12
    1   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 7:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x00510742 ***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2   com.apple.Safari                         0x002ddd66 0x1000 + 3001702
    3   com.apple.Safari                         0x002dde5c 0x1000 + 3001948
    4   com.apple.Safari                         0x0003a0cd 0x1000 + 233677
    5   com.apple.Safari                         0x0003a02f 0x1000 + 233519
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 8:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x00510742 ***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2   com.apple.WebCore                        0x018bb8d2 WebCore::LocalStorageThread::threadEntryPoint() + 170
    3   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 9:
    0   libSystem.B.dylib                        0x90009817 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.audio.CoreAudio                0x91469356 HALRunLoop::OwnThread(void*) + 158
    4   com.apple.audio.CoreAudio                0x91469171 CAPThread::Entry(CAPThread*) + 93
    5   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 10:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.ColorSync                      0x915a96ab pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2   com.apple.ColorSync                      0x915c3ddc CMMConvTask(void*) + 60
    3   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 11:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   com.apple.Foundation                     0x92858c60 -[NSConditionLock lockWhenCondition:] + 39
    2   com.apple.AppKit                         0x9335dcb4 -[NSUIHeartBeat _heartBeatThread:] + 377
    3   com.apple.Foundation                     0x92802cfc forkThreadForFunction + 123
    4   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 12:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccfbf unregister_ShockwaveFlash + 46383
    2   ...lashPlayer-10.4-10.5.plugin           0x104c05af 0x104a7000 + 103855
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 13:
    0   libSystem.B.dylib                        0x90024407 semaphore_wait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccfbf unregister_ShockwaveFlash + 46383
    2   ...lashPlayer-10.4-10.5.plugin           0x104c05af 0x104a7000 + 103855
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 14:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x1068301e 0x104a7000 + 1949726
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 15:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x107bb6d5 0x104a7000 + 3229397
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 16:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x107bb6d5 0x104a7000 + 3229397
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 17:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x1068301e 0x104a7000 + 1949726
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 18:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x107bb6d5 0x104a7000 + 3229397
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 19:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x1068301e 0x104a7000 + 1949726
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 20:
    0   libSystem.B.dylib                        0x90047927 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x108ccf87 unregister_ShockwaveFlash + 46327
    2   ...lashPlayer-10.4-10.5.plugin           0x107bb6d5 0x104a7000 + 3229397
    3   ...lashPlayer-10.4-10.5.plugin           0x108cd0ac unregister_ShockwaveFlash + 46620
    4   ...lashPlayer-10.4-10.5.plugin           0x108cd0f0 unregister_ShockwaveFlash + 46688
    5   ...lashPlayer-10.4-10.5.plugin           0x108cd216 unregister_ShockwaveFlash + 46982
    6   libSystem.B.dylib                        0x90023d67 _pthread_body + 84
    Thread 5 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x9080df7d  ecx: 0x90abffd0  edx: 0x177af308
      edi: 0x00000008  esi: 0x16a13bc0  ebp: 0xb03a3da8  esp: 0xb03a3d74
       ss: 0x0000001f  efl: 0x00010206  eip: 0x90a59387   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
    Binary Images Description:
        0x1000 -   0x330fff com.apple.Safari 4.1.3 (4533.19.4)          /Applications/Safari.app/Contents/MacOS/Safari
      0x505000 -   0x6ddfff com.apple.JavaScriptCore 4533.19 (4533.19.1)          /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC ore
    0x1008000 -  0x10f5fff com.apple.WebKit 4533.19 (4533.19.4)          /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x119a000 -  0x1448fff com.apple.QuartzCore 1.4.13          /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.f ramework/Versions/A/QuartzCore
    0x14dc000 -  0x15bafff libxml2.2.dylib           /usr/lib/libxml2.2.dylib
    0x15e6000 -  0x20a7fff com.apple.WebCore 4533.19 (4533.19.4)          /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore. framework/Versions/A/WebCore
    0x102ab000 - 0x102aefff com.macromedia.Flash Player.plugin 10.1.102.64          /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1035a000 - 0x10363fff com.apple.IOFWDVComponents 1.9.0          /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWD VComponents
    0x1036c000 - 0x10371fff com.apple.audio.AppleHDAHALPlugIn 1.3.7 (1.3.7a23)          /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugI n.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0x10380000 - 0x1039cfff GLDriver           /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver. bundle/GLDriver
    0x104a7000 - 0x10e69fff com.macromedia.FlashPlayer-10.4-10.5.plugin 10.1.102.64          /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x11101000 - 0x11132fff com.apple.QuickTimeIIDCDigitizer 7.6.4 (1327.73)          /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/ QuickTimeIIDCDigitizer
    0x1113c000 - 0x11185fff com.apple.QuickTimeUSBVDCDigitizer 2.0.5          /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacO S/QuickTimeUSBVDCDigitizer
    0x111af000 - 0x11308fff GLEngine           /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEn gine
    0x11334000 - 0x11522fff com.apple.ATIRadeonX1000GLDriver 1.4.56 (4.5.6)          /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/AT IRadeonX1000GLDriver
    0x1155e000 - 0x11582fff GLRendererFloat           /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendere rFloat.bundle/GLRendererFloat
    0x117a7000 - 0x117affff com.apple.iokit.IOUSBLib 2.7.5          /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bund le/Contents/MacOS/IOUSBLib
    0x70000000 - 0x700fafff com.apple.audio.units.Components 1.4.7          /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4afff dyld 46.16          /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib           /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib           /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.85 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11 (368.35)          /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat ion
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???)          /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib           /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib           /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib           /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib           /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???)          /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib           /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.31 (682.32)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca rbonCore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS Services.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.24          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CF Network.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/We bServicesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.8          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se archKit.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me tadata.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib           /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774)          /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2          /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr ation
    0x91415000 - 0x9141cfff libbsm.dylib           /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6          /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System Configuration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5          /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic ationServices
    0x91521000 - 0x9154dfff com.apple.AE 316.3          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.13          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916ecfff com.apple.print.framework.PrintCore 4.6 (177.13)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/PrintCore.framework/Versions/A/PrintCore
    0x91719000 - 0x917c2fff com.apple.QD 3.10.28 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/QD.framework/Versions/A/QD
    0x917e8000 - 0x91833fff com.apple.HIServices 1.5.2 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/HIServices.framework/Versions/A/HIServices
    0x91852000 - 0x91868fff com.apple.LangAnalysis 1.6.3          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x91874000 - 0x9188efff com.apple.FindByContent 1.5          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/FindByContent.framework/Versions/A/FindByContent
    0x91898000 - 0x918d5fff com.apple.LaunchServices 183.1          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/LaunchServices.framework/Versions/A/LaunchServices
    0x918e9000 - 0x918f5fff com.apple.speech.synthesis.framework 3.5          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918fc000 - 0x9193cfff com.apple.ImageIO.framework 1.5.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/ImageIO
    0x9194f000 - 0x91a01fff libcrypto.0.9.7.dylib           /usr/lib/libcrypto.0.9.7.dylib
    0x91a47000 - 0x91a5dfff libcups.2.dylib           /usr/lib/libcups.2.dylib
    0x91a62000 - 0x91a80fff libJPEG.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a85000 - 0x91ae4fff libJP2.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91af6000 - 0x91afafff libGIF.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91afc000 - 0x91b84fff libRaw.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b88000 - 0x91ba3fff libPng.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ba8000 - 0x91baafff libRadiance.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91ca7000 - 0x91ce6fff libTIFF.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91cec000 - 0x91cecfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cee000 - 0x91d7cfff com.apple.vImage 2.5          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma ge.framework/Versions/A/vImage
    0x91d83000 - 0x91d83fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/vecLib
    0x91d85000 - 0x91ddefff libvMisc.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvMisc.dylib
    0x91de7000 - 0x91e0bfff libvDSP.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvDSP.dylib
    0x91e13000 - 0x9221cfff libBLAS.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libBLAS.dylib
    0x92256000 - 0x9260afff libLAPACK.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libLAPACK.dylib
    0x92637000 - 0x92724fff libiconv.2.dylib           /usr/lib/libiconv.2.dylib
    0x92726000 - 0x927a4fff com.apple.DesktopServices 1.3.7          /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A /DesktopServicesPriv
    0x927e5000 - 0x92a1dfff com.apple.Foundation 6.4.12 (567.42)          /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b3d000 - 0x92b54fff libGL.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl ib
    0x92b5f000 - 0x92bb7fff libGLU.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy lib
    0x92bcb000 - 0x92bcbfff com.apple.Carbon 10.4 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bcd000 - 0x92bddfff com.apple.ImageCapture 3.0.4          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap ture.framework/Versions/A/ImageCapture
    0x92beb000 - 0x92bf3fff com.apple.speech.recognition.framework 3.6          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe cognition.framework/Versions/A/SpeechRecognition
    0x92bf9000 - 0x92bfefff com.apple.securityhi 2.0.1 (24742)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security HI.framework/Versions/A/SecurityHI
    0x92c04000 - 0x92c95fff com.apple.ink.framework 101.2.1 (71)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram ework/Versions/A/Ink
    0x92ca9000 - 0x92cacfff com.apple.help 1.0.3 (32.1)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra mework/Versions/A/Help
    0x92caf000 - 0x92ccdfff com.apple.openscripting 1.2.7 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri pting.framework/Versions/A/OpenScripting
    0x92cdf000 - 0x92ce5fff com.apple.print.framework.Print 5.1 (192.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr amework/Versions/A/Print
    0x92ceb000 - 0x92d4efff com.apple.htmlrendering 66.1 (1.1.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend ering.framework/Versions/A/HTMLRendering
    0x92d72000 - 0x92db3fff com.apple.NavigationServices 3.4.4 (3.4.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati onServices.framework/Versions/A/NavigationServices
    0x92dda000 - 0x92de7fff com.apple.audio.SoundManager 3.9.1          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo und.framework/Versions/A/CarbonSound
    0x92dee000 - 0x92df3fff com.apple.CommonPanels 1.2.3 (73)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa nels.framework/Versions/A/CommonPanels
    0x92df8000 - 0x930edfff com.apple.HIToolbox 1.4.10 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo x.framework/Versions/A/HIToolbox
    0x931f3000 - 0x931fefff com.apple.opengl 1.4.16          /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93203000 - 0x9321efff com.apple.DirectoryService.Framework 3.2          /System/Library/Frameworks/DirectoryService.framework/Versions/A/Directory Service
    0x9326e000 - 0x9326efff com.apple.Cocoa 6.4 (???)          /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93270000 - 0x93926fff com.apple.AppKit 6.4.10 (824.48)          /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ca7000 - 0x93d22fff com.apple.CoreData 91 (92.1)          /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d5b000 - 0x93e14fff com.apple.audio.toolbox.AudioToolbox 1.4.7          /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e57000 - 0x93e57fff com.apple.audio.units.AudioUnit 1.4.2          /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94060000 - 0x940a1fff libsqlite3.0.dylib           /usr/lib/libsqlite3.0.dylib
    0x940a9000 - 0x940e3fff libGLImage.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag e.dylib
    0x940e8000 - 0x940fefff com.apple.CoreVideo 1.4.2          /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94198000 - 0x941d6fff com.apple.vmutils 4.0.2 (93.1)          /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9421a000 - 0x9422afff com.apple.securityfoundation 2.2.1 (28150)          /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit yFoundation
    0x94237000 - 0x94274fff com.apple.securityinterface 2.2.1 (27695)          /System/Library/Frameworks/SecurityInterface.framework/Versions/A/Security Interface
    0x94290000 - 0x9429ffff libCGATS.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x942a6000 - 0x942b1fff libCSync.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942fd000 - 0x94317fff libRIP.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9431d000 - 0x9463cfff com.apple.QuickTime 7.6.4 (1327.73)          /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94700000 - 0x9470efff com.apple.framework.Apple80211 4.5.5 (455.2)          /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802 11
    0x947c2000 - 0x94908fff com.apple.AddressBook.framework 4.0.6 (490)          /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94994000 - 0x949a3fff com.apple.DSObjCWrappers.Framework 1.1          /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSOb jCWrappers
    0x949aa000 - 0x949d3fff com.apple.LDAPFramework 1.4.2 (69.1.1)          /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949d9000 - 0x949e8fff libsasl2.2.dylib           /usr/lib/libsasl2.2.dylib
    0x949ec000 - 0x94a11fff libssl.0.9.7.dylib           /usr/lib/libssl.0.9.7.dylib
    0x94a1d000 - 0x94a3afff libresolv.9.dylib           /usr/lib/libresolv.9.dylib
    0x94f5c000 - 0x94f94fff com.apple.PDFKit 1.0.4          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.f ramework/Versions/A/PDFKit
    0x954af000 - 0x954c5fff libJapaneseConverter.dylib           /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x954c7000 - 0x954e8fff libKoreanConverter.dylib           /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x954f5000 - 0x95503fff libSimplifiedChineseConverter.dylib           /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x9550b000 - 0x9551dfff libTraditionalChineseConverter.dylib           /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dyli b
    0x95ec0000 - 0x95ec0fff com.apple.vecLib 3.3.1 (vecLib 3.3.1)          /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x964a3000 - 0x9657afff libGLProgrammability.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProg rammability.dylib
    0x96595000 - 0x96596fff libGLSystem.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSyst em.dylib
    0x96598000 - 0x9659dfff com.apple.agl 2.5.9 (AGL-2.5.9)          /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96f69000 - 0x97040fff com.apple.QuartzComposer 1.2.6 (32.25)          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCo mposer.framework/Versions/A/QuartzComposer
    0x970c9000 - 0x970c9fff com.apple.quartzframework 1.0          /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x978a0000 - 0x98797fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)          /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui ckTimeComponents
    0x98f2c000 - 0x98f55fff com.apple.CoreMediaPrivate 15.0          /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/Co reMediaPrivate
    0x998cb000 - 0x99902fff com.apple.Syndication 1.0.8 (56.1)          /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndica tion
    0x9b518000 - 0x9b558fff com.apple.CoreMediaIOServicesPrivate 20.0          /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Ver sions/A/CoreMediaIOServicesPrivate
    0x9b8e1000 - 0x9b8f3fff com.apple.SyndicationUI 1.0.8 (56.1)          /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndi cationUI
    0x9feb7000 - 0x9fef3fff com.apple.QuickTimeFireWireDV.component 7.6.4 (1327.73)          /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/Qui ckTimeFireWireDV
    0x9fefc000 - 0x9ffaafff com.apple.QTKit 7.6.4 (1327.73)          /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    Model: iMac4,1, BootROM IM41.0055.B08, 2 processors, Intel Core Duo, 1.83 GHz, 512 MB
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: BANK 1/DIMM1, 512 MB, DDR2 SDRAM, 667 MHz
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x89), Broadcom BCM43xx 1.0 (4.170.46.9)
    Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: Maxtor 6L160M0, 152.67 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-846
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA

    In case you need to do this in the future...
    It's "ApplicationCache.db" not Cache.db for Tiger v10.4.11
    Open a Finder window. Select your user account in the Sidebar on the left then open the Library folder, the Caches folder then the com.apple.Safari folder.
    The ApplicationCache.db file is stored there.
    I have an iBookG4 running v10.4.11 / Safari 4.1.3 so I know that file is there.
    Apparently the preferences were corrupted. It happens...
    And you're welcome!

  • Displaying the Last Query Refresh date/time

    Hello,
    on a Webi report, is there a way to display the date/time that the underlying info provider was refreshed?
    Thanks,
    Nikhi

    1.- Create Formula in Query (columns - Create Formula)
    2.- Create Formula Variable for this Formula (Type Customer EXIT) as individual and optional.
    3.- Define the code for customer exits for variables.
    *-- To get Timestamp for last load of data to cube
    WHEN 'ZLSTLOADDT'.
    DATA: lt_tab_1 TYPE TABLE OF rsdcubemulti,
          ls_tab_1 TYPE rsdcubemulti,
          lt_tab_2 TYPE TABLE OF rsmonicdp,
          ls_tab_2 TYPE rsmonicdp.
    DATA: l_calday   TYPE d,
          l_time     TYPE sy-uzeit,
          l_tzone    TYPE ttzz-tzone,
          l_string   TYPE char20.
          SELECT * FROM rsdcubemulti INTO TABLE lt_tab_1
                  WHERE infocube = i_s_cob_pro-infoprov
                    AND objvers = 'A'.
          SORT lt_tab_1 DESCENDING.
          CLEAR ls_tab_1.
          READ TABLE lt_tab_1 INTO ls_tab_1 INDEX 1.
          REFRESH lt_tab_2.
          SELECT * FROM rsmonicdp INTO TABLE lt_tab_2
                  WHERE icube = ls_tab_1-partcube.
          SORT lt_tab_2 DESCENDING.
          CLEAR ls_tab_2.
          READ TABLE lt_tab_2 INTO ls_tab_2 INDEX 1.
          l_tzone = 'INDIA'. "CET, UTC...
          CONVERT TIME STAMP ls_tab_2-timestamp TIME ZONE l_tzone
                     INTO DATE l_calday "aaaammdd
                          TIME l_time.  "hhmmss
          l_s_range-low = l_calday.
          l_s_range-sign = 'I'.
          l_s_range-opt = 'EQ'.
          APPEND l_s_range TO e_t_range.
          EXIT.
        WHEN 'ZLSTLOADTM'.
    DATA: lt_tab_1 TYPE TABLE OF rsdcubemulti,
          ls_tab_1 TYPE rsdcubemulti,
          lt_tab_2 TYPE TABLE OF rsmonicdp,
          ls_tab_2 TYPE rsmonicdp.
    DATA: l_calday   TYPE d,
          l_time     TYPE sy-uzeit,
          l_tzone    TYPE ttzz-tzone,
          l_string   TYPE char20.
          SELECT * FROM rsdcubemulti INTO TABLE lt_tab_1
                  WHERE infocube = i_s_cob_pro-infoprov
                    AND objvers = 'A'.
          SORT lt_tab_1 DESCENDING.
          CLEAR ls_tab_1.
          READ TABLE lt_tab_1 INTO ls_tab_1 INDEX 1.
          REFRESH lt_tab_2.
          SELECT * FROM rsmonicdp INTO TABLE lt_tab_2
                  WHERE icube = ls_tab_1-partcube.
          SORT lt_tab_2 DESCENDING.
          CLEAR ls_tab_2.
          READ TABLE lt_tab_2 INTO ls_tab_2 INDEX 1.
          l_tzone = 'INDIA'. "CET, UTC...
          CONVERT TIME STAMP ls_tab_2-timestamp TIME ZONE l_tzone
                     INTO DATE l_calday "aaaammdd
                          TIME l_time.  "hhmmss
          l_s_range-low = l_time.
          l_s_range-sign = 'I'.
          l_s_range-opt = 'EQ'.
          APPEND l_s_range TO e_t_range.
          EXIT.

Maybe you are looking for

  • [SOLVED] xf86-video-ati 1:7.0.0.-1: segmentation fault

    Hello, just did a system upgrade (just xorg and xf86-video-ati were outdated) and with the newest radeon driver I can't start x. Manually recompiling the newest driver did not help, downgrading to 1:6.14.6-2 did. Here is my xorg.log - any suggestions

  • Why I cannot open a BigClip?

    Hi to everyone, I've got a problem on using the BigClip class. Before I used it I've been working with the usual Clip class. Here's part of the code. After the debugging process I found out that the problem is when I have to get the line for the BigC

  • Control key activating wireless menu: T440s

    I have a company-issued ThinkPad T440s. No admin rights, so I can't install anything. Yesterday the tech helpdesk replaced the keyboard, and ever since, when I press the lefthand Control key a black 'Change Power Settings of Wireless Radios' menus po

  • How to open petstore in the jbuilder8???

    i have downloaded the sourcecode petstore1.3.1 and want to open it in the jubilder8,but i can not know how to do it. Who can tell me? thanks

  • Exporting Projects/Library

    This may be a simple one to answer but here goes. I have an iMac which is my main machine but occasionally I need to export a project to my MacBook Pro to show a client. I usually export the project to the iMac desktop then drag it over to the MBP wh