Error log in ALV OOPS

Hi i am making EDitable alv using refrence program 'BCALV_EDIT_03'. but i want to give error message in center of the window.
then how is it possible. i am using same class ER_DATA_CHANGED->DISPLAY_PROTOCOL. so please let me know

no ans....

Similar Messages

  • How to change the position of the dialog for the error log from ALV Grid

    Hi,
    I've written a program using the method display_protocol to display the error detected in an ALV Grid and find that the error popup at the top left corner of the screen irrespective of the window of the SAP session.
    I'm wondering if I can specify to locate the error popup relative to the top left corner of the window of the SAP session.
    Thanks,
    Francis

    HI PG,
    do below whie filling the filed catlog
    wa_fieldcat-fieldname        = 'Field1".
    wa_fieldcat-COL_POS = '1',
    append wa_fieldcat to it_fieldcat.
    wa_fieldcat-fieldname         = 'Field2".
    wa_fieldcat-COL_POS = '2',
    wa_fieldcat-fieldname         = 'Field3".
    wa_fieldcat-COL_POS = '3',
    Thanks!

  • Display error message in ALV grid  using OOPS

    Hi,
    I have a requirement to display report in ALV. I have created ALV grid using OOPS with three editable cells and 1 button on toolbar. When user enter values in Ediatble cell  and click on the Toolbar button, sales order item should be assigned to contract.
    When the user select  the row and click on toolbar button, a salesorder item should be assigned  to contract and i am using BAPI and fine with BAPI. All the error message should be displayed in a popup and the corresponding failed row  should change its color .
    Once the user identified the failed row, he can edit the value in the ediatble cells and should reprocess in the same screen ( without going back to selection screen).
    To display POP Up, I  am using FM BAL_LOG_CREATE, BAL_LOG_MSG_ADD, BAL_DSP_PROFILE_NO_TREE_GET, BAL_CNTL_CREATE.
    by using above 4 FM , i can display POP UP. but i cannot change the color of the failed row. 
    Once I identified the failed row and reprocess from the same screen , I am successful in processing the failed row, but my error log still has the reprocessed row as failed row because,  error log is not refreshing.
    Please suggest me how to clear error log which was created by using the above FM's and change the color of the failed row .
    Thanks in Advance

    Hi
    Please suggest me how to clear error log which was created by using the above FM's....
    U can use BAL_LOG_REFRESH
    ....and change the color of the failed row
    You need to insert a new field for Colour Attributes in your output table and input its name in the layout structure:
    IS_LAYOUT-INFO_FNAME = <field name for colour>
    The field has to be a CHAR 3 and its value can be -
    > Cxy
    C is a constant
    x is the colour number (from 1 to 9)
    y is intensified (0 = off, 1 = on)
    After changing the value of output table you need to run the method REFRESH_TABLE_DISPLAY for refreshing the output
    Max

  • Suppress Error Log Message in OO ALV

    Hi,
    I am using OO ALV to display an editable ALV GRID. When I have edited the field on ALV, I am validating against the database table. If there is an error, the cell should have focus on the grid. I have used add_protocol_entry to acheive this. But I do not want to display the error log in a separate window. I have tried to suppress the error log message. Any idea ?
    Thanks in advance.
    Regards,
    Satish Kanteti

    Hello Satish,
    This is the standard behaviour when you add a protocol entry. To suppress the log you've to deactivate the protocol display, pass space to the method ACTIVATE_DISPLAY_PROTOCOL( ) of class CL_GUI_ALV_GRID (in the PBO of the corres. screen).
    DATA: g_grid  TYPE REF TO cl_gui_alv_grid.
    g_grid->activate_display_protocol( space ). "Deactvt Protocol disp.
    BR,
    Suhas
    PS: I'll prefer the log being displayed so that the user will know the exact cause of the error & can troubleshoot accordingly!

  • Alv oops raising error message

    Hi,
    iam displaying output using alv oops.
    one of the char field is editable i want to give only numeric values only.i cannot change datatype to numc for that field.if user enters char value(like abc) and click on any button in alv output i want to raise a error message and i want to stop the user in alv report output.
    Regards,
    Suresh

    Hello Suresh
    I assume that the editable field in your ALV list is defined as CHAR type in the underlying table (structure). In order to prevent non-numeric entries I would use the following approach:
    Define additional column for your ALV list, e.g.:
    TYPES: BEGIN OF ty_s_outtab.
      INCLUDE type <name of z-table> AS data.
    TYPES:  numfield(4)    TYPE n.  " Assumption: Your editable field is CHAR4, e.g. charfld
    TYPES: END OF ty_s_outtab.
    TYPES: ty_t_outtab  TYPE STANDARD TABLE OF ty_s_outtab WITH DEFAULT KEY.
    DATA: gt_outtab   TYPE ty_t_outtab.  " your itab for ALV list
    Build fieldcatalog automatically and add additional column for NUMFIELD:
    " Call fm LVC_FIELDCATALOG_MERGE with your z-table
      LOOP AT gt_fcat INTO ls_fcat
                                WHERE ( fieldname = <name of editable field> ).
         " Suppress this field
           ls_fcat-tech = 'X'.
           MODIFY gt_fcat FROM ls_fcat INDEX syst-tabix.
        " Modify LS_FCAT to reflect the additional NUMC4 field
          ls_fcat-fieldname = 'NUMFIELD'.
          ls_fcat-rolltype = ...  " change technical details from CHAR4 -> NUMC4
          ls_fcat-edit = 'X'.  " Now the NUMC4 field is editable
          INSERT ls_fcat INTO gt_fcat INDEX syst-tabix.
      ENDLOOP.
    Initial load of outtab: shuffle values from CHAR4 to NUMC4 field
    REFRESH: gt_outtab.
      LOOP AT gt_data INTO ls_data.
        clear: ls_outtab.
        ls_outtab-data = ls_data.
        move ls_data-charfld TO ls_outtab-numfield.
        APPEND ls_outtab TO gt_outtab.
      ENDLOOP.
    Regards
        Uwe

  • Supress error log display in editable ALV

    Hi,
    I am using an editable ALV to get input. Some of the fields in the grid are assigned a check table. So when a entry which does not exist in the check table is made for these fields ALV by default displays a error log.
    Is there any way to supress the display of this error log and collect the errors in this log to some internal table? I want to do this because apart from the standard validations done by the ALV i am performing some validations in the program and displaying a log. So i want to capture the error log of the ALV and display them in my log so that 2 error logs wont be displayed.
    Thanks in advance,
    Tongston Immanuel.

    I'm building a kind of feature, where you can go different ways in a tree, based on a condition. The values for this condition are entered in an ALV-grid, which is a table with fields of type C(30). However to have a F4 help, I fill in ref_field and ref_table in the fieldcatalog. Most of the time, this works fine, but for fields of type NUMC, even if no F4 help is available, this doesn't work since internally it wants to convert this NUMC field to my CHAR field and it fails.
    I refreshed my log table in the DATA_CHANGED event. Thanks for your suggestion!

  • FM used for error log

    Hi experts,
    I would like to ask if you happen to kmow an alternative FM to 'SMPO_DISPLAY_MESSAGES'.
    The thing is I'm using error log in my program and I configure it so that there is just a pushbutton in the ALV. Once the button is pushed, the error encountered in the execution of the program will show.
    Using FM 'SMPO_DISPLAY_MESSAGES' would show the pop-up for errors while executing the program and not after execution.
    If you happen to know any alternative for this FM, it would really help.
    Thanks in advance.
    Jen

    Use below FMs
    BAL_LOG_CREATE
    BAL_LOG_REFRESH
    BAL_LOG_MSG_ADD
    BAL_DSP_LOG_DISPLAY
    reward if useful

  • Oracle errors in Weblogic Error logs appear in non english

    We have a problem with weblogic error logging. Specifically, in a managed server's log file, Oracle errors such as ORA-XXXX show in Greek, not English. We are assuming
    that this is because the timezone is Europe/Athens. However, the weblogic application server runs with user.language=en, user.country=US. What's more, there are 4 application servers and 2 of them have this problem. The oracle database is accessed via weblogic datasources.
    Oracle database server Setup: Oracle Server 11gR2 running on Oracle Linux 64 bit, timezone set to Europe/Athens
    Weblogic Server: Weblogic 10.3.5 running on Oracle Linux 64 bit, timezone set to Europe/Athens
    The managed server, according to jrockit, the jvm runs with the following language related system properties:
    user.language=en, user.country=US, user.timezone=Europe/Athens
    The question is: How do we tell oracle / weblogic to log english text for the ORA errors?
    Thanks,
    Chris

    I digged in the weblogic installation directory and it seems like the domain configuration wizard messed up the jdbc configs for the data sources.
    The config xml files for the data sources in the /domain root/config/jdbc directory had oracle driver but the test query was for pointbase. I double checked from the database.xml file in the init-info directory and corrected the entry in the datasource config xmls and voila!.. the errors were gone.
    I am not sure if this was the right approach and whether i have solved the issue or simply patched it.. so I am keeping the question open. If any one has any inputs I will be grateful.
    If the mods/admins feel that the thread should be marked as solved I will surely do so.
    Thanks.

  • Error in updating ALV field catalog in selection tool for Planning Book

    Hi ,
    I am Implementing BADI  '/SAPAPO/SDP_SELECTOR' to upload Custom Fields Data in Planning Book Selection Window under APO Location Product. These Custom Fields are maintained in Custom Table.So from Table whatever Custom Fields are availabe all the fields needs to be available in for selection. Once selection is done the same data to be uploaded into Planning Book.
    This BADI is working Fine upto 4 fields but if any extra fields are added in the table 'Error in updating ALV field catalog in selection tool' error Pop Up is coming. Here i am using Folloowing Methods
    1). INIT_OBJECT_LIST
    2). F4
    3). LOC_PROD_VALUE_LIST
    Please help on the same if u have any idea or clue.
    Thanks.

    Hi Srinivas!
    Where did you get your implementation from?
    It would be nice if you could debug your code!
    For the F4 method, have you seen this note?
    Note 544904 - Sample source code f.BAdI /SAPAPO/SDP_SELECTOR ('F4'method)
    Also check this note. It contains selection modifications in the BAdI:
    Note 376902 - SDP selector: Basis corrections for BADI
    I do not know your release and support package in your SCM, but you can find a lot of notes related to this BAdI.
    Thank you!
    Will
    SCM Support Consultant

  • Error in updating ALV field catalog in selection

    Dear all,
    I'm trying to use the standard transaction /SAPAPO/TSKEYFMAIN in order to check the TS values.
    After filling the selection variant, the system shows the following error:
    'Error in updating ALV field catalog in selection'
    Could you please provide me with further details about the error? What could be the possible solution to avoid it?
    Many thanks,
    SM

    Hi Marius,
    thanks for your answer.
    I would like to use the /SAPAPO/TSKEYFMAIN transaction to check massively the values in the time series KFs and not just the consistency of them.
    So do you know any other transaction to do it or do you have an idea about the error of /SAPAPO/TSKEYFMAIN?
    Thanks for your help!
    SM

  • Sap Payroll error log report

    Hi All,
    We are developing Report on SAP Payroll log with the error message . Is any table exist in SAP where we can get the standard error message repositery and then convert it in the User freindly error message ?
    Thanks
    H

    Hello hg,
    Before developing report on SAP Payroll error log I suggest taking a look at below blog. There is a new functionality from SAP to improve payroll data validation and they are calling it "Control Center Add-On".
    This is going to be a free add on for anyone who is on EHP7 and NetWeaver on 7.4 release. The general availability is June 2nd 2014.
    Improve payroll data validation with SAP Payroll control center add-on
    Hope this helps.
    Thanks,
    Hemanth Jamithi.

  • No Error Log generated in 'Costing' step in Costing Run (CK40N)

    In the Costing Run, when the 'Costing' step is run (after 'Material selection'  and 'BOM Explosion' steps), it gives a hard stop when it encounters the 1st error, instead of completing the 'Costing ' step and giving an Error Log with material information and nature of errors. This makes it very cumbersome to resolve all the errors.
    In the Costing Variant setting in config, the u2018Save Error Log' indicator has been checked.
    Please let me know if I am missing something.
    Venkat

    Hi Vimal,
    Your proposal does not resolve the issue. I found OSS Note 375901, which addresses this issue - see below
    :In Customizing for the costing variant (Transaction OKKN) in the tab "Misc.", you chose "Messages online" for the Error Management option.
    Solution
    Change the error management for the costing variant to
    "Log and Save Messages..."
    Many thanks for your inputs.
    Venkat

  • IPhoto Crashes all of the time. Attached Error Log. Please help?

    Attached is the error log. I've tried creating a new library and running disk utility. iPhoto crashes after a few minutes of use, especially when trying to edit photos. Any advice? The crashing is chronic and has occured for some time now (months).
    Process: iPhoto [3091]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 9.4.3 (9.4.3)
    Build Info: iPhotoProject-720091000000000~1
    App Item ID: 408981381
    App External ID: 15017489
    Code Type: X86 (Native)
    Parent Process: launchd [169]
    Date/Time: 2013-05-16 16:19:12.951 +0100
    OS Version: Mac OS X 10.7.5 (11G63b)
    Report Version: 9
    Interval Since Last Report: 233038 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 54616 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: ----------------------------------------
    Crashed Thread: 16
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ffffffff
    VM Regions Near 0xffffffff:
    --> shared memory 00000000ffff0000-00000000ffff2000 [ 8K] r-x/r-x SM=SHM
    Application Specific Information:
    objc[3091]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0 libsystem_kernel.dylib 0x985b3c22 mach_msg_trap + 10
    1 libsystem_kernel.dylib 0x985b31f6 mach_msg + 70
    2 com.apple.CoreFoundation 0x94a3e9da __CFRunLoopServiceMachPort + 170
    3 com.apple.CoreFoundation 0x94a47b04 __CFRunLoopRun + 1428
    4 com.apple.CoreFoundation 0x94a471dc CFRunLoopRunSpecific + 332
    5 com.apple.CoreFoundation 0x94a47088 CFRunLoopRunInMode + 120
    6 com.apple.HIToolbox 0x99612543 RunCurrentEventLoopInMode + 318
    7 com.apple.HIToolbox 0x996198ab ReceiveNextEventCommon + 381
    8 com.apple.HIToolbox 0x9961971a BlockUntilNextEventMatchingListInMode + 88
    9 com.apple.AppKit 0x9a24eee8 _DPSNextEvent + 678
    10 com.apple.AppKit 0x9a24e752 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11 com.apple.AppKit 0x9a24aac1 -[NSApplication run] + 911
    12 com.apple.AppKit 0x9a4dbac5 NSApplicationMain + 1054
    13 com.apple.iPhoto 0x0009e0b9 0x8e000 + 65721
    14 com.apple.iPhoto 0x0009d705 0x8e000 + 63237
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib 0x985b5b5e __select_nocancel + 10
    1 libdispatch.dylib 0x949fdcbd _dispatch_mgr_invoke + 642
    2 libdispatch.dylib 0x949fc853 _dispatch_mgr_thread + 53
    Thread 2:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e78 _pthread_cond_wait + 914
    2 libsystem_c.dylib 0x97549f7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.Foundation 0x989d13c3 -[NSCondition waitUntilDate:] + 427
    4 com.apple.Foundation 0x989977d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5 com.apple.Foundation 0x989976a6 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01d98a42 -[XTMsgQueue waitForMessage] + 47
    7 com.apple.proxtcore 0x01d97b19 -[XTThread run:] + 412
    8 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    9 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    10 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    11 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 3:
    0 libJPEG.dylib 0x9537e35d _cg_vec_jpeg_idct_islow + 740
    1 libJPEG.dylib 0x9537c396 decompress_onepass + 379
    2 libJPEG.dylib 0x9537c1bc process_data_simple_main + 43
    3 libJPEG.dylib 0x9537c186 _cg_jpeg_read_scanlines + 154
    4 com.apple.ImageIO.framework 0x95dd0014 copyImageBlockSetJPEG + 2807
    5 com.apple.ImageIO.framework 0x95dcf456 ImageProviderCopyImageBlockSetCallback + 440
    6 com.apple.CoreGraphics 0x91947d98 CGImageProviderCopyImageBlockSetWithOptions + 173
    7 com.apple.CoreGraphics 0x91947ce5 CGImageProviderCopyImageBlockSet + 69
    8 com.apple.CoreGraphics 0x91977599 imageProvider_getBytes + 129
    9 com.apple.CoreGraphics 0x91898e53 CGAccessSessionGetBytes + 315
    10 com.apple.geode 0x0119081b DGReadBytesFromAccessSession + 197
    11 com.apple.geode 0x01190e18 DGReadBytesRGBA8toARGB8 + 34
    12 com.apple.geode 0x010fb18b -[DGImageIOFactory readImageSource:intoConsumers:readFunctions:] + 160
    13 com.apple.geode 0x010fbf42 -[DGImageIOFactory fulfillImageRequest:intoLockedPage:forTile:] + 2532
    14 com.apple.geode 0x010fd65f -[DGImageIOFactory readRequest:intoPageRef:] + 752
    15 com.apple.geode 0x010fdc1a -[DGImageIOFactory readHandler:] + 165
    16 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    17 com.apple.proxtcore 0x01d99e59 -[XTSubscription postMessage:] + 191
    18 com.apple.proxtcore 0x01d9971f -[XTDistributor distributeMessage:] + 681
    19 com.apple.proxtcore 0x01d98f42 -[XTThread handleMessage:] + 515
    20 com.apple.proxtcore 0x01d97b2f -[XTThread run:] + 434
    21 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    22 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    23 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    24 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 4:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e78 _pthread_cond_wait + 914
    2 libsystem_c.dylib 0x97549f7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.Foundation 0x989d13c3 -[NSCondition waitUntilDate:] + 427
    4 com.apple.Foundation 0x989977d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5 com.apple.Foundation 0x989976a6 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01d98a42 -[XTMsgQueue waitForMessage] + 47
    7 com.apple.proxtcore 0x01d97b19 -[XTThread run:] + 412
    8 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    9 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    10 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    11 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 5:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e78 _pthread_cond_wait + 914
    2 libsystem_c.dylib 0x97549f7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.Foundation 0x989d13c3 -[NSCondition waitUntilDate:] + 427
    4 com.apple.Foundation 0x989977d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5 com.apple.Foundation 0x989976a6 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01d98a42 -[XTMsgQueue waitForMessage] + 47
    7 com.apple.proxtcore 0x01d97b19 -[XTThread run:] + 412
    8 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    9 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    10 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    11 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 6:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e78 _pthread_cond_wait + 914
    2 libsystem_c.dylib 0x97549f7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.Foundation 0x989d13c3 -[NSCondition waitUntilDate:] + 427
    4 com.apple.Foundation 0x989977d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5 com.apple.Foundation 0x989976a6 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01db08d6 -[XTThread waitForSynchReply:] + 172
    7 com.apple.proxtcore 0x01d9fda3 -[XTThread sendLocalMessageSynch:destThread:] + 207
    8 com.apple.geode 0x010fd97e -[DGImageIOFactory cache:cacheStore:onFulfillRequest:intoPageRef:] + 643
    9 com.apple.proxtcore 0x01dbbdc5 -[XTCacheFactory cache:cacheStore:fulfillRequest:intoPageRef:] + 1128
    10 com.apple.proxtcore 0x01dba9fb -[XTCacheBroker cacheStore:fulfillRequest:intoPageRef:] + 65
    11 com.apple.proxtcore 0x01dc2044 -[XTCacheStore newObjectFulfillRequest:] + 650
    12 com.apple.proxtcore 0x01dc26cd -[XTCacheStore newObjectForRequest:] + 1167
    13 com.apple.proxtcore 0x01dba042 -[XTCache newObjectForRequest:] + 43
    14 com.apple.geode 0x0113633e -[DGCachedTileImageProvider prefetchDataInRect:] + 525
    15 com.apple.geode 0x010cef2c -[DGImage prefetchImageInRect:] + 93
    16 com.apple.RedRock 0x02613b90 -[RKImageCache _performPrefetch:] + 485
    17 com.apple.RedRock 0x02614131 -[RKImageCache _backgroundPrefetch:] + 1140
    18 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    19 com.apple.proxtcore 0x01d99e59 -[XTSubscription postMessage:] + 191
    20 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    21 com.apple.proxtcore 0x01d99ab5 -[XTList makeObjectsPerformSelector:withObject:] + 60
    22 com.apple.proxtcore 0x01d9971f -[XTDistributor distributeMessage:] + 681
    23 com.apple.proxtcore 0x01d98f42 -[XTThread handleMessage:] + 515
    24 com.apple.proxtcore 0x01d97b2f -[XTThread run:] + 434
    25 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    26 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    27 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    28 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 7:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e78 _pthread_cond_wait + 914
    2 libsystem_c.dylib 0x97549f7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.Foundation 0x989d13c3 -[NSCondition waitUntilDate:] + 427
    4 com.apple.Foundation 0x989977d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5 com.apple.Foundation 0x989976a6 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01d98a42 -[XTMsgQueue waitForMessage] + 47
    7 com.apple.proxtcore 0x01d97b19 -[XTThread run:] + 412
    8 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    9 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    10 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    11 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 8:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e78 _pthread_cond_wait + 914
    2 libsystem_c.dylib 0x97549f7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.Foundation 0x989d13c3 -[NSCondition waitUntilDate:] + 427
    4 com.apple.Foundation 0x989977d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5 com.apple.Foundation 0x989976a6 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01d98a42 -[XTMsgQueue waitForMessage] + 47
    7 com.apple.proxtcore 0x01d97b19 -[XTThread run:] + 412
    8 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    9 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    10 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    11 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 9:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e78 _pthread_cond_wait + 914
    2 libsystem_c.dylib 0x97549f7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.Foundation 0x989d13c3 -[NSCondition waitUntilDate:] + 427
    4 com.apple.Foundation 0x989977d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5 com.apple.Foundation 0x989976a6 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.RedRock 0x023d82bf -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7 com.apple.CoreFoundation 0x94aaf1aa -[NSObject performSelector:] + 58
    8 com.apple.proxtcore 0x01da1ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    10 com.apple.proxtcore 0x01d99e59 -[XTSubscription postMessage:] + 191
    11 com.apple.proxtcore 0x01d9971f -[XTDistributor distributeMessage:] + 681
    12 com.apple.proxtcore 0x01d98f42 -[XTThread handleMessage:] + 515
    13 com.apple.proxtcore 0x01d97b2f -[XTThread run:] + 434
    14 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    15 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    16 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    17 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 10:: com.apple.NSURLConnectionLoader
    0 libsystem_kernel.dylib 0x985b3c22 mach_msg_trap + 10
    1 libsystem_kernel.dylib 0x985b31f6 mach_msg + 70
    2 com.apple.CoreFoundation 0x94a3e9da __CFRunLoopServiceMachPort + 170
    3 com.apple.CoreFoundation 0x94a47b04 __CFRunLoopRun + 1428
    4 com.apple.CoreFoundation 0x94a471dc CFRunLoopRunSpecific + 332
    5 com.apple.CoreFoundation 0x94a47088 CFRunLoopRunInMode + 120
    6 com.apple.Foundation 0x989ab0c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    8 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    9 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    10 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 11:: com.apple.CFSocket.private
    0 libsystem_kernel.dylib 0x985b5b42 __select + 10
    1 com.apple.CoreFoundation 0x94a95e15 __CFSocketManager + 1557
    2 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    3 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 12:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e21 _pthread_cond_wait + 827
    2 libsystem_c.dylib 0x974fa42c pthread_cond_wait$UNIX2003 + 71
    3 com.apple.Foundation 0x989a0be8 -[NSCondition wait] + 304
    4 com.apple.iPhoto 0x000e0184 0x8e000 + 336260
    5 com.apple.iPhoto 0x000dfd92 0x8e000 + 335250
    6 com.apple.CoreFoundation 0x94aa9a9d __invoking___ + 29
    7 com.apple.CoreFoundation 0x94aa99d9 -[NSInvocation invoke] + 137
    8 com.apple.RedRock 0x023f46eb -[RKInvoker _invokeTarget:] + 33
    9 com.apple.RedRock 0x024054ac -[RKInvoker _invokeTargetWithPool:] + 68
    10 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    11 com.apple.proxtcore 0x01da1ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    13 com.apple.proxtcore 0x01d99e59 -[XTSubscription postMessage:] + 191
    14 com.apple.proxtcore 0x01d9971f -[XTDistributor distributeMessage:] + 681
    15 com.apple.proxtcore 0x01d98f42 -[XTThread handleMessage:] + 515
    16 com.apple.proxtcore 0x01d97b2f -[XTThread run:] + 434
    17 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    18 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    19 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    20 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 13:: CVDisplayLink
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e21 _pthread_cond_wait + 827
    2 libsystem_c.dylib 0x974fa42c pthread_cond_wait$UNIX2003 + 71
    3 com.apple.CoreVideo 0x974b00cd CVDisplayLink::runIOThread() + 945
    4 com.apple.CoreVideo 0x974afd05 _ZL13startIOThreadPv + 160
    5 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    6 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 14:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e78 _pthread_cond_wait + 914
    2 libsystem_c.dylib 0x97549f7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.CoreServices.CarbonCore 0x907193a7 TSWaitOnConditionTimedRelative + 178
    4 com.apple.CoreServices.CarbonCore 0x9071911d TSWaitOnSemaphoreCommon + 490
    5 com.apple.CoreServices.CarbonCore 0x90718f2e TSWaitOnSemaphoreRelative + 24
    6 com.apple.QuickTimeComponents.component 0x939c016a 0x933d3000 + 6213994
    7 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    8 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 15:: com.apple.coremedia.scheduledfileio
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e21 _pthread_cond_wait + 827
    2 libsystem_c.dylib 0x974fa42c pthread_cond_wait$UNIX2003 + 71
    3 com.apple.CoreMedia 0x97debb0e WaitOnCondition + 19
    4 com.apple.CoreMedia 0x97debd3b FigSemaphoreWaitRelative + 194
    5 com.apple.CoreMedia 0x97de7946 FigScheduledFileIOThread + 201
    6 com.apple.CoreMedia 0x97dece33 figThreadMain + 496
    7 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    8 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 16 Crashed:
    0 com.apple.CoreImage 0x973c88a3 CoreImage_crashed_because_it_could_not_allocate_memory(void const*) + 17
    1 com.apple.CoreImage 0x973c8725 FEVirtualMemory::allocate(unsigned long&, signed char&) + 293
    2 com.apple.CoreImage 0x972736ed fe_buffer_activate(FEContext*, unsigned int) + 443
    3 com.apple.CoreImage 0x9727349e -[FEBuffer beginRenderForContext:textureTarget:warpMode:flipped:flags:] + 136
    4 com.apple.CoreImage 0x972b025e FETexture::renderSetup(FEContext*, FEFormat) + 222
    5 com.apple.CoreImage 0x972b017b FETexture::textureRenderSetup(FEContext*, void*, FEFormat) + 37
    6 com.apple.CoreImage 0x972b89ac FEApplyTreeNode::render2(FETreeContext*, FEShape const*, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 1068
    7 com.apple.CoreImage 0x972b5ec9 FETreeNode::render_(FETreeContext*, FEShape const*, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 119
    8 com.apple.CoreImage 0x972b5fab FETreeNode::renderTexture(void*, CGRect, FEFormat, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 85
    9 com.apple.CoreImage 0x972b045c FETexture::retainTextureObject(FETextureCache*, FEContext*, unsigned int, void*, void (*)(void*, CGRect, FEFormat, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*), CGRect const*, bool, fe_texture_object_struct**) + 454
    10 com.apple.CoreImage 0x972b0f1b FETexture::newTexture(FEContext*, fe_texture_params_struct const*, void*, void (*)(void*, CGRect, FEFormat, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*), fe_texture_object_struct**) + 1037
    11 com.apple.CoreImage 0x972b632b FETreeNode::createTexture(FETreeContext*, unsigned int, unsigned int, bool, bool, FETreeTexture*, unsigned int) + 867
    12 com.apple.CoreImage 0x972b87f2 FEApplyTreeNode::render2(FETreeContext*, FEShape const*, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 626
    13 com.apple.CoreImage 0x972b5ec9 FETreeNode::render_(FETreeContext*, FEShape const*, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 119
    14 com.apple.CoreImage 0x972b931d FECropTreeNode::render2(FETreeContext*, FEShape const*, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 185
    15 com.apple.CoreImage 0x972b5ec9 FETreeNode::render_(FETreeContext*, FEShape const*, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 119
    16 com.apple.CoreImage 0x972b5fab FETreeNode::renderTexture(void*, CGRect, FEFormat, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 85
    17 com.apple.CoreImage 0x972b045c FETexture::retainTextureObject(FETextureCache*, FEContext*, unsigned int, void*, void (*)(void*, CGRect, FEFormat, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*), CGRect const*, bool, fe_texture_object_struct**) + 454
    18 com.apple.CoreImage 0x972b0f1b FETexture::newTexture(FEContext*, fe_texture_params_struct const*, void*, void (*)(void*, CGRect, FEFormat, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*), fe_texture_object_struct**) + 1037
    19 com.apple.CoreImage 0x972b632b FETreeNode::createTexture(FETreeContext*, unsigned int, unsigned int, bool, bool, FETreeTexture*, unsigned int) + 867
    20 com.apple.CoreImage 0x972b87f2 FEApplyTreeNode::render2(FETreeContext*, FEShape const*, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 626
    21 com.apple.CoreImage 0x972b5ec9 FETreeNode::render_(FETreeContext*, FEShape const*, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 119
    22 com.apple.CoreImage 0x972b9893 FETreeNode::render(FETreeContext*, FEShape const&, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 97
    23 com.apple.CoreImage 0x972b982c FETreeContext::render(FETreeNode*, FEShape const&, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 52
    24 com.apple.CoreImage 0x972bd143 FETreeContext::renderTree(FETreeNode*, FEShape const&, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 189
    25 com.apple.CoreImage 0x972bd430 FETreeContext::renderImage_(FEImage*, CGRect, FEShape const*, CGAffineTransform, CGColorSpace*, FEFormat, bool, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 686
    26 com.apple.CoreImage 0x972bd69b FETreeContext::renderImage(FEImage*, CGRect, FEShape const*, CGAffineTransform, CGColorSpace*, FEFormat, bool, void (*)(FEContext*, void*, FEFormat), void (*)(FEContext*, void*), void*) + 361
    27 com.apple.CoreImage 0x9729263a -[FEImage(Internal) _renderWithContext:bounds:transform:colorSpace:format:premultiplied:setupCallba ck:finishCallback:callbackData:] + 273
    28 com.apple.CoreImage 0x97291ecd -[FEImage getBitmap:withContext:origin:transform:colorSpace:] + 1543
    29 com.apple.CoreImage 0x9724362d -[CIContextImpl render:toBitmap:rowBytes:bounds:format:colorSpace:] + 323
    30 com.apple.CoreImage 0x9724251e -[CIContext render:toBitmap:rowBytes:bounds:format:colorSpace:] + 114
    31 com.apple.iPhoto 0x0064cac5 0x8e000 + 6023877
    32 com.apple.CoreFoundation 0x94aa9a9d __invoking___ + 29
    33 com.apple.CoreFoundation 0x94aa99d9 -[NSInvocation invoke] + 137
    34 com.apple.RedRock 0x023f46eb -[RKInvoker _invokeTarget:] + 33
    35 com.apple.RedRock 0x024054ac -[RKInvoker _invokeTargetWithPool:] + 68
    36 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    37 com.apple.proxtcore 0x01da1ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    38 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    39 com.apple.proxtcore 0x01d99e59 -[XTSubscription postMessage:] + 191
    40 com.apple.proxtcore 0x01d9971f -[XTDistributor distributeMessage:] + 681
    41 com.apple.proxtcore 0x01d98f42 -[XTThread handleMessage:] + 515
    42 com.apple.proxtcore 0x01d97b2f -[XTThread run:] + 434
    43 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    44 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    45 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    46 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 17:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e21 _pthread_cond_wait + 827
    2 libsystem_c.dylib 0x974fa42c pthread_cond_wait$UNIX2003 + 71
    3 com.apple.iPhoto 0x0058ef21 0x8e000 + 5246753
    4 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    5 com.apple.proxtcore 0x01da1ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    6 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    7 com.apple.proxtcore 0x01d99e59 -[XTSubscription postMessage:] + 191
    8 com.apple.proxtcore 0x01d9971f -[XTDistributor distributeMessage:] + 681
    9 com.apple.proxtcore 0x01d98f42 -[XTThread handleMessage:] + 515
    10 com.apple.proxtcore 0x01d97b2f -[XTThread run:] + 434
    11 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    12 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    13 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    14 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 18:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e21 _pthread_cond_wait + 827
    2 libsystem_c.dylib 0x974fa42c pthread_cond_wait$UNIX2003 + 71
    3 com.apple.iPhoto 0x00157832 0x8e000 + 825394
    4 com.apple.CoreFoundation 0x94aa9a9d __invoking___ + 29
    5 com.apple.CoreFoundation 0x94aa99d9 -[NSInvocation invoke] + 137
    6 com.apple.RedRock 0x023f46eb -[RKInvoker _invokeTarget:] + 33
    7 com.apple.RedRock 0x024054ac -[RKInvoker _invokeTargetWithPool:] + 68
    8 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    9 com.apple.proxtcore 0x01da1ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    11 com.apple.proxtcore 0x01d99e59 -[XTSubscription postMessage:] + 191
    12 com.apple.proxtcore 0x01d9971f -[XTDistributor distributeMessage:] + 681
    13 com.apple.proxtcore 0x01d98f42 -[XTThread handleMessage:] + 515
    14 com.apple.proxtcore 0x01d97b2f -[XTThread run:] + 434
    15 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    16 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    17 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    18 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 19:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e21 _pthread_cond_wait + 827
    2 libsystem_c.dylib 0x974fa42c pthread_cond_wait$UNIX2003 + 71
    3 com.apple.iPhoto 0x0058ef21 0x8e000 + 5246753
    4 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    5 com.apple.proxtcore 0x01da1ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    6 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    7 com.apple.proxtcore 0x01d99e59 -[XTSubscription postMessage:] + 191
    8 com.apple.proxtcore 0x01d9971f -[XTDistributor distributeMessage:] + 681
    9 com.apple.proxtcore 0x01d98f42 -[XTThread handleMessage:] + 515
    10 com.apple.proxtcore 0x01d97b2f -[XTThread run:] + 434
    11 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    12 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    13 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    14 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 20:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e21 _pthread_cond_wait + 827
    2 libsystem_c.dylib 0x974fa42c pthread_cond_wait$UNIX2003 + 71
    3 com.apple.iPhoto 0x0019d728 0x8e000 + 1111848
    4 com.apple.CoreFoundation 0x94aa9a9d __invoking___ + 29
    5 com.apple.CoreFoundation 0x94aa99d9 -[NSInvocation invoke] + 137
    6 com.apple.RedRock 0x023f46eb -[RKInvoker _invokeTarget:] + 33
    7 com.apple.RedRock 0x024054ac -[RKInvoker _invokeTargetWithPool:] + 68
    8 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    9 com.apple.proxtcore 0x01da1ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10 com.apple.CoreFoundation 0x94aa6d11 -[NSObject performSelector:withObject:] + 65
    11 com.apple.proxtcore 0x01d99e59 -[XTSubscription postMessage:] + 191
    12 com.apple.proxtcore 0x01d9971f -[XTDistributor distributeMessage:] + 681
    13 com.apple.proxtcore 0x01d98f42 -[XTThread handleMessage:] + 515
    14 com.apple.proxtcore 0x01d97b2f -[XTThread run:] + 434
    15 com.apple.Foundation 0x9899ee25 -[NSThread main] + 45
    16 com.apple.Foundation 0x9899edd5 __NSThread__main__ + 1582
    17 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    18 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 21:
    0 libsystem_kernel.dylib 0x985b583e __psynch_cvwait + 10
    1 libsystem_c.dylib 0x97549e78 _pthread_cond_wait + 914
    2 libsystem_c.dylib 0x97549f7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.CoreServices.CarbonCore 0x907193a7 TSWaitOnConditionTimedRelative + 178
    4 com.apple.CoreServices.CarbonCore 0x9071911d TSWaitOnSemaphoreCommon + 490
    5 com.apple.CoreServices.CarbonCore 0x90718f2e TSWaitOnSemaphoreRelative + 24
    6 com.apple.CoreServices.CarbonCore 0x9074be53 AIOFileThread(void*) + 1019
    7 libsystem_c.dylib 0x97545ed9 _pthread_start + 335
    8 libsystem_c.dylib 0x975496de thread_start + 34
    Thread 22:
    0 libsystem_kernel.dylib 0x985b602e __workq_kernreturn + 10
    1 libsystem_c.dylib 0x97547ccf _pthread_wqthread + 773
    2 libsystem_c.dylib 0x975496fe start_wqthread + 30
    Thread 23:
    0 libsystem_kernel.dylib 0x985b602e __workq_kernreturn + 10
    1 libsystem_c.dylib 0x97547ccf _pthread_wqthread + 773
    2 libsystem_c.dylib 0x975496fe start_wqthread + 30
    Thread 24:
    0 libsystem_kernel.dylib 0x985b602e __workq_kernreturn + 10
    1 libsystem_c.dylib 0x97547ccf _pthread_wqthread + 773
    2 libsystem_c.dylib 0x975496fe start_wqthread + 30
    Thread 25:
    0 libsystem_kernel.dylib 0x985b602e __workq_kernreturn + 10
    1 libsystem_c.dylib 0x97547ccf _pthread_wqthread + 773
    2 libsystem_c.dylib 0x975496fe start_wqthread + 30
    Thread 16 crashed with X86 Thread State (32-bit):
    eax: 0x973c889d ebx: 0xffffffff ecx: 0xffffffff edx: 0x00000200
    edi: 0xb1a3ab00 esi: 0x973c860e ebp: 0xb1a3aa28 esp: 0xb1a3aa20
    ss: 0x00000023 efl: 0x00010246 eip: 0x973c88a3 cs: 0x0000001b
    ds: 0x00000023 es: 0x00000023 fs: 0x00000023 gs: 0x0000000f
    cr2: 0xffffffff
    Logical CPU: 3
    Binary Images:
    0x8e000 - 0xd83ff3 com.apple.iPhoto (9.4.3 - 9.4.3) <74A545E6-1EB2-315F-82FA-3344B599F490> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0xf18000 - 0xff8fe7 org.python.python (2.6.7 - 2.6.7) <61DBA92A-C39A-3A52-86F2-59CF9D310CB4> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1045000 - 0x104dffb com.apple.PhotoFoundation (1.0 - 20.12) <6DEFC232-B843-3848-908E-25AF929E9026> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10bc000 - 0x1299ffb com.apple.geode (1.5.3 - 280.22) <887FF540-8A00-3AED-9C17-C99856E7A6F4> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x1329000 - 0x132eff7 com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <6B675B59-ED97-35F8-89CB-79F387A05EA5> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1337000 - 0x1366ff7 com.apple.iLifeAssetManagement (2.7 - 45.19) <C30AF8E5-51DB-3912-B58C-41988B396209> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x138a000 - 0x13b1ff3 com.apple.iPhoto.Tessera (1.1 - 90.10) <143B4B05-6F39-3C83-A927-E4B5A53D2344> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13c4000 - 0x13e8ffb com.apple.iPhoto.Tellus (1.3 - 90.10) <88853EBB-0C48-3A68-91B7-ED078C953CBD> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1401000 - 0x140cfff com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <39466D2B-2583-3407-96F2-69ADCF11ECB9> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x141a000 - 0x142fffb com.apple.iLifeFaceRecognition (1.0 - 30.11) <5ADCA81F-5D7B-340F-9F44-B261ED19BBB2>
    /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/iLifeFaceRecognition
    0x143d000 - 0x1469ffb com.apple.DiscRecordingUI (6.0.4 - 6040.4.1) <F3EDDD79-611F-3ECC-9B78-0AB8BAC0D446> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1482000 - 0x1484fff com.apple.ExceptionHandling (1.5 - 10) <6CA9446C-7EF9-35EE-BDF2-AA8D51E93E9E> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x148a000 - 0x1495ff7 com.apple.UpgradeChecker (9.2 - 9.2) <39176044-B0CF-3C25-AF8D-A2BD8540A025> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14a1000 - 0x183aff3 com.apple.iLifeSlideshow (3.1 - 1151.4) <BBC17D76-255B-3135-92A6-886AD68BEB3F> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1935000 - 0x1bc8ffb com.apple.iLifePageLayout (1.3 - 210.38) <12AF048A-AAEE-39D3-B25C-383E9C5FB855> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1ca1000 - 0x1d38ff7 com.apple.MobileMe (13 - 1.0.4) <38D8679A-1862-373C-BF4F-EB47200EDF08> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1d94000 - 0x1dfcff3 com.apple.proxtcore (1.4.1 - 270.13) <E71FA444-D69B-3395-8F99-0DA367E6CF22> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x1e41000 - 0x1f40ff3 com.apple.iLifeSQLAccess (1.7.1 - 70.30) <081DDD36-ADA7-3329-8265-BE6AD5AB4E5F> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x1f8a000 - 0x1fb5ffb com.apple.ProUtils (1.1 - 220.17) <3D8B203C-20D3-30FA-9A22-C88C11B60C41> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x1fcf000 - 0x203afff com.apple.iLifeKit (1.3.1 - 180.8) <C193C15D-7EA7-30CA-82ED-189192298D2A> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x207f000 - 0x22a7ff7 com.apple.prokit (7.2.3 - 1823) <0FEDF2D7-F31A-36F2-91A9-C03877B0CB46> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x23b5000 - 0x2917fff com.apple.RedRock (1.9.4 - 321.1) <7D29E84D-9336-3912-BA5C-EA8125553945> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2b30000 - 0x2b46ffb com.apple.AOSAccounts (1.0.2 - 1.0.71) <13763832-1B2B-32E8-95BC-C23A627E6DD4> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2b59000 - 0x2b93ff3 com.apple.Ubiquity (1.1 - 210.2) <F8426ABA-BB3F-3A48-BF4E-9A0F6C12634F> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x2bad000 - 0x2badff6 com.apple.SafariDAVNotifier (1.1.1 - 1) <DE95A56E-E2C8-3D96-B628-4DC6FA6CDD39> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2bb2000 - 0x2bd3ff7 com.apple.ChunkingLibrary (1.0 - 127.2) <8C1C8488-71E4-3C13-AF75-95CF06C040A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x2bde000 - 0x2be0fff com.apple.LibraryRepair (1.0 - 1) <8D2DE423-2226-395A-9D90-3C43911F8613> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air

    Can I keep my albums, etc.?
    Back up first, just in case, but it shouldn't effect your library.
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • How to do it in ALV OOPS

    Hi
    Im using ALV OOPS.o/p I have 10 records with checkbox(at user command I have to select record selected by check box). Now on the menu bar I hav a button for "SELECT ALL". If "selected all" 10 recored will be selected. If I filter upon some criteria no. of records will be 3..Now in GUI if I select SELECT all it will display 3 records r selected, but I have to process further internally ,,,but internally 10 records are selected. So how to write code for that is after filterring 3 records r selected and I "select all"..only 3 records will be selected instead of 10?
    Part of my code like this..
    SELECT all
      CALL METHOD G_GRID->CHECK_CHANGED_DATA
        IMPORTING
          E_VALID = L_VALID.
      IF L_VALID EQ 'X'.
        LOOP AT PT_OUTTAB INTO LS_OUTTAB.
      DATA LS_CELLTAB TYPE LVC_S_STYL.
      LOOP AT PS_OUTTAB-CELLTAB INTO LS_CELLTAB.
        IF LS_CELLTAB-FIELDNAME = 'CHECKBOX'.
          IF LS_CELLTAB-STYLE EQ CL_GUI_ALV_GRID=>MC_STYLE_DISABLED.
            P_LOCKED = 'X'.
          ELSE.
            P_LOCKED = SPACE.
          ENDIF.
        ENDIF.
      ENDLOOP.
          IF L_LOCKED IS INITIAL
             AND NOT LS_OUTTAB-CHECKBOX EQ '-'.
            LS_OUTTAB-CHECKBOX = 'X'.
          ENDIF.
          MODIFY PT_OUTTAB FROM LS_OUTTAB.
        ENDLOOP.
        CALL METHOD G_GRID->REFRESH_TABLE_DISPLAY.
    ENDIF.

    Hello Kaushik
    Using method go_grid->GET_FILTERED_ENTRIES you get an index list of the filtered entries.
    DATA: lt_filtered     TYPE lvc_t_fidx,
              ld_indx        LIKE LINE OF lt_filtered.
      CALL METHOD go_grid->GET_FILTERED_ENTRIES
         IMPORTING
           ET_FILTERED_ENTRIES = lt_filtered.
      LOOP AT lt_filtered INTO ld_indx.
        READ TABLE gt_outtab INTO ls_outtab INDEX ld_indx.
      ENDLOOP.
    Regards
      Uwe

  • Limitation on DML error logging

    Can someone please advise what is not supported by DML error logging which was introduced in Oracle 10g?
    one Oracle document says "You cannot track errors in the error logging table for LONG, LOB, or object type columns".
    One says only non-scalar columns, like datatime is not support.
    Another one says it doesn't support nested table.
    Anyone has a more complete list of limitation?
    Thanks!
    Edited by: user611482 on Feb 9, 2010 3:32 PM

    PLease read the following,
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/tables.htm#sthref2234
    HTH
    Aman....

Maybe you are looking for

  • How to correct opening balance

    Hi Experts,                    I have to correct my opening balances of items, unfortunately i make some mistake while entering the opening balance of items(e.g i entered the wrong quantity of many items which i have to correct). plz give me some sol

  • SQL Developer 1.0.0 on x86-64 (Suse Linux 10.1)

    Has anyone tried running SQL Developer on a x86-64 machine ? I am use Suse Linux 10.1 and get the following error when I try to start SQL Developer - Exception in thread "main" java.lang.NoClassDefFoundError: java/lang/StringBuilder at oracle.ide.per

  • What is virtual limit of Java?

    I hadn't actually tested the memory limitations of the jvm before and I was taking the word of others (and I didn't have access to Sun boxes always either.) So I decided to test the limits today. Windows: -NT -1.0 gig memory limit (512 physical, 512

  • Fulfillment Error:  E_ADEPT_DOCUMENT_TYPE_UNKNOWN

    I receive this error when trying to open an .acsm file on my Mac:  "Error getting License. License Server Communication Problem: E_ADEPT_DOCUMENT_TYPE_UNKNOWN:"  I am running Mac OS X 10.8.2.  When I open the ACSM file it is in XML format and is look

  • Inserting PDFs onto email message

    Hi all...hoping i can get some insight into this as i run a business that requires e-media, letter heads, logos blah......... I operate on the leopard platform and use office mac 2008 and can't get pdf images to sit on my entourage wether sending or