Session should logoff on click of save button in webgui window

Hi All
I am directly changing section 80 details using WEBGUI ervices( PA30 tcode with infotype 585 in change mode) WITH BELOW URL
'http://XXXXXXXXXXXXXXX/sap/bc/gui/sap/its/webgui?~transaction=*pa30%20RP50G-PERNR=' lv_aempid
';RP50G-choic=0006;RP50G-SUBTY=4;RP50G-begda=01.01.1800;RP50G-endda=31.12.9999;DYNP_OKCODE=CHG'
So user able to change their details using above URL, but when user clicks on save button, it is showing PA30 main screen..I want o know how to avoid this screen...
My requirement is when user clicks on Save button, it should save and logoff from session.*
Regards
Srinivas

Try to use CALL FUNCTION 'ITS_END_SESSION' in the user-exit.
Of couse you must check that it is webgui session (not sapgui).
Hope this helps

Similar Messages

  • Report is Blank after Click on Save button

    Hi All,
    I am having a Real Time Infocube, which is been used by Monthly and Yearly report separately using different Aggregation Levels.
    During Monthly report testing, I made changes in Yearly Report (common for monthly as well) and clicked on SAVE button.
    As a result, a new request generated into the Cube, whereas my old request (yellow one) was still there and was containing only 700 records.
    Step1:
    Now,  after that when I activated aggregation level. The output of the report was blank.
    Same thing happened with monthly report also.
    Step2:
    So, I deleted that new request from Cube after changing its behaviour from Planned mode --> Load mode.
    Now, when I tried to get it back. It was asking me to green the existing request (old request).
    Step3:
    when the cube was containing only old yellow request (before changing the behaviour) monthly report was showing me correct data. But, Yearly report was blank.
    So, I manually green the request and changed the behaviour to Planned mode.
    Whereas, Now (after changing behavior to Planned mode) both reports are blank.
    Please help!!
    Best Regards,
    Jatin

    Hi,
    first you the correct settings in transaction RSDIPROP for your InfoCube:
    On tab 'Roll Up' you should set the flag Set Quality Status to OK Automatically.
    Second delete the cache for the planbuffer query; the name of the plan buffer queries are as follows
    - if your aggregation level is defined on InfoCube CUBE the name is CUBE/!!1CUBE
    - if your aggregation level is defined on MultiProvider IPROV the name is IPROV/!!1IPROV
    - if you are using a query on a MultiProvider containing aggregatiion levels delete also the cache of the query.
    Now check the values of your query again.
    Note 1136163 contains the recommended cache settings in RSRT.
    Regards,
    Gregor

  • Adobe reader opens "save as" box when clicking on save button rather than saving in the same file

    Hi everybody,
    I have a fillable PDF form designed in Livecycle designer and it is reader extended. When I fill that form on MAC it let me fill and save the form as many times as I like. Everytime I make any change I just click the save button it saves changes in the same form. BUT is is behaving differently on Windows. After filling the form out when I click on save button it opens up "Save as " dialogue box to save a new copy with those changes. I have Adobe reader XI and Adobe Acrobat XI installed on windows. I know I can do that with Acrobat but I want that in reader for users who dont have acrobat.
    Please help me.....
    Thanks

    What are you filling out the form with on the MAC?

  • When a third party program creates a new Google calendar event using a http link I cannot click the save button in Firefox 9.01 or 10b2.

    I use a TV listings program called DigiGuide. This has a script that opens a new Google Calendar event page in my browser for a specified TV program with all fields already completed. I then just have to click the SAVE button on the Google Calendar site to save the event - but since updating to 9.01 from 8.xx this button and others (Discard, Search) has no effect, although the cursor changes when over the button as if it recognised a link. Opening the same page in Chrome works fine. I have also noticed that Calendar's other buttons (e.g. next/previous period) can stop working on the main Calendar page, which I have as a pinned tab - in this event navigating away from Calendar and back again regains that functionality. The issue persists in Firefox 10b2.

    Further investigation reveals this only happens when the event is created from within WP native calendar app and disappears when I make an edit to the event in any other calendar client including Google web. So a more appropriate description of the problem would be:
    "Native calendar app keeps subtracting 1h off a Google calendar event on EVERY edit"
    Create an event at 2013/07/17 15:00 in WP native calendar app. Result: Event shows as 2013/07/17 15:00 in the calendar app for a few seconds, then updates itself to 2013/07/17 14:00.
    Edit the event title and save in WP native calendar app. Event time moves by -1h again to 2013/07/17 13:00.
    Edit the event title in Google web calendar.
    Subsequent edits in WP native calendar do not mess up the time any longer. If I fix the time to what I originally intended (2013/07/17 15:00) in WP native calendar app, it stays there and shows correctly in all previously mentioned calendar viewers.
    I just learned that Lumia 925 was released with GDR2 update pre-installed. This update is only now being made generally available. If the issue is secific to the CalDAV implementation in GDR2 rather than specific to my phone only, this would make a lot of angry people. I hope I'm wrong on this though as it's an extremely frustrating problem.

  • CS02, On click of SAVE button, need to capture some event related with this

    Hi,
    My requirement is like,
    I change the material BOM using CS02 tcode.
    When, I complete the changes, and click on SAVE button, I dont find any event triggering in the system.
    Can any help in capturing some event related to this?
    The reason why I need this is ..during  the workflow runtime, the user is presented with the workitem to change the Material BOM with CS02 tcode. And, if sometimes, by mistake, the user is unable to complete the changes of the workitem, and comes back of CS02 without change completion, then the workitem is disapperaing from the inbox, with out completing the intended task of the workitem. So I want to make the workitem appear repeatedly in the user's inbox, till the desired action is done.
    Thanks

    Sai,
    You need to use a Loop..While statement by validating the decision step.
    Use a varaiable to store 'Y' or 'N'.
    intially, have the value as 'N' and if the required outcome is taken. Eg: Accept,Reject.. then change the value to 'Y', which will go to the next step of workflow.
    if 'N', it will again create a new workitem with the same content to the same agent.
    Hope this helps.
    bye,
    Sudhir.

  • Disable Checkbox, once i select checkbox & click on save button

    Hi All,
    Once i select checkbox & click on save button
    then Checkbox will Disable, in moodule pool programming.
    Thanks

    Hi,
    Add the below code in PBO.
    loop at screen.
       if screen-name = 'CH1'
         if g_save = 'X'.
           screen-input = 0.
         else.
           screen-input = 1.
         endif.
         modify screen.
       endif.
    endloop.
    Add the below code In PAI
    case okcode.
      when 'SAVE'.
        g_save = 'X'.
    *code for saving data
    endcase.
    Hope this helps.
    Thanks,
    Balaji

  • Safari Upload file dialog box lets me click links and buttons on parent window.

    Safari Upload file dialog box lets me click links and buttons on parent window. I can even click Choose file button and open multiple Upload File dialog boxes. How can I show Upload file dialog box as modal?
    Operating system: Windows 7 and Windows XP.

    Safari Upload file dialog box lets me click links and buttons on parent window. I can even click Choose file button and open multiple Upload File dialog boxes. How can I show Upload file dialog box as modal?
    Operating system: Windows 7 and Windows XP.

  • After the latest update to FF13, I double click the bookmark button and the window won't open so I can edit.

    When I double click the bookmark button (star) a window always drops down so I can edit the bookmark or place it into the folder I want. Now after the latest update to FF13 (june 2012) I can click once and the page is bookmarked to the "unsorted" folder, but when I double click nothing happens. 1) I restarted FF, didn't help 2) I rebooted computer, didn't help.

    Thank you very much for pointing me in the right direction. I had 5 extensions installed. I disabled all of them then restarted FF. My bookmark window started working again. Then I enabled each extension one at a time to find the culprit. It was "Compact Menu 2 version 4.3.1". It's a handy extension for me, but I can live without it till they have a version that will work for me. Thanks again.

  • HT201066 Quick time player quit "unexpectedly" and won't reopen when I click the reopen button on the window that pops up when I try to play clips.I'm on an iMac with Lion.

    Quick time player quit "unexpectedly" and won't reopen when I click the reopen button on the window that pops up when I try to play clips.I'm on an iMac with Lion.

    Process:         QuickTime Player [4931]
    Path:            /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    Identifier:      com.apple.QuickTimePlayerX
    Version:         10.2 (603.6)
    Build Info:      QuickTimePlayerX-603006000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [159]
    User ID:         502
    Date/Time:       2012-12-03 08:21:05.935 -0500
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          216924 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  130926 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      87ED4856-73EF-7C4D-A91D-F0942AC91C1E
    Crashed Thread:  6  Dispatch queue: com.apple.quicktimeplayerx.recents-queue
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    [4931] stack overflow
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x00007fff621a3660 dyld::findMappedRange(unsigned long) + 57
    1   dyld                                    0x00007fff621ad1df client_dyld_find_unwind_sections(void*, dyld_unwind_sections*) + 14
    2   libdyld.dylib                           0x00007fff8850af56 _dyld_find_unwind_sections + 59
    3   libunwind.dylib                         0x00007fff878cedaa libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::setInfoBasedOnIPRegister(bool) + 70
    4   libunwind.dylib                         0x00007fff878ced5b unw_init_local + 143
    5   libobjc.A.dylib                         0x00007fff8de387a0 objc_addExceptionHandler + 64
    6   com.apple.CoreFoundation                0x00007fff8ff0c20c _CFDoExceptionOperation + 380
    7   com.apple.AppKit                        0x00007fff8c23632c _NSAppKitLock + 77
    8   com.apple.AppKit                        0x00007fff8c32650b -[NSObject(_NSBindingAdaptorAccess) _releaseBindingAdaptor] + 67
    9   com.apple.AppKit                        0x00007fff8c402da7 -[NSController dealloc] + 65
    10  com.apple.AppKit                        0x00007fff8c402d3d -[NSUserDefaultsController awakeAfterUsingCoder:] + 35
    11  com.apple.Foundation                    0x00007fff89b7ea1c _decodeObjectBinary + 2760
    12  com.apple.Foundation                    0x00007fff89b7ddb4 _decodeObject + 226
    13  com.apple.AppKit                        0x00007fff8c1d59f4 -[NSNibConnector initWithCoder:] + 401
    14  com.apple.AppKit                        0x00007fff8c367f9b -[NSNibBindingConnector initWithCoder:] + 52
    15  com.apple.Foundation                    0x00007fff89b7ea09 _decodeObjectBinary + 2741
    16  com.apple.Foundation                    0x00007fff89b7f7e6 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1189
    17  com.apple.Foundation                    0x00007fff89b7fd58 -[NSArray(NSArray) initWithCoder:] + 538
    18  com.apple.Foundation                    0x00007fff89b7ea09 _decodeObjectBinary + 2741
    19  com.apple.Foundation                    0x00007fff89b7ddb4 _decodeObject + 226
    20  com.apple.AppKit                        0x00007fff8c1d4aca -[NSIBObjectData initWithCoder:] + 2025
    21  com.apple.Foundation                    0x00007fff89b7ea09 _decodeObjectBinary + 2741
    22  com.apple.Foundation                    0x00007fff89b7ddb4 _decodeObject + 226
    23  com.apple.AppKit                        0x00007fff8c40ba0b -[NSNib _instantiateNibWithExternalNameTable:] + 519
    24  com.apple.AppKit                        0x00007fff8c40b7d3 -[NSNib instantiateNibWithOwner:topLevelObjects:] + 254
    25  com.apple.AppKit                        0x00007fff8c40ad87 -[NSViewController loadView] + 184
    26  com.apple.QuickTimePlayerX              0x00000001025bb688 0x1025a2000 + 104072
    27  com.apple.QuickTimePlayerX              0x00000001025bad10 0x1025a2000 + 101648
    28  com.apple.AppKit                        0x00007fff8c3b2be9 -[NSViewController view] + 41
    29  com.apple.QuickTimePlayerX              0x00000001025b60be 0x1025a2000 + 82110
    30  com.apple.Foundation                    0x00007fff89bbc5f8 _NSSetObjectValueAndNotify + 257
    31  com.apple.QuickTimePlayerX              0x00000001025b8808 0x1025a2000 + 92168
    32  com.apple.Foundation                    0x00007fff89bbb860 NSKeyValueNotifyObserver + 390
    33  com.apple.Foundation                    0x00007fff89bb30f3 -[NSObject(NSKeyValueObserverRegistration) _addObserver:forProperty:options:context:] + 584
    34  com.apple.Foundation                    0x00007fff89bb1efd -[NSObject(NSKeyValueObserverRegistration) addObserver:forKeyPath:options:context:] + 111
    35  com.apple.QuickTimePlayerX              0x00000001025b9001 0x1025a2000 + 94209
    36  com.apple.QuickTimePlayerX              0x00000001025b2190 0x1025a2000 + 65936
    37  com.apple.AppKit                        0x00007fff8c5781ba -[NSDocumentController _finishOpeningDocument:andShowWindows:] + 113
    38  com.apple.Foundation                    0x00007fff89be8a7c -[NSBlockOperation main] + 124
    39  com.apple.Foundation                    0x00007fff89bbe986 -[__NSOperationInternal start] + 684
    40  com.apple.Foundation                    0x00007fff89bc61a1 __block_global_6 + 129
    41  libdispatch.dylib                       0x00007fff8bce5f01 _dispatch_call_block_and_release + 15
    42  libdispatch.dylib                       0x00007fff8bce20b6 _dispatch_client_callout + 8
    43  libdispatch.dylib                       0x00007fff8bce70c8 _dispatch_main_queue_callback_4CF + 275
    44  com.apple.CoreFoundation                0x00007fff8febd0fe __CFRunLoopRun + 1614
    45  com.apple.CoreFoundation                0x00007fff8febc6b2 CFRunLoopRunSpecific + 290
    46  com.apple.HIToolbox                     0x00007fff857dc0a4 RunCurrentEventLoopInMode + 209
    47  com.apple.HIToolbox                     0x00007fff857dbe42 ReceiveNextEventCommon + 356
    48  com.apple.HIToolbox                     0x00007fff857dbcd3 BlockUntilNextEventMatchingListInMode + 62
    49  com.apple.AppKit                        0x00007fff8c234613 _DPSNextEvent + 685
    50  com.apple.AppKit                        0x00007fff8c233ed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    51  com.apple.AppKit                        0x00007fff8c22b283 -[NSApplication run] + 517
    52  com.apple.AppKit                        0x00007fff8c1cfcb6 NSApplicationMain + 869
    53  libdyld.dylib                           0x00007fff8850b7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8827dd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8bce4dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8bce49ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.coremedia.scheduledfileio
    0   libsystem_kernel.dylib                  0x00007fff8827d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a09ef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8c012ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.CoreMedia                     0x00007fff8c00edfe FigScheduledFileIOThread + 256
    4   com.apple.CoreMedia                     0x00007fff8c0134c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8827d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a09ceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a09ccb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8827d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a09ceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a09ccb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8827d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a09ceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a09ccb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 6 Crashed:: Dispatch queue: com.apple.quicktimeplayerx.recents-queue
    0   libsystem_kernel.dylib                  0x00007fff8827d212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8a09baf4 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8a0dfe9e __abort + 159
    3   libsystem_c.dylib                       0x00007fff8a0e0d17 __stack_chk_fail + 195
    4   com.apple.CoreServicesInternal          0x00007fff87a97a1e _CFURLCreateByResolvingBookmarkData + 3944
    5   com.apple.CoreFoundation                0x00007fff8ff4f3fe +[NSURL URLByResolvingBookmarkData:options:relativeToURL:bookmarkDataIsStale:error:] + 78
    6   com.apple.QuickTimePlayerX              0x000000010268880a 0x1025a2000 + 944138
    7   com.apple.QuickTimePlayerX              0x0000000102688607 0x1025a2000 + 943623
    8   com.apple.QuickTimePlayerX              0x0000000102687415 0x1025a2000 + 939029
    9   libdispatch.dylib                       0x00007fff8bce5f01 _dispatch_call_block_and_release + 15
    10  libdispatch.dylib                       0x00007fff8bce20b6 _dispatch_client_callout + 8
    11  libdispatch.dylib                       0x00007fff8bce347f _dispatch_queue_drain + 235
    12  libdispatch.dylib                       0x00007fff8bce32f1 _dispatch_queue_invoke + 52
    13  libdispatch.dylib                       0x00007fff8bce31c3 _dispatch_worker_thread2 + 249
    14  libsystem_c.dylib                       0x00007fff8a09ccab _pthread_wqthread + 404
    15  libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8827d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a09ceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a09ccb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 8:: com.apple.coremedia.player.async
    0   libsystem_kernel.dylib                  0x00007fff8827d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a09ef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8c012ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8d5f922f 0x7fff8d59f000 + 369199
    4   com.apple.CoreMedia                     0x00007fff8c0134c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 9:: AQClient
    0   libsystem_kernel.dylib                  0x00007fff8827b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8827ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8feb7803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8febcee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8febc6b2 CFRunLoopRunSpecific + 290
    5   com.apple.audio.toolbox.AudioToolbox          0x00007fff8a15bc9c GenericRunLoopThread::Entry(void*) + 204
    6   com.apple.audio.toolbox.AudioToolbox          0x00007fff8a15bb53 CAPThread::Entry(CAPThread*) + 175
    7   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 10:: com.apple.coremedia.audioqueue.source
    0   libsystem_kernel.dylib                  0x00007fff8827d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a09ef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8c012ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8d5d115a 0x7fff8d59f000 + 205146
    4   com.apple.CoreMedia                     0x00007fff8c0134c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 11:: com.apple.coremedia.audiomentor
    0   libsystem_kernel.dylib                  0x00007fff8827d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a09ef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8c012ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8d61a3ba 0x7fff8d59f000 + 504762
    4   com.apple.CoreMedia                     0x00007fff8c0134c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000104a1d088  rdx: 0x0000000000000000
      rdi: 0x0000000000014e07  rsi: 0x0000000000000006  rbp: 0x0000000104a1d0b0  rsp: 0x0000000104a1d088
       r8: 0x00007fff7603c278   r9: 0x0000000000000000  r10: 0x0000000030000000  r11: 0x0000000000000206
      r12: 0x00007fea19037000  r13: 0x00007fea18c9f630  r14: 0x0000000104a1e000  r15: 0x0000000000000000
      rip: 0x00007fff8827d212  rfl: 0x0000000000000206  cr2: 0x00007fff76035fe8
    Logical CPU: 0
    Binary Images:
           0x1025a2000 -        0x1027fafef  com.apple.QuickTimePlayerX (10.2 - 603.6) <C05152C9-652A-3CB1-9091-F0A48CB5B725> /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
           0x106479000 -        0x10647efff  com.apple.audio.AppleHDAHALPlugIn (2.3.1 - 2.3.1f2) <E807EE74-4241-36B2-87A6-92AFAE41D68F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x106483000 -        0x1065d7fff  com.apple.audio.units.Components (1.8 - 1.8) <7846E0A3-4AFB-3E29-96D3-BF87348024ED> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x106905000 -        0x106999ff7  com.apple.proapps.AppleProResCodec (1.0.2 - 5718) <573A32C9-17C7-33C8-B691-A68BB23E9A05> /System/Library/Video/Plug-Ins/AppleProResCodec.bundle/Contents/MacOS/AppleProR esCodec
           0x106f9c000 -        0x107153fff  GLEngine (8.6.1) <94C4C4C0-E96C-30B2-8CD7-DE8D82CA74F1> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10718a000 -        0x1072ccfff  libGLProgrammability.dylib (8.6.1) <FC866EA6-6263-3F51-BF7C-EA1A9A4162B4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x107300000 -        0x1075a1fef  com.apple.AMDRadeonX3000GLDriver (1.0.29 - 1.0.0) <AFF4FFE6-F389-3E65-A224-F7382FB94620> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
           0x1075f0000 -        0x1075f3fff  com.apple.IOAccelerator (19.0.26 - 19.0.26) <0CA40D23-427D-3AF9-8C5C-E2592CEF3DFD> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
           0x1075fa000 -        0x107607ff7  libGPUSupportMercury.dylib (8.6.1) <5762E7E4-C76E-3442-8C30-3BA1DDCD8BAE> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
           0x107a0f000 -        0x107a3cfff  GLRendererFloat (8.6.1) <B598274C-3C23-3EBB-A7C5-13C131FAC651> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x107a45000 -        0x107a4efe7  libcldcpuengine.dylib (2.1.19) <50800DA2-7233-32E5-9553-A02171B68399> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x107a54000 -        0x107a57ff7  libCoreFSCache.dylib (24.4) <C375CAA0-F91F-3D9F-AF90-DB951BD86983> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
        0x7fff621a2000 -     0x7fff621d693f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff85770000 -     0x7fff8577bfff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8577c000 -     0x7fff85aacff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff85aad000 -     0x7fff85afcff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff85b65000 -     0x7fff85b6ffff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff85b99000 -     0x7fff85ba4fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff85cbf000 -     0x7fff85dd8ff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff85de7000 -     0x7fff85dfcfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff85e25000 -     0x7fff867b5c67  com.apple.CoreGraphics (1.600.0 - 324.6) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff867b6000 -     0x7fff86850fff  com.apple.CoreSymbolication (3.0 - 87) <3D9CBE8D-F047-3DFA-B067-F9589E2AF8BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff86851000 -     0x7fff86855fff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff86856000 -     0x7fff869dcfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff869dd000 -     0x7fff86a25fff  com.apple.framework.CoreWiFi (1.0 - 100.10) <0E863B4A-1094-3F8D-BEDE-D99537E9C588> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff86aae000 -     0x7fff86abcfff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
        0x7fff86abd000 -     0x7fff86ac1ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff86b2b000 -     0x7fff86b7cff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff86bb6000 -     0x7fff86c38fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff86c39000 -     0x7fff86c3bfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8770b000 -     0x7fff8770dff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8770e000 -     0x7fff8775dff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff877b4000 -     0x7fff877e5ff7  com.apple.sociald.Social (167.6 - 167.6) <D609BE09-3D78-358F-8316-FFE3A7D37687> /System/Library/Frameworks/Social.framework/Versions/A/Social
        0x7fff877e6000 -     0x7fff877f3fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff87847000 -     0x7fff8784bfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8784c000 -     0x7fff87854fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff87856000 -     0x7fff87870fff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff87871000 -     0x7fff878cdff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff878ce000 -     0x7fff878d4ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff87930000 -     0x7fff879f5ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff879f6000 -     0x7fff87a02ff7  com.apple.LegacyMediaBridge (1.1 - 39.1) <90494D75-89AB-3F3B-A47D-CBA0D77EF0AA> /System/Library/PrivateFrameworks/LegacyMediaBridge.framework/Versions/A/Legacy MediaBridge
        0x7fff87a53000 -     0x7fff87a89fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff87a8a000 -     0x7fff87ab8fff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff87ab9000 -     0x7fff87eb0fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff87f21000 -     0x7fff87f33ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff87fb7000 -     0x7fff87fe2fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff87fe3000 -     0x7fff8802fff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff88082000 -     0x7fff88095ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff880a0000 -     0x7fff880a4fff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff880a5000 -     0x7fff880a5ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff880a6000 -     0x7fff880b4fff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff880b5000 -     0x7fff880d4ff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff880d5000 -     0x7fff880d7ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff88104000 -     0x7fff88151fff  com.apple.CoreMediaIO (301.0 - 4147) <3B748499-C173-357B-976C-9FF257C5171E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff88152000 -     0x7fff881f8ff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff881f9000 -     0x7fff88200fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff88201000 -     0x7fff8826afff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff8826b000 -     0x7fff88286ff7  libsystem_kernel.dylib (2050.18.24) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
        0x7fff88509000 -     0x7fff8850cff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8850d000 -     0x7fff88618fff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff88619000 -     0x7fff88a55fff  com.apple.VideoToolbox (1.0 - 926.62) <7D749558-08B6-3F86-A20E-05ECDACE6F17> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff88a56000 -     0x7fff88af0fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff88db8000 -     0x7fff88de9ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff88df0000 -     0x7fff88e8dff7  com.apple.PDFKit (2.7.2 - 2.7.2) <DE5BE2EF-2570-3792-B1C3-AAD45765F533> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff88f1e000 -     0x7fff88f26ff7  libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff88f27000 -     0x7fff891c1ff7  com.apple.JavaScriptCore (8536 - 8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8924d000 -     0x7fff8925bff7  libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
        0x7fff8925c000 -     0x7fff89265fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff892ab000 -     0x7fff892adfff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff892ae000 -     0x7fff892aefff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff892af000 -     0x7fff892dbfff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff892dc000 -     0x7fff892e1fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff893a8000 -     0x7fff893e4fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8962d000 -     0x7fff8971efff  com.apple.DiskImagesFramework (10.8 - 344) <B1B477F6-316D-32BD-8FCB-107F88649F69> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8971f000 -     0x7fff8976afff  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <8370178E-438C-375C-AA41-A8DEE60B8636> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8976f000 -     0x7fff897a6ff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
        0x7fff897a7000 -     0x7fff89845ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff89847000 -     0x7fff8988aff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8988b000 -     0x7fff89b2ffff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff89b30000 -     0x7fff89e8cfff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff89eb6000 -     0x7fff89fb8fff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff89fc8000 -     0x7fff8a085ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8a086000 -     0x7fff8a152fe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8a153000 -     0x7fff8a153fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8a154000 -     0x7fff8a2a5fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8a2a6000 -     0x7fff8a2a6fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8a2b2000 -     0x7fff8a2b3ff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
        0x7fff8a312000 -     0x7fff8b2cbfff  com.apple.WebCore (8536 - 8536.26.14) <60029E1A-C1DB-3A1F-8528-4970058D8B3D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8b2cc000 -     0x7fff8b323ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <B75949DD-AC27-3848-8221-00D70D14C7E0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b324000 -     0x7fff8b343ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8bbf9000 -     0x7fff8bc05fff  libCSync.A.dylib (324.6) <2033247A-CABC-3E20-8498-7367A8F44A08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8bc49000 -     0x7fff8bc91fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff8bc92000 -     0x7fff8bc96ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8bc97000 -     0x7fff8bc9dfff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8bc9e000 -     0x7fff8bcacff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8bcbe000 -     0x7fff8bcdffff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8bce0000 -     0x7fff8bcf5ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8bd23000 -     0x7fff8bdd4fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8bdd5000 -     0x7fff8bdf7ff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
        0x7fff8bdf8000 -     0x7fff8bdfafff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff8bfec000 -     0x7fff8bfeffff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8bff0000 -     0x7fff8bff2fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8bff3000 -     0x7fff8c03eff7  com.apple.CoreMedia (1.0 - 926.62) <CFBD094F-DA9C-3498-9D50-BC754B56F00A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8c0df000 -     0x7fff8cd0cff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8cd18000 -     0x7fff8cd2ffff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8cd30000 -     0x7fff8cd43ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff8cd44000 -     0x7fff8cdacff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8cdad000 -     0x7fff8cdbcff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8cdbd000 -     0x7fff8cebbfff  com.apple.QuickLookUIFramework (4.0 - 555.4) <58EC2F30-0959-3586-A1DD-BDCAF589D2D3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8cf5a000 -     0x7fff8d0e4fff  com.apple.WebKit (8536 - 8536.26.14) <7C4D5DE6-7153-3E54-8D4F-BB2E9AE74878> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8d0e5000 -     0x7fff8d105fff  libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8d106000 -     0x7fff8d112fff  com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8d113000 -     0x7fff8d116fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8d152000 -     0x7fff8d1aefff  com.apple.QuickLookFramework (4.0 - 555.4) <B34DB61C-15F0-3CF8-98A4-152C2F54DF8D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8d1af000 -     0x7fff8d1beff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8d1bf000 -     0x7fff8d46dfff  com.apple.imageKit (2.2 - 667) <66A64289-6259-335E-9D8C-E3E02ECE7837> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8d46e000 -     0x7fff8d473fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8d474000 -     0x7fff8d48afff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8d48b000 -     0x7fff8d4d5ff7  libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8d4d6000 -     0x7fff8d567fff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8d570000 -     0x7fff8d58afff  com.apple.geokit (2.1 - 2.1) <2B0ED144-9284-3396-8B34-292C29F4EED6> /System/Library/PrivateFrameworks/GeoKit.framework/Versions/A/GeoKit
        0x7fff8d598000 -     0x7fff8d59efff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8d59f000 -     0x7fff8d998ff7  com.apple.MediaToolbox (1.0 - 926.62) <83BBE53E-29FE-3874-9991-B6D009EADCC5> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8d999000 -     0x7fff8d999fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8d99a000 -     0x7fff8d9efff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8d9f0000 -     0x7fff8dac3ff7  com.apple.DiscRecording (7.0 - 7000.2.4) <E5F3F320-1049-32D8-8189-916EF5C40A1A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8dac4000 -     0x7fff8dac4fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8dac5000 -     0x7fff8db46fff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8db9e000 -     0x7fff8dca0fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8dca1000 -     0x7fff8dcb7fff  com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8dcb8000 -     0x7fff8de2cfff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8de2d000 -     0x7fff8df4592f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8df46000 -     0x7fff8df74ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8df75000 -     0x7fff8dfabfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff8dfb1000 -     0x7fff8dfc5fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8dfc6000 -     0x7fff8e033ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8e034000 -     0x7fff8e06efff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8e06f000 -     0x7fff8e26ffff  libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
        0x7fff8e422000 -     0x7fff8e6a7fff  com.apple.RawCamera.bundle (4.01 - 666) <BBDA55DD-6155-39B5-9D55-5CCCCFF26D98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8e6a8000 -     0x7fff8e727ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8e728000 -     0x7fff8e753fff  com.apple.framework.Apple80211 (8.0.1 - 801.17) <05786C8E-8C6F-31AF-80B5-9C98175757B4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8e754000 -     0x7fff8e75fff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8e814000 -     0x7fff8e818fff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8e819000 -     0x7fff8eae9fff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8eaea000 -     0x7fff8eb0bff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8eb0c000 -     0x7fff8ee23ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8ee24000 -     0x7fff8ef21fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8ef22000 -     0x7fff8ef24fff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8ef26000 -     0x7fff8ef63fe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8ef64000 -     0x7fff8ef65ff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8ef66000 -     0x7fff8eff3ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8eff4000 -     0x7fff8f04dfff  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <2CC27836-1E1E-3633-B15C-A3BA1734D092> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8f04e000 -     0x7fff8f073ff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
        0x7fff8f077000 -     0x7fff8f174ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8f175000 -     0x7fff8f247ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8f248000 -     0x7fff8f252ff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8f253000 -     0x7fff8f3eefef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8f418000 -     0x7fff8f41bfff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8f450000 -     0x7fff8f478fff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8f479000 -     0x7fff8f6d4ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8f6d5000 -     0x7fff8f6ffff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f76c000 -     0x7fff8f77dff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff8f7b9000 -     0x7fff8f8fdfef  com.apple.MediaControlSender (1.4.5 - 145.3) <3A308EA3-21F7-3213-9157-D3421EB43715> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8f921000 -     0x7fff8fa16fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8fa88000 -     0x7fff8fa8efff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8fa8f000 -     0x7fff8fad2fff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8faec000 -     0x7fff8faecfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8fb22000 -     0x7fff8fb65fff  com.apple.ShareKit (1.0 - 119.8) <17331840-1DA7-34C5-929C-4CE8EE7AE9D6> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff8fb66000 -     0x7fff8fbc3ff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8fcc2000 -     0x7fff8fdebff7  com.apple.avfoundation (2.0 - 361.25) <1F5CACA6-9CF3-3FAB-BDE1-E6CC96A63FF7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8fe27000 -     0x7fff8fe4eff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8fe88000 -     0x7fff90071fff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90072000 -     0x7fff900dffff  com.apple.datadetectorscore (4.0 - 269.1) <B69645EB-C4BF-3D52-A49B-CB1A1A88512F> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff900e0000 -     0x7fff90136fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff90137000 -     0x7fff90194fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff90195000 -     0x7fff90306ff7  com.apple.QTKit (7.7.1 - 2599.13) <5B24A892-ED69-3C01-8B00-DF3AD81A20D4> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff9030e000 -     0x7fff90ab6fff  com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff90ab7000 -     0x7fff90ad4fff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff90ad5000 -     0x7fff90b31fff  com.apple.corelocation (1.0 - 1239.39) <88EFC8F1-0A91-3EB6-A1F6-76294541D85D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff90b32000 -     0x7fff90bb2ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff90bb3000 -     0x7fff90bb3fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff90c1c000 -     0x7fff90c84fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff90c85000 -     0x7fff90c85fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff90c8b000 -     0x7fff90c8cff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
        0x7fff90c8d000 -     0x7fff910aafff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff9119d000 -     0x7fff9119eff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff9134a000 -     0x7fff9138afff  com.apple.MediaKit (13 - 659) <0C56D7FF-0430-3199-9952-CF8577519449> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff9138b000 -     0x7fff913a2fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff913a3000 -     0x7fff913a4fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff913a5000 -     0x7fff913fbff7  com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff913fc000 -     0x7fff914d6ff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff914d7000 -     0x7fff914dbfff  libCGXType.A.dylib (324.6) <2FC25246-A69F-3F81-9AC6-0A1753E1C6A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff914de000 -     0x7fff91713ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91714000 -     0x7fff91715fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9174c000 -     0x7fff9186cfff  com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff9186d000 -     0x7fff918c7fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff918c8000 -     0x7fff918cffff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff918d0000 -     0x7fff918d0fff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff918d1000 -     0x7fff918d2fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff918d3000 -     0x7fff918ffff7  libRIP.A.dylib (324.6) <5A7EB5C2-BA60-36D7-BF41-9853F37837AA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff91903000 -     0x7fff91910fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff91911000 -     0x7fff91911fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff91912000 -     0x7fff9191cfff  com.apple.DisplayServicesFW (2.6.1 - 353) <0505CB8A-47D9-3539-9A0D-24F09D99E9D8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff9191d000 -     0x7fff9195cff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff9195d000 -     0x7fff91998fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0190B746-F684-3F43-B4D0-148EFE386CA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff91999000 -     0x7fff919a6ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff919a7000 -     0x7fff919bbfff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff919bc000 -     0x7fff91b6afff  com.apple.QuartzCore (1.8 - 304.0) <897FAA5D-FF13-33FE-878B-B164D684F019> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff91b6b000 -     0x7fff91bc2ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff91f3b000 -     0x7fff91f62fff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff91f63000 -     0x7fff91f68fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff91f69000 -     0x7fff91f8bff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff9253c000 -     0x7fff92656fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff926a3000 -     0x7fff926e7fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
        0x7fff926e8000 -     0x7fff926f3ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 5
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
       

  • Pop Up Window on click of save button

    Hi ,
    I am very new to WebDynpro Java.
    Can somebody plz help me??
    My Requirement-
    On Click of the Save Button ,a Pop Up window should get displayed with a message saying "SUCCESSFULLY SAVED".
    Plz reply soon
    Thanks In advance!!
    Regards
    Smita

    hi!
    1.create a action on the button click
    2.create a value node(popup)--> value attribute
    set the cardinallity as 1..1 and type as com.sap.tc.webdynpro.
    services.session.api.IWDWindow
    3.
    public void okPopup() {
    // @@begin okPopup()
    // get the repository content at runtime of the Web-Dynpro-
    IWDWindowInfo windowInfo = (IWDWindowInfo) wdComponentAPI
    .getComponentInfo().findInWindows("okWindow");//give your window name
    // create the u201CokWindowu201D
    IWDWindow window = wdComponentAPI.getWindowManager()
    .createModalWindow(windowInfo);
    // set the WindowPosition on the screen
    window.setWindowPosition(300, 150);
    // and show the window
    window.show();
    // Save WindowInstance in Context
    wdContext.currentPopupElement().setWindowInstance(window);
    // @@end
    4.now you can take text views to show the required message in the popup window.for that you can take the message from message pool and also you can directly write the message in the text property of text view.
    please get back to me if any further clarification is required.
    thanks
    vishal

  • 500 internal server error,when clicking review /save button.

    Hi
    Iam facing the problem with pcr  forms in portal .Forms are displaying in portal. when i click the button Review and save button .It is showing 500 internal server error.But sometimes it is working fine upto completed step.There is irregularity in display.
    Iam not understanding why this is  happening like this.So let me know the solution for it.To display properly.
    Here iam sending tracefile to.
    Webresource could not be exchanged!
    [EXCEPTION]
    com.sap.tc.webdynpro.services.sal.util.cache.ResourceNotFoundException: Stream is not valid
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$CopyByFirstReadResourcePoolElement.setInputStream(ResourcePool.java:475)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.datatransport.MassDataSource.setInputStream(MassDataSource.java:106)
         at com.sap.tc.webdynpro.services.sal.datatransport.core.InternalMassDataTransport.replaceInputMassDatasourceByKey(InternalMassDataTransport.java:96)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.replaceCachedResource(WebDynproExchangeHandler.java:217)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.doExchange(WebDynproExchangeHandler.java:181)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doExchangeProcessing(ClientSession.java:1166)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:763)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:174)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:207)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.engine.services.httpserver.exceptions.HttpIOException: Read timeout. The client has disconnected or a synchronization error has occurred. Read [4380] bytes. Expected [14205].
         at com.sap.engine.services.httpserver.server.io.HttpInputStream.read(HttpInputStream.java:186)
         at java.io.InputStream.read(InputStream.java:109)
         at com.sap.tc.webdynpro.basesrvc.util.IOUtil.writeEncrypted(IOUtil.java:154)
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$AbstractResourceElement.copyUnique(ResourcePool.java:245)
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$CopyByFirstReadResourcePoolElement.save(ResourcePool.java:537)
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$CopyByFirstReadResourcePoolElement.setInputStream(ResourcePool.java:471)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.datatransport.MassDataSource.setInputStream(MassDataSource.java:106)
         at com.sap.tc.webdynpro.services.sal.datatransport.core.InternalMassDataTransport.replaceInputMassDatasourceByKey(InternalMassDataTransport.java:96)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.replaceCachedResource(WebDynproExchangeHandler.java:217)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.doExchange(WebDynproExchangeHandler.java:181)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doExchangeProcessing(ClientSession.java:1166)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:763)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:174)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:207)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    with regards,
    Eswar.

    Hi
    Any update information for this issue.
    with rgds,
    Eswar.

  • How to save data in html format while user click a save button in jsp page

    Hi All,
    I have the following requirement
    If user click on the Save Button it should display a window which allows the user to select the directory and the data is stored in the Internet Explorer Format.
    Could please anybody suggest me how to impletment the above requirment in jsp page.
    It's very urgent. Please replay ASAP.
    Thanks
    Rajeshwari

    Analyzing ur ques ...
    If user click on the Save Button it should display a window which allows the user to select the directory and the data is stored in the Internet Explorer Format.hmmm..
    There is no html object type which supports directory selection for download. There is only an input type="file" which however is related to an upload scenario.
    By downloading the file using output stream u can achieve what you want.
    You simply need to do the following things ..
    a) Write to an output stream
    b) Set the content type to "text/html" for your response
    Example ....
    response.setContentType("text/html");
    response.setHeader("Content-disposition",
    "attachment; filename" +
    "Example.html" );
    javax.servlet.ServletOutputStream stream = res.getOutputStream();
    StringBuffer text = new StringBuffer(1024);
    text.append("some text . . . ");
    text.append("more text . . . ");
    stream.write(data);
    stream.close();

  • How can I write a code that triggers when clicking on Save button

    I want to hide certain fields inside my tracking list, if the login user is not part of the “Managers” group.
    To do so I want to add the following Page-load code inside a web part :-
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    {SPGroup group = site.Groups["Managers"];
    bool isUser = site.IsCurrentUserMemberOfGroup(group.ID);
    if (isUser)
    {textbox.Visible=false;}}
    And the following custom code that triggers when saving the form :-
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists["ListName"];web.AllowUnsafeUpdates = true;
    SPListItem item = list.Items[SPContext.Current.ListItem.UniqueId];
    txtTitle.Text = item["Title"] as string;item.Update();web.AllowUnsafeUpdates = false;
    But I am not sure where exactly I should add the custom code for the save button ? I tried writing it inside the Oninit method , but I got many errors as shown below:-
    So can anyone advice how i should write the web part to include the Page load & the custom save button code?
    second question in general is my above approach considered valid , i mean to hide/show list columns using web parts ?

    Hi,
    According to your post, my understanding is that you want to hide/show list columns based on specify the permission for Users, SharePoint Groups or Active Directory Groups.
    Here is a solution from CodePlex for your reference:
    SharePoint 2013 Column & View Permission
    https://sp2013columnpermission.codeplex.com/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Trigger a process chain when user clicks on save button in web interface

    Hi All,
    This is a issue I'm facing with the BW BPS web interface.
    BPS web interface generates a BSP application so thought posting this question in BSP forum might get some responses.
    The issue is I have to trigger a process chain when the user clicks on the save button on the web interface.
    I have no clue how BSP works. So if anybody has any ideas or suggestions I would greatly appreciate it.
    Thanks,
    Harini

    Hi Dhanya,
    This is the code i have in the ABAP program in the process chain. I just included the API_SEMBPS_POST part, but still it doesn't work. Please give me your email address so that i can send some screenshots.
    REPORT  ZHTEST.
    DATA: l_subrc TYPE sy-subrc.
    DATA: ls_return TYPE bapiret2.
    CALL FUNCTION 'API_SEMBPS_POST'
    IMPORTING
       E_SUBRC         = l_subrc
       ES_RETURN       = ls_return.
    CALL FUNCTION 'RSAPO_CLOSE_TRANS_REQUEST'
      EXPORTING
        I_INFOCUBE               = 'ZMAP_TAB'
    EXCEPTIONS
      ILLEGAL_INPUT            = 1
      REQUEST_NOT_CLOSED       = 2
      INHERITED_ERROR          = 3
      OTHERS                   = 4
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • How to generate a mail on click of save button on Module pool program.

    Hi geeks,
    I am developing a Module pool having table control..The table control is supposedly having  10 columns. The user enters values in first 5 colmns and when he saves , a mail should be  generated to his hierarchy indicatiing it .How could this be achieved?? . The mail should just have  details like the i/p entered in screen . If possible explain through  a code snippet..
    Thanks in advance
    Regards,
    Navin

    when you press save button, get the sy-ucomm and write the below code. Capture the entries from
    table control and send the mail.
      DATA : it_objpack   TYPE STANDARD TABLE OF sopcklsti1 ,
             it_objtxt    TYPE STANDARD TABLE OF solisti1 ,
             it_objbin    TYPE STANDARD TABLE OF solisti1 ,
             it_reclist   TYPE STANDARD TABLE OF somlreci1 ,
             wa_doc_chng  TYPE sodocchgi1,
             wa_objhead   TYPE soli_tab,
             l_attachment TYPE i,
             l_testo      TYPE i.
      DATA:   wa_objpack TYPE sopcklsti1,
              wa_objtxt TYPE solisti1 ,
              wa_objbin TYPE  solisti1 ,
              wa_reclist TYPE  somlreci1 .
      CLEAR:  wa_reclist,
              wa_objhead,
              wa_objtxt,  it_objtxt[],
              wa_objbin,  it_objbin[],
              wa_objpack, it_objpack[].
      CLEAR wa_objbin.
      REFRESH it_objbin.
      it_objbin[] = gt_mess_att[].
      DESCRIBE TABLE it_objbin LINES l_attachment.
      LOOP AT it_message INTO wa_message.
        wa_objtxt = wa_message. APPEND wa_objtxt TO it_objtxt.
      ENDLOOP.
      DESCRIBE TABLE it_objtxt LINES l_testo.
      wa_doc_chng-obj_name = 'Test'.
      wa_doc_chng-expiry_dat = sy-datum + 10.
      CONCATENATE 'Send '
                    INTO wa_doc_chng-obj_descr .
      wa_doc_chng-sensitivty = 'P'.
      wa_doc_chng-obj_prio = '1'.
      wa_doc_chng-doc_size = l_testo * 255.
      CLEAR wa_objpack-transf_bin.
      wa_objpack-head_start = 1.
      wa_objpack-head_num   = 0.
      wa_objpack-body_start = 1.
      wa_objpack-body_num   = l_testo.
      wa_objpack-doc_type   = 'RAW'.
      APPEND wa_objpack TO it_objpack.
      CLEAR wa_reclist.
      wa_reclist-copy = 'X'.
      IF wa_email IS NOT INITIAL.
        wa_reclist-receiver = wa_email-value1.
        wa_reclist-express  = 'X'.
        wa_reclist-rec_type = 'U'.
        wa_reclist-notif_del = 'X'.
        wa_reclist-notif_ndel = 'X'.
        APPEND wa_reclist TO it_reclist.
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = wa_doc_chng
            put_in_outbox              = 'X'
            commit_work                = 'X'
          TABLES
            packing_list               = it_objpack
            object_header              = wa_objhead
            contents_bin               = it_objbin
            contents_txt               = it_objtxt
            receivers                  = it_reclist
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
        IF sy-subrc <> 0.
          WRITE 'mail fail'.
        ENDIF.
      ENDIF.

