Cell Comment and Supporting Detail with User ID

Hi,
I have created couple of SQL to generate the report on Cell Comments and Supporting detail from Planning repository tables 11.1.2.1.
This is working as expected Now I have additional requirement to provide the User information who added the cell comments or Supporting detail
Please let me know if anyone has this before - I wanted to know where the user information stored in these tables when someone entered cell comments
--Cell Text
SELECT
HSP_UNIQUE_NAMES.OBJECT_NAME AS Scenario,
HSP_UNIQUE_NAMES4.OBJECT_NAME AS Version,
HSP_UNIQUE_NAMES2.OBJECT_NAME AS Department,
HSP_UNIQUE_NAMES5.OBJECT_NAME AS YEAR,
HSP_UNIQUE_NAMES3.OBJECT_NAME AS Period,
HSP_UNIQUE_NAMES1.OBJECT_NAME AS Account,
HSP_CELL_NOTE.NOTE_ID,
HSP_CELL_NOTE_ITEM.CONTENTS
FROM HSP_CELL_NOTE
INNER JOIN HSP_CELL_NOTE_ITEM
ON HSP_CELL_NOTE.NOTE_ID = HSP_CELL_NOTE_ITEM.NOTE_ID
LEFT JOIN HSP_UNIQUE_NAMES
ON HSP_CELL_NOTE.DIM1 = HSP_UNIQUE_NAMES.OBJECT_ID
LEFT JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES1
ON HSP_CELL_NOTE.DIM2 = HSP_UNIQUE_NAMES1.OBJECT_ID
LEFT JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES2
ON HSP_CELL_NOTE.DIM3 = HSP_UNIQUE_NAMES2.OBJECT_ID
LEFT JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES3
ON HSP_CELL_NOTE.DIM4 = HSP_UNIQUE_NAMES3.OBJECT_ID
LEFT JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES4
ON HSP_CELL_NOTE.DIM5 = HSP_UNIQUE_NAMES4.OBJECT_ID
INNER JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES5
ON HSP_CELL_NOTE.DIM6 = HSP_UNIQUE_NAMES5.OBJECT_ID
--Supporting Detail
SELECT
HSP_UNIQUE_NAMES.OBJECT_NAME AS Scenario,
HSP_UNIQUE_NAMES4.OBJECT_NAME AS Version,
HSP_UNIQUE_NAMES2.OBJECT_NAME AS Department,
HSP_UNIQUE_NAMES5.OBJECT_NAME AS YEAR,
HSP_UNIQUE_NAMES3.OBJECT_NAME AS Period,
HSP_UNIQUE_NAMES1.OBJECT_NAME AS Account,
HSP_COLUMN_DETAIL_ITEM.LABEL,
HSP_COLUMN_DETAIL_ITEM.POSITION,
HSP_COLUMN_DETAIL_ITEM.OPERATOR,
HSP_COLUMN_DETAIL_ITEM.VALUE,
HSP_COLUMN_DETAIL.DETAIL_ID,
HSP_COLUMN_DETAIL_ITEM.GENERATION
FROM HSP_COLUMN_DETAIL
INNER JOIN HSP_COLUMN_DETAIL_ITEM
ON HSP_COLUMN_DETAIL.DETAIL_ID = HSP_COLUMN_DETAIL_ITEM.DETAIL_ID
LEFT JOIN HSP_UNIQUE_NAMES
ON HSP_COLUMN_DETAIL.DIM1 = HSP_UNIQUE_NAMES.OBJECT_ID
LEFT JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES1
ON HSP_COLUMN_DETAIL.DIM2 = HSP_UNIQUE_NAMES1.OBJECT_ID
LEFT JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES2
ON HSP_COLUMN_DETAIL.DIM3 = HSP_UNIQUE_NAMES2.OBJECT_ID
LEFT JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES3
ON HSP_COLUMN_DETAIL.DIM4 = HSP_UNIQUE_NAMES3.OBJECT_ID
LEFT JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES4
ON HSP_COLUMN_DETAIL.DIM5 = HSP_UNIQUE_NAMES4.OBJECT_ID
INNER JOIN HSP_UNIQUE_NAMES HSP_UNIQUE_NAMES5
ON HSP_COLUMN_DETAIL.DIM6 = HSP_UNIQUE_NAMES5.OBJECT_ID
Regards,
KP

I like to think of the cell comments like post-it notes. If you use them sparingly, they're very useful. If you use them all the time (or use comments in every cell) it's unlikely that they will be as effective.
With regards attaching a document, I think the same can be said.
With regards supporting detail, it always strikes me that if you need more detail within a given cell, that the system should be accommodating this through component child members, rather than a mix of some cells containing supporting detail and others not. I understand that it's quite nice functionality to have though, and looks good when demo'ing.
I think the main take away from this is that every time you show the comments etc to people the first question you get is "Can you report all the comments for a given time period?" and the answer is of course unfortunately "Not easily using a supported method".
Just my thoughts...

Similar Messages

  • Hyperion Planning Comments and Supporting Detail

    I understand that Comments and Supporting Detail are kept in SQL. The question is which DB (if not HYP_PLANNING) and what is the table? thanks...

    Cameron,
    You should be able to export a file from LCM in an automated fashion.
    My theoretical process involves four XML files (you could name these anything - these are just my names):
    1) Export_Migration_Definition.xml (This XML file tells the Utility.bat what to export into files 3 & 4 below - Comments and Supporting Detail.)
    2) Import_Migration_Definition.xml (This XML file tells the Utility.bat what to import into your Planning app - again Comments and Supporting Detail.)
    3) Cell Texts.xml (This is the file that LCM creates with cell text. We'll need to change the version name in this file.)
    4) Supporting Detail.xml (This is the file that LCM creates with supporting detail. We'll need to change the version name in this file.)
    So where did I get files 1 & 2? If you go into LCM, and setup a manual migration, at the end, you'll see a button to "Save Migration Definition". Planning will create these two files for you. You'll need to go through the motions as if you were going to execute an export, and an import. Except you won't go all the way. At the end of the process, instead of pressing "Execute Migration", you'll press "Save Migration Definition" instead.
    Once you've got the Export_Migration_Definition.xml and Import_Migration_Definition.xml, you can automate the export and import. At this point you'll be exporting and importing the same comments and supporting detail, just to make sure it works. Then you need to insert a step in your batch process that does a find/replace on the Version name. You'll be doing the find and replace on files 3 & 4 above. I used Google to find several examples of Find/Replace as part of a batch process.
    Please let me know if you see any holes in this. I really don't think you need to interact directly with the repository for either the export or the import. In reality, you don't want to import directly into the SQL repository anyway, because you would typically need to recycle Planning for your changes to take effect.
    Hope this helps,
    - Jake

  • Cell comment, Documentation, annotation and supporting detail.

    Hi All,
    I am actually new to 'Hyperion Planning'. I know what comment, documentation, annotation and supporting detail means. But, can anyone tell me 'WHEN' to use each of these.
    Thanks

    I like to think of the cell comments like post-it notes. If you use them sparingly, they're very useful. If you use them all the time (or use comments in every cell) it's unlikely that they will be as effective.
    With regards attaching a document, I think the same can be said.
    With regards supporting detail, it always strikes me that if you need more detail within a given cell, that the system should be accommodating this through component child members, rather than a mix of some cells containing supporting detail and others not. I understand that it's quite nice functionality to have though, and looks good when demo'ing.
    I think the main take away from this is that every time you show the comments etc to people the first question you get is "Can you report all the comments for a given time period?" and the answer is of course unfortunately "Not easily using a supported method".
    Just my thoughts...

  • Transport roles and analysis authorization with user assigned

    Hi expert,
    I face with this problem transport roles and analysis authorization with user assigned. When I have created a transport request to move the roles and analysis authorization from development system to test system. I couldnu2019t maintain the user assigned, after transport I have to assigned manually all of user or create a program to fill AGR_USER table or there are other way.
    Thanks for your time,
    Luis

    Hi,
    In role administration, you have the following options for transporting roles:
    You can download the roles from one system and upload them into another  
    You can import the role from a remote system using RFC  
    You can transport the roles with the transport function.
    Role upload loads all role data, including authorization data from a file into the SAP system. The user assignments for the role and the generated profiles for the role are exceptions in this case.
    Transporting Roles with the Role Transport Function
           1.      Start the role administration function by choosing Tools ® Administration ® User Maintenance ® Role Administration ® Roles (transaction PFCG).
           2.      Enter the role to be transported and choose Transport Role.
    The Mass Transport of Roles screen appears. You can control the default settings for the options Also transport single roles for composite roles and Also transport generated profiles for roles using Customizing switches (see Role Administration Functions in the section Functions of the Utilities Menu).
    You should not change the authorizations profiles of the role after you have included the role in a transport request. If you need to change the profiles or generate them for the first time, transport the entire role again afterwards.
    For more information go thrpugh the below link
    http://help.sap.com/saphelp_nw70/helpdata/EN/6d/7c8cfd410ea040aadf92e1f78107a4/content.htm
    Regards,
    Marasa.

  • Farward some FAQ's and support issues with solutions

    Hello masters,
    I am new to SAP FI CO.
    I want some interview Questions and support issues.
    Please send to [email protected]
    Highly rewarded.
    Thanks in advnce.
    Reg,
    Kiran

    HI,
    pls check ur mail
    if it is useful pls assign the points
    Thanks & Regards
    phaneendra

  • Improve Auto-Stack and Process Collections with user settings

    I have read through all of the Bridge request discussions, and encountered a few comments on the stacking process but nothing to explain my critique and feature request. My apologies for any redundancy.
    Bridge CS4 includes two features that would (virtually) streamline my entire photo-organization workflow. Brilliant! Except that they offer zero configuration and my default scenario is very different from Adobe's, so these two would-be-wonderful features are pretty much useless to me, and to anybody else who doesn't happen to shoot in the way the presets are configured.
    The first feature is to automatically group images into stacks, based on their similarity, exposure settings, and timestamps. Unfortunately Bridge considers no minimum or maximum amount of photos per stack, and has a fixed timestamp window of 18 seconds. I shoot everything in three-exposure bursts and sometimes multiple shots in less than 18 seconds, so being able to say "process collections in 3-item stacks only" would be absolutely perfect. For other people, being able to limit the timestamp range or other min/max exposure options would work great.
    The second feature, which could save me hours every week but is equally useless, is to automatically process collections in Photoshop. My biggest ire about this function is that it completely ignores stacks that I have manually created AND stacks that were previously created using the auto-stack feature. Every time this function is run, it re-runs the auto-stack process from scratch and then delivers the collections to Photoshop. Not only is this made useless by the previously mentioned inflexibility of the auto-stack process, but even if auto-stack worked perfectly, this would waste time by doing the entire thing again and denying the user the option to review the stacks before committing to the Photoshop processing. The process collections feature would also be much improved if the option were given to process ONLY panoramas or HDR photos, or auto-detect. I have never shot a panorama in my life and I'm sure plenty of people have never shot HDR, but Photoshop isn't capable of knowing our intentions and there's no reason why we shouldn't be able to instruct it.

    Agree. It is an interesting capability that falls short of being really useful. I feel like an ingrate to complain, but ...
    I'd also like to see the capability to specify something than "Auto" for the panorama option. My experience is that most of my panos work best with "Cylindrical + Geometric Correction".
    My experience is that once you get past 5+ images in a pano, it becomes very tedious ... and then 20+ images in rows is painful. Unlike a single image that you can quickly evaluate, with panos I find I need to make the pano to tell if it going to turn out.  I have been generating smaller 1800x1200 or 1200x1800 files to speed up the evaluation process, but it is still very manual and tedious.
    The Auto-Stack generates a AutoCollectionCache.xml, but I haven't found it workable to edit this. I'd like to be able to modify it to "force" my knowledge of what is in a group. It seems to check the time-stamp, and re-do the Auto-Stack, thus ignoring my changes. Sigh.

  • Safari quit unexpectedly now can't reopen a new browser. All i get is2 text boxes. one for a comment and one filled with this

    Process:          
    Safari [811]
    Path:             
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:       
    com.apple.Safari
    Version:          
    8.0.2 (10600.2.5)
    Build Info:       
    WebBrowser-7600002005000000~1
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [1]
    Responsible:      
    Safari [811]
    User ID:          
    501
    Date/Time:        
    2014-12-26 19:47:49.520 -0700
    OS Version:       
    Mac OS X 10.10.1 (14B25)
    Report Version:   
    11
    Anonymous UUID:   
    A5859E65-E573-506D-C689-CCF40A896E73
    Time Awake Since Boot: 1200 seconds
    Crashed Thread:   
    13
    Exception Type:   
    EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
    __TEXT            
    0000000106c56000-0000000106c57000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation
    0x00007fff8a7791d0 -[NSStringROMKeySet_MacOSX indexForCString:length:key:] + 272
    1   com.apple.CoreFoundation
    0x00007fff8a658de6 __CFStringCreateImmutableFunnel3 + 2438
    2   com.apple.CoreFoundation
    0x00007fff8a66c47b CFStringCreateWithBytes + 59
    3   com.apple.Foundation    
    0x00007fff89a3a35c -[NSPlaceholderString initWithBytes:length:encoding:] + 119
    4   com.apple.Foundation    
    0x00007fff89a3982f +[NSString stringWithUTF8String:] + 136
    5   com.apple.Foundation    
    0x00007fff89a6dd23 NSStringFromSelector + 49
    6   com.apple.AppKit        
    0x00007fff826c811d -[NSDynamicSystemColor initWithSelector:] + 22
    7   com.apple.AppKit        
    0x00007fff82724c0c +[NSColor secondarySelectedControlColor] + 80
    8   com.apple.AppKit        
    0x00007fff826d75f1 +[NSColor colorWithCatalogName:colorName:] + 142
    9   com.apple.AppKit        
    0x00007fff826d6fc0 +[NSCatalogColor newWithCoder:zone:] + 275
    10  com.apple.AppKit        
    0x00007fff826d6e71 -[NSColor initWithCoder:] + 437
    11  com.apple.Foundation    
    0x00007fff89a7b90c _decodeObject_old + 331
    12  com.apple.Foundation    
    0x00007fff89a7b4c1 _decodeValueOfObjCType + 1567
    13  com.apple.Foundation    
    0x00007fff89a7ab96 -[NSUnarchiver decodeValuesOfObjCTypes:] + 214
    14  com.apple.AppKit        
    0x00007fff82722c53 -[NSColorList _decodeWithoutNameWithCoder:newStyle:] + 401
    15  com.apple.AppKit        
    0x00007fff82722a55 -[NSColorList _parseArchivedList:] + 162
    16  com.apple.AppKit        
    0x00007fff827227fd -[NSColorList _loadColors] + 419
    17  com.apple.AppKit        
    0x00007fff82722614 -[NSColorList colorWithKey:] + 33
    18  com.apple.AppKit        
    0x00007fff826fde8d -[NSCatalogColor colorUsingColorSpaceName:device:] + 280
    19  com.apple.AppKit        
    0x00007fff826fdd51 -[NSDynamicSystemColor colorUsingColorSpaceName:device:] + 160
    20  com.apple.AppKit        
    0x00007fff82721375 -[NSTextFieldCell _textAttributes] + 380
    21  com.apple.AppKit        
    0x00007fff826cf5e5 -[NSCell _unformattedAttributedStringValue:] + 278
    22  com.apple.AppKit        
    0x00007fff82d4d3e8 -[NSThemeFrame _updateTitleTextField] + 326
    23  com.apple.AppKit        
    0x00007fff826b6c40 -[NSThemeFrame _tileTitlebarAndRedisplay:] + 1214
    24  com.apple.AppKit        
    0x00007fff826ad54d -[NSThemeFrame _updateButtons] + 2735
    25  com.apple.AppKit        
    0x00007fff82d4f5a7 -[NSThemeFrame _moveTitlebarViewsToView:] + 724
    26  com.apple.AppKit        
    0x00007fff82d50fc9 __49-[NSThemeFrame _floatTitlebarAndToolbarFromInit:]_block_invoke + 836
    27  com.apple.AppKit        
    0x00007fff8273a339 +[NSAnimationContext runAnimationGroup:completionHandler:] + 82
    28  com.apple.AppKit        
    0x00007fff82d50c41 -[NSThemeFrame _floatTitlebarAndToolbarFromInit:] + 104
    29  com.apple.AppKit        
    0x00007fff82d4ba72 -[NSThemeFrame setLayer:] + 106
    30  com.apple.AppKit        
    0x00007fff82704bfc -[NSView(NSInternal) _createLayerAndInitialize] + 208
    31  com.apple.AppKit        
    0x00007fff82704a4c -[NSView _doSetWantsLayerYES] + 497
    32  com.apple.AppKit        
    0x00007fff82704533 -[NSView setWantsLayer:] + 465
    33  com.apple.AppKit        
    0x00007fff82745007 -[NSThemeFrame setWantsLayer:] + 56
    34  com.apple.AppKit        
    0x00007fff826ab725 -[NSThemeFrame initWithFrame:styleMask:owner:] + 202
    35  com.apple.AppKit        
    0x00007fff826a9c96 -[NSWindow _commonInitFrame:styleMask:backing:defer:] + 614
    36  com.apple.AppKit        
    0x00007fff826a93fc -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 1477
    37  com.apple.AppKit        
    0x00007fff826a8e2a -[NSWindow initWithContentRect:styleMask:backing:defer:] + 45
    38  com.apple.Safari.framework  
    0x0000000106d6487c -[BrowserWindowControllerMac loadWindow] + 236
    39  com.apple.AppKit        
    0x00007fff828b5684 -[NSWindowController window] + 80
    40  com.apple.AppKit        
    0x00007fff82f0ff9e -[NSDocument(NSPersistentUISupport) restoreDocumentWindowWithIdentifier:state:completionHandler:] + 162
    41  com.apple.Safari.framework  
    0x0000000106d252e9 -[BrowserDocument restoreDocumentWindowWithIdentifier:state:completionHandler:] + 111
    42  com.apple.AppKit        
    0x00007fff82ae23b0 -[NSDocumentControllerPersistentRestoration loadedDocument:forAutoID:] + 165
    43  com.apple.AppKit        
    0x00007fff82aeb466 -[NSDocumentController _restorePersistentDocumentWithState:completionHandler:] + 952
    44  com.apple.AppKit        
    0x00007fff82aebd26 __76+[NSDocumentController restoreWindowWithIdentifier:state:completionHandler:]_block_invoke_2 + 648
    45  com.apple.AppKit        
    0x00007fff82ae431a -[NSDocumentController _waitForAsyncOpeningOrPrintingToFinishThenContinue:] + 244
    46  com.apple.AppKit        
    0x00007fff82aeba93 __76+[NSDocumentController restoreWindowWithIdentifier:state:completionHandler:]_block_invoke + 155
    47  com.apple.AppKit        
    0x00007fff82aeb9eb +[NSDocumentController restoreWindowWithIdentifier:state:completionHandler:] + 146
    48  com.apple.AppKit        
    0x00007fff82693aed -[NSApplication(NSPersistentUIRestorationSupport) restoreWindowWithIdentifier:state:completionHandler:] + 186
    49  com.apple.AppKit        
    0x00007fff82693476 -[NSApplication(NSPersistentUIRestorationSupport) _restoreWindowWithRestoration:completionHandler:] + 536
    50  com.apple.AppKit        
    0x00007fff826925ac -[NSPersistentUIRestorer restoreStateFromRecords:usingDelegate:completionHandler:] + 1990
    51  com.apple.AppKit        
    0x00007fff82691c91 -[NSPersistentUIManager restoreAllPersistentStateRegisteringAsReadyWhenDone:completionHandler:] + 406
    52  com.apple.AppKit        
    0x00007fff82690f37 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 412
    53  com.apple.AppKit        
    0x00007fff82690c69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    54  com.apple.AppKit        
    0x00007fff826906b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    55  com.apple.Foundation    
    0x00007fff89a51458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    56  com.apple.Foundation    
    0x00007fff89a512c9 _NSAppleEventManagerGenericHandler + 102
    57  com.apple.AE            
    0x00007fff91e8e99c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    58  com.apple.AE            
    0x00007fff91e8e719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    59  com.apple.AE            
    0x00007fff91e8e623 aeProcessAppleEvent + 295
    60  com.apple.HIToolbox     
    0x00007fff8fcb737e AEProcessAppleEvent + 56
    61  com.apple.AppKit        
    0x00007fff8268cd76 _DPSNextEvent + 2665
    62  com.apple.AppKit        
    0x00007fff8268be80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    63  com.apple.Safari.framework  
    0x0000000106cd5ad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    64  com.apple.AppKit        
    0x00007fff8267fe23 -[NSApplication run] + 594
    65  com.apple.AppKit        
    0x00007fff8266b2d4 NSApplicationMain + 1832
    66  libdyld.dylib           
    0x00007fff870795c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff9149922e kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff88729a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x00007fff91498946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff852374a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff91498946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff852374a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff91498946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff852374a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff91498946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff852374a1 start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x00007fff91498132 __psynch_cvwait + 10
    1   com.apple.WebCore       
    0x000000010888988b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore       
    0x00000001088869d9 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore
    0x0000000107a41a9f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib 
    0x00007fff852392fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff85239279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff852374b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib  
    0x00007fff91498946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff852374a1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff91498946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff852374a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib  
    0x00007fff91498946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff852374a1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib  
    0x00007fff91498946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff852374a1 start_wqthread + 13
    Thread 11:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x00007fff9149352e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff9149269f mach_msg + 55
    2   com.apple.QuartzCore    
    0x00007fff8b376d63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore    
    0x00007fff8b376c96 thread_fun + 25
    4   libsystem_pthread.dylib 
    0x00007fff852392fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff85239279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff852374b1 thread_start + 13
    Thread 12:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff9149352e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff9149269f mach_msg + 55
    2   com.apple.CoreFoundation
    0x00007fff8a6c6b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation
    0x00007fff8a6c5fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation
    0x00007fff8a6c5838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork     
    0x00007fff84571d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation    
    0x00007fff89a97b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib 
    0x00007fff852392fc _pthread_body + 131
    8   libsystem_pthread.dylib 
    0x00007fff85239279 _pthread_start + 176
    9   libsystem_pthread.dylib 
    0x00007fff852374b1 thread_start + 13
    Thread 13 Crashed:
    0   libsystem_pthread.dylib 
    0x00007fff85237695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib       
    0x00007fff91c6fb78 vfprintf_l + 28
    2   libsystem_c.dylib       
    0x00007fff91c68620 fprintf + 186
    3   ???                     
    0x000000010fd315dc 0 + 4560459228
    Thread 13 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff74b4a1d8  rcx: 0x00007fff74b4a1f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff74b4a1f0  rsi: 0x00007fff85237b14  rbp: 0x000000010fd2de30  rsp: 0x000000010fd2ddb0
       r8: 0x000000010fd35000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff74b496b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff85237695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:
    2
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x106c56000 -   
    0x106c56fff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
    0x106c5f000 -   
    0x107598ff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x107a37000 -   
    0x107f4aff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x1080b2000 -   
    0x108366fff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x108644000 -   
    0x108644fff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x10864c000 -   
    0x108788ffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
    0x108882000 -   
    0x109827ff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x10ec08000 -   
    0x10ec08ff5 +cl_kernels (???) <7EE9B480-B17C-43FE-953F-83A4068D37A1> cl_kernels
    0x10f851000 -   
    0x10f851fef +cl_kernels (???) <72AF17D1-9BFC-440A-99CB-3AFFA664DD97> cl_kernels
    0x10fadb000 -   
    0x10fbc1fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x7fff601ed000 -
    0x7fff60223837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    0x7fff82668000 -
    0x7fff831a9fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff831aa000 -
    0x7fff8329cff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x7fff83b26000 -
    0x7fff83b2efff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff83b2f000 -
    0x7fff83b57ffb  libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x7fff83b58000 -
    0x7fff83b74fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff83b75000 -
    0x7fff83c69ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff83c6a000 -
    0x7fff83c6bfff  libquit.dylib (182) <62510786-F686-3AC4-B315-D05A4B7A896F> /usr/lib/libquit.dylib
    0x7fff83c6c000 -
    0x7fff83cbbff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff83cc2000 -
    0x7fff83cddff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x7fff83e8e000 -
    0x7fff83e95ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
    0x7fff83e96000 -
    0x7fff841c9ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
    0x7fff841ca000 -
    0x7fff842adfff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff84347000 -
    0x7fff84361ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff84362000 -
    0x7fff8436bff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
    0x7fff8436c000 -
    0x7fff8436cff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
    0x7fff8436d000 -
    0x7fff84374fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff84375000 -
    0x7fff843a6fff  libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
    0x7fff843a7000 -
    0x7fff843a8fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
    0x7fff843a9000 -
    0x7fff84410ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8441e000 -
    0x7fff8448afff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8448b000 -
    0x7fff8448ffff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
    0x7fff844d1000 -
    0x7fff846d4ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff846d5000 -
    0x7fff84812fff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff84813000 -
    0x7fff84957ff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff84958000 -
    0x7fff84990fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff849ca000 -
    0x7fff849cbff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff849cc000 -
    0x7fff849d8ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff84a71000 -
    0x7fff84b63fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
    0x7fff84b64000 -
    0x7fff84b83fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff84b84000 -
    0x7fff84d12fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff84d18000 -
    0x7fff85204fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff8522a000 -
    0x7fff85231fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff85236000 -
    0x7fff8523ffff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
    0x7fff85240000 -
    0x7fff8525cff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8525d000 -
    0x7fff85267ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff85268000 -
    0x7fff85285ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
    0x7fff854e4000 -
    0x7fff8558afff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff8558b000 -
    0x7fff855f9ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff85653000 -
    0x7fff856c7fff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x7fff85731000 -
    0x7fff857d9ff7  com.apple.PackageKit (3.0 - 434) <B6C2831E-914D-3E5F-B0E9-A7079489A6FD> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff857f4000 -
    0x7fff857fffdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff8581b000 -
    0x7fff85891fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
    0x7fff861f9000 -
    0x7fff86213ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff86214000 -
    0x7fff86244fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
    0x7fff86245000 -
    0x7fff86270fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
    0x7fff86271000 -
    0x7fff862bdff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
    0x7fff862be000 -
    0x7fff86629fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff8662a000 -
    0x7fff8664fff7  libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff86650000 -
    0x7fff86658fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff86659000 -
    0x7fff8668bff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff8668c000 -
    0x7fff866bafff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff866bb000 -
    0x7fff869a2ffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff869a3000 -
    0x7fff869b1fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <1F879F4E-369A-38F7-A768-8B9009617479> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    0x7fff869b2000 -
    0x7fff869b3ff7  libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
    0x7fff869b4000 -
    0x7fff869b5fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
    0x7fff869b6000 -
    0x7fff869b9ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff869ba000 -
    0x7fff86a0bff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff86a0c000 -
    0x7fff86a0efff  libRadiance.dylib (1231) <746E9989-E89C-3027-A418-5F99CE131C93> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff86a0f000 -
    0x7fff86a29ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff86a76000 -
    0x7fff86b8dfe7  libvDSP.dylib (512) <52777555-F051-3BC2-A2D2-9645907E836D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff86b8e000 -
    0x7fff86be8ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x7fff86c44000 -
    0x7fff86c7ffff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff86c80000 -
    0x7fff86c94ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
    0x7fff86c95000 -
    0x7fff86d0dff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff86d0e000 -
    0x7fff86d33ff7  libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff86d37000 -
    0x7fff86dcbfff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff86dcc000 -
    0x7fff86dcffff  libScreenReader.dylib (390.2) <96ACAA49-21B6-3D10-ADF8-FF6C8F22FD9F> /usr/lib/libScreenReader.dylib
    0x7fff86dd0000 -
    0x7fff86dd0fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <227E2491-1DDB-336F-BF83-773CECEC66F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff86dd1000 -
    0x7fff86dd7ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff86dd8000 -
    0x7fff86ddcfff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff86ddd000 -
    0x7fff86de1fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
    0x7fff86e15000 -
    0x7fff86e69fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x7fff86ebf000 -
    0x7fff86ecdff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff86ece000 -
    0x7fff86ef4ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff86f60000 -
    0x7fff86f60fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff86f61000 -
    0x7fff86f61ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
    0x7fff86f62000 -
    0x7fff86f74ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff87076000 -
    0x7fff87079ff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
    0x7fff8707a000 -
    0x7fff870adff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff870d9000 -
    0x7fff87198fff  com.apple.backup.framework (1.6.1 - 1.6.1) <A7BBE57D-D5E7-39DD-812C-31190159F679> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff87199000 -
    0x7fff8719cfff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8719d000 -
    0x7fff8721afff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8721b000 -
    0x7fff87744ff7  com.apple.QuartzComposer (5.1 - 325) <2007FD9E-A5CF-361E-A7DD-ACAF976860AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff87758000 -
    0x7fff8775aff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x7fff877cc000 -
    0x7fff8782afff  com.apple.StoreFoundation (1.0 - 1) <50F9E283-FCE4-306C-AF5D-D0AEA434C04E> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou ndation
    0x7fff879c9000 -
    0x7fff87c98ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff87c99000 -
    0x7fff87d2afff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff87d2b000 -
    0x7fff87f95ff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff87ffc000 -
    0x7fff88019fff  com.apple.DistributionKit (700 - 920) <079B0A4A-97CD-34D6-B50D-AB5D656B2A38> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
    0x7fff8801a000 -
    0x7fff8801afff  com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8803d000 -
    0x7fff88068ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
    0x7fff8830b000 -
    0x7fff88313ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x7fff88314000 -
    0x7fff88554ff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff88555000 -
    0x7fff88610ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff88611000 -
    0x7fff88615fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff88651000 -
    0x7fff88653fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff88654000 -
    0x7fff8869affb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8869b000 -
    0x7fff886a6ff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff886a7000 -
    0x7fff886b1fff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x7fff88717000 -
    0x7fff88724fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff88725000 -
    0x7fff8874fff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
    0x7fff88a78000 -
    0x7fff88a93ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
    0x7fff88a94000 -
    0x7fff88aa1ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
    0x7fff88aa2000 -
    0x7fff88aa4ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff88aa5000 -
    0x7fff88aa8ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff88af2000 -
    0x7fff88af6fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
    0x7fff88af7000 -
    0x7fff88ecefe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff88ecf000 -
    0x7fff892dcff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff893de000 -
    0x7fff89407ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
    0x7fff89465000 -
    0x7fff8947bff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff8947c000 -
    0x7fff89480fff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x7fff894a6000 -
    0x7fff894b7ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
    0x7fff894b8000 -
    0x7fff8950bffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x7fff89531000 -
    0x7fff89598ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff89599000 -
    0x7fff895b0ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    0x7fff89796000 -
    0x7fff897c5fff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff897d3000 -
    0x7fff897deff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
    0x7fff897df000 -
    0x7fff897e7fe7  libcldcpuengine.dylib (2.4.5) <DF810F9A-1755-3283-82C3-D8192BCD8016> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x7fff898a5000 -
    0x7fff898beff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8992d000 -
    0x7fff89950fff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff89951000 -
    0x7fff8995ffff  libIASAuthReboot.dylib (920) <B165E345-197F-3DC7-A52B-64C34FD95D0A> /usr/lib/libIASAuthReboot.dylib
    0x7fff89960000 -
    0x7fff8998cfff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x7fff8998d000 -
    0x7fff89a2bfff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff89a2c000 -
    0x7fff89a2efff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x7fff89a2f000 -
    0x7fff89d5dff7  com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff89d5e000 -
    0x7fff8a006ff7  com.apple.RawCamera.bundle (6.02 - 768) <3156D0F8-335C-3380-A849-D47ED4163D3A> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8a045000 -
    0x7fff8a08ffff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff8a090000 -
    0x7fff8a112fff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8a113000 -
    0x7fff8a255fff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
    0x7fff8a256000 -
    0x7fff8a2a3fff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff8a2bc000 -
    0x7fff8a34dfff  com.apple.SoftwareUpdate.framework (6 - 744) <4EBCE244-C676-3228-BF4B-645B143C1B97> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
    0x7fff8a34e000 -
    0x7fff8a34efff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8a34f000 -
    0x7fff8a38cff3  com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8a38d000 -
    0x7fff8a393ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff8a394000 -
    0x7fff8a39cff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x7fff8a4dd000 -
    0x7fff8a4ddfff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8a4de000 -
    0x7fff8a4dfffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
    0x7fff8a4e0000 -
    0x7fff8a612ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x7fff8a654000 -
    0x7fff8a9eafff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8a9eb000 -
    0x7fff8abd0267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
    0x7fff8abe7000 -
    0x7fff8abe9fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
    0x7fff8abea000 -
    0x7fff8abeefff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
    0x7fff8abef000 -
    0x7fff8ac03ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8b26c000 -
    0x7fff8b298fff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
    0x7fff8b29e000 -
    0x7fff8b2d5ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff8b34f000 -
    0x7fff8b4ffff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8b500000 -
    0x7fff8b571ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8b572000 -
    0x7fff8b681ffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff8b682000 -
    0x7fff8b79affb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8b79b000 -
    0x7fff8b79dfff  com.apple.EFILogin (2.0 - 2) <F0269EE2-3686-3A8A-8B83-F86974E35E90> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff8b79e000 -
    0x7fff8b7b4ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/l

    You have probably installed the Genio malware, it' causing all kinds of trouble with Safari. Download and run AdwareMedic http://www.adwaremedic.com/index.php it will find the adware files and delete them for you. If you want to do ot manaully you can follow Apple's instructions
    Remove unwanted adware that displays pop-up ads and graphics on your Mac - Apple Support
    I always recommend AdwareMedic as it's easier and faster.

  • Problems with installation of system and support files with Labview 5.1 on Windows NT.

    I make installations disks with Labview 5.1 on Windows NT and I need to add some system files and other support files. When I'm in App Builder I choose them in "Add support files" and I mark their "custom directory destination" (c:\winnt\system32, c:\est\base) but, when I test the installation I see that files don't save in this directory, they save in 'C:\c\winnt\system32' and 'C:\c\est\base'. How can I solve this problem?

    Jorge,
    I know there were some problems with the LabVIEW 5.1 Application Builder that were fixed in the LabVIEW 5.1.1 Updater. I recommend you download that update to see if this fixes the problem. Also, double-check to make sure you have typed the file paths correctly. If you continue to have problems after installing the 5.1.1 updater, please let me know, and please attach your .bld file so I can examine it for any problems.
    Thanks for your patience on this issue, and have a pleasant day.
    Sincerely,
    Darren Nattinger
    Applications Engineer
    National Instruments
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • JTable cell value doesn't change with user input

    I'm making a program that uses a custom table model (extends AbstractTableModel). The problem is when I type a value in one of the table cells, then press enter (or click outside the cell), the value goes back to what it was originally. So for example, a cell has "oldvalue", I type in "newvalue", press enter, and now the cell still reads "oldvalue". I figured the renderer would automatically update the cell by calling MyTableModel.setValueAt (...), but maybe I need a listener to do this? let me know. thanks

    alright, well basically I'm making a database manager
    and thought it would be easier to extend
    AbstractTableModel and then do all the queries inside
    the methods instead of listening for events. Second
    thing, I put a debug statement and setValueAt never
    gets called when you type in a new cell value. How
    does it update the cell then is my question?It's your TableModel bug but a much better advice would be that you should use
    DefaultTableModel instead of extending AbstractTableModel. The DefaultTableModel
    is usually more than enough for an ordinary JTable application.
    The simplest and standard way of handling DB data from JTable is updating
    vectors for DefaultTableModel data with your new DB data set. You don't need
    to worry about low-level event firing, cell editor control etc. if you use
    DefaultTableModel. See API documentation of DefaultTableModel closely.

  • How to move supporting details from one intersection to other?

    Hi,
    I want to move data from one intersection to other along with supporting details and comments. Now i want to delete everything (data, supporting detail and comments) from previous intersection. I know how to clear data but do not know how to delete comments and supporting details form that intersection.
    Can you help me with this?
    Thanks!

    I have found it.
    Thank
    Its Adminstration -> Clear Cell details..

  • Supporting detail disappeared and the could not edit

    We have a planning app (v 11.1.2.2) and one user told me he entered some data into supporting detail for one cell. After he save it and the cell data became 0. And he could not edit that cell anymore. Tried to editing supporting edit for that cell brought back a blank page. I tried that cell and although the data is 0 and I could not update supporting detail either. It just brings a blank page for supporting detail. User can still enter and edit supporting details for other cells. I can think of a couple things to do:
    1. Check the relational db and delete the supporting detail for that cell.
    2. Restart Planning services to see if that fixes it.
    But before I do that, I want to know if anyone of you encounter the same thing or not. And is there any other way to fix that.
    Thanks

    Thanks! That icon color is barely visible. I never noticed it was there! I need to change it to more contrast color.

  • Annotations Supporting details

    Hi All,
    Can I know the difference between Annotations and supporting details??? Is annotations applicable on;y to accounts?? And is there any way that we can export annotations and supporting details to excel ? Please advice
    Thanks in Advance

    Hi,
    Annotation , in very simple terms as Johngoodwin said are comments to accounts and they can be as simple plain text or URL.
    Comign to the supporting details (these are the cells in the dataform which are green in colour, if you see any in your form). They have a built in calculator and altogether a different functionality
    You can find all information about supporting details , in chapter 6 "working with supporting details" in hp_user document. Explanation with example has been provided.
    Hope this info helps
    Sandeep Reddy Enti
    *HCC*
    http://analytiks.blogspot.com

  • HOW TO PRINT  THE EXCEL CELL COMMENT IN JAVA SWING FRAME ?

    How to print the excel cell comment in java swing frame
    user can print the data of cell with comment in bracket in java swing frame.
    please make one java code to read an excel spreed sheet and print the output in Java swing frame as follows
    EMP NO - 1, 2, 3
    EMP NAME - aname (amitesh:very good), bname (amitesh: average), cname (amitesh: very bad)
    EMP AGE - 11, 22, 33
    EMP DESG - ad, bd, cd
    Note: the bracket portion is the excel comments put in that cell

    hello everyone i'm new to this forum..how are you all...
    Jack Brosnan
    [mobile phone|http://www.mobilephonesforsale.net.au/apple-iphone-f-2.html]

  • LiveCycle Reader Extensions ES, version 8.2, and supported client Flash versions

    Hello,
    We are running Adobe LiveCycle Reader Extensions ES, Version 8.2.
    We have a couple users that connect through IE (version 7) to create fillable forms.
    Our companies standard version of Adobe Flash is 10.x
    When we upgraded to 10.x, the users could no longer open (convert) a pdf to be able to make it fillable.  The fix was to down grade the Flash version to version 9.
    Is there a better fix for this, as I have another user that requires access to the LiveCycle server but is running Flash 10, yet I would prefer not to downgrade them to Flash 9.
    Hopefully the above explanation makes sense, as I am technical support versus being a LiveCycle user.
    Thanks!
    Chris

    This particular service pack (LiveCycle ES Update 1 Service Pack 3 (SP3)) is has not been made public. As part  of their maintenance and support agreement with Adobe only LiveCycle customers are eligible to recieve access to this service pack. Please contact the Adobe Enterprise Support team directly and they will be able to help provide you with access to the download, provided you are eligible to download it. 
    Feel free to contact me directly ([email protected]) should you have any additional questions with concerns to this service pack.
    Kindest regards,
    Shelley

  • Displaying Supporting Details in FR

    hi expert,
    is there any way to display Supporting details in fr horizontally ?? i want to display supporting detail just like a pivot...do you have some clue??
    regrd,
    tyo

    Hi,
    To show supporting detail for the Planning Details database connection:
    1 Open a report and select a row in the grid that contains a member with supporting detail.
    2 In the Row Properties sheet, select Display Supporting Details.
    3 Specify whether to allow page breaks with the rows of supporting detail:
    a) To allow a page break within the rows of supporting detail, select the Allow Page Break Within check box.
    b) To keep the parent member and the supporting detail on the same page, deselect the Allow Page Break Within check box. If the supporting detail does not the currentpage, the parent member and supporting detail is moved to the next page.
    Note: If the supporting detail spans multiple pages, this option defaults to Allow Page Break Within and page breaks are used.
    4 Optional: To position the supporting detail before or after the parent member, select the Grid
    Properties sheet, select the Position category and select an option in the Position of Supporting Detail
    box:
    a) To display supporting detail before the parent member, click Before Members.
    b) To display supporting detail after the parent member, click After Members. This is the default.
    Regards,
    Vinit

Maybe you are looking for

  • "No bootable device" -- insert book disk and press any key

    Hello, I am having a little problem with my new iMac. I search in google and I don't seem to get an answer...or maybe I just don't know which one I should do... This is what happen. When I turn on my iMac it goes to a white screen, then to a black sc

  • Audio works in audio chat, but not in video chats.

    So, when I start an audio chat with a friend, we can hear each other just fine. I then switch over to a video chat, and she can hear me, but I can't hear her. I already had to do all sorts of port forwarding in the firewall settings and router in ord

  • 10.3 and Adobe

    Since upgrading to 10.3.9 from 10.2, double-clicking on a Photoshop or Indesign file will cause the application to launch but won't open the file. I have to go to file/open/filename. Everything else seems normal. I have repaired permissions, zapped P

  • How to import payroll result from 3rd party system to SAP

    Hi Experts, May i know how to import payroll result from legacy system / 3rd party payroll system into SAP. i need to import the payroll result from Jan - April (from 3rd party payroll system) and system go live on May. I using payroll malaysia. Than

  • Podcasts filing to music on iPod mini

    When I manually drag a downloaded podcast from the iTunes library to my iPod, the podcasts show up in the music selections rather than the Podcasts listing. Am I doing something wrong in dragging the podcasts.