Maybe you are looking for

  • How do I determine the order of photos displayed in slideshow?

    I'm using my ipod to teach art, using a dlp projector. I've got pictures sorted by topic. But I need to know how to organize the photos to display in the order I want them to. Can you help? Thanks! Mike

  • How can i make the size of my document that i created smaller so that i can email it easier

    The 5 page document I created and need to send is 1.7MB.  I need it to be 250KB to send using the format requested.  All the info needs to be sent.  How can i shrink the data by such a large amount to enable the document to send?  I am on Windows 7 a

  • Unable to obtain ip with wireless connection to Netgear WGR614 router

    Pardon my ignorance, I'm relatively new to the Mac world. I recently purchased an iMac and at the same time purchased a Netgear wireless router. When hardwired to the Netgear, I have no issues. I tried connecting via wireless, and keep getting the se

  • Sharing a library at home

    What about the following scenario. A family builds up a common music library consisting of mp3 and other files on an external LAN disk accessible in read-only mode from family’s Macs and PCs. The library is maintained by a user with write access to t

  • Why won't Lion open my apple works documents?

    Actually I think I know why-- they want me to buy something wlse. I'm sure many others are coming to the same revelation. I just bought a new Mac Mini (Lion) after 6+ years on Tiger-- upgraded to 10.4.11. After importing all my data I find that I can