Display Popup or Dialog Message window when opening planning form?

Is there a way to setup a planning web form to display a dialog box or message when the user opens a planning web form or expands a folder in planning? Or, is there a way to change the background color on a web planning form (input is yellow and would like to change it to some other color (light orange))? We are currently using Hyperion v9.3.0.1 on Unix Solaris. I tried attaching a Biz rule with runtime variables but the form errors with message indicating can not have run time variables on the form load option when opening a form.

Hi,
You can use custom javascript to add an alert message in a web form, you will need to read up on using custom javascript in planning, have a read here
As for the colors used in web forms you can customize the css being used, have a read here
Ok?
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Not to display Yes/No/Cancel message window, while closing Oracle Apps Form

    Hello All,
    I have a requirement,where we need to avoid displaying Yes/No/Cancel message window when trying to save the changes in Oracle Applications Form.
    Please do let me know how to achive this.
    Thanks a lot in Advance.

    Hi Ramesh,
    Thanks for the Update.
    I have used the below code in KEY-EXIT
    CLEAR_FORM(NO_VALIDATE);
    EXIT_FORM;
    Also the code behind the button which submits the conc.program:
    DECLARE
    l_request_id NUMBER;
    vRESP_APPL_ID number;
    vRESP_ID number;
    vUSER_ID number;
    BEGIN
    --vRESP_APPL_ID := apps.FND_PROFILE.VALUE('RESP_APPL_ID');
    --vRESP_ID := apps.FND_PROFILE.VALUE('RESP_ID');
    --vUSER_ID := apps.FND_PROFILE.VALUE('USER_ID');
    --apps.FND_GLOBAL.APPS_INITIALIZE(vUSER_ID,vRESP_ID,vRESP_APPL_ID);
    apps.FND_GLOBAL.APPS_INITIALIZE(2340,20420,1);
    l_request_id := FND_REQUEST.SUBMIT_REQUEST ('XXAHS',
              'XXAHSRPDSR',
         null,
                        sysdate,
                        FALSE,
                        '|020|080|031|161|030|100|131|',
                        '11-JAN-10',
                        '|41|42|43|45|',
    insert into temp_amk values(15);
    commit;
    message('request id:'||l_request_id);
    exception
    when others then
    message(sqlerrm);
    end;
    This code worked fine, in case I ran from SQL Prompt.
    Please let me know what must be missing.
    Thanks.

  • Outlook2013 email message goes behind main Outlook window when opening PDF attachment with Reader 11

    Problem statement: Outlook 2013 email message goes behind main Outlook window when opening PDF attachment with Adobe Reader 11.0.3
    Environment: Windows 8 x64; Office 2013; Adobe Reader 11.0.3
    Steps to reproduce bug:
    1. Open Outlook 2013
    2. Open email message with PDF attachment
    3. Open PDF attachment (with Adobe Reader as default PDF viewer)
    4. Close Adobe Reader
    Results: Original email message with PDF attacment now sits behind the main Outlook window
    Expected results: Original email message should be on top of main Outlook window as it was when opening the PDF attachment
    Note: Adobe Acrobat Profession performs as expected - the original email is on top of the main Outlook window - This only seems to be a problem with Adobe Reader.
    Has anyone else experience this problem?  If so, have you found a work-around?
    Thanks,
    Mike

    From: new window opens behind existing window - how to modify?
    I had this problem happening in Outlook.
    If I tried to open an email, it would open behind the main Outlook window.
    The same happened if I opened a link in the email - it would open behind the mail.
    The fix that was suggested to me was so simple that I still don't believe it.
    Right click on the task bar and unlock the taskbar, then lock it again.
    Close down Outlook and re-start it.
    Problem solved! Just dont know how  or why.
    Proposed as answer byalfreelandTuesday, January 08, 2013 4:52 PM
    It worked for me with Win 7 and OL 2003. Why? Who cares ... It is working.
    Liviu 2014-09-17

  • Why are not  pop up  message window when message type I and W

    Hi All,
    I am working in BADI ( me_purchdoc_posted~posted) for t-code ME21N. Actually i want show material number, material description  and ABC indicator of material at saving point of PO if material is significant.
    code is properly working  but does not showing  error message window when I am using message type I  (information) or W (worming message) .
    if i am using message type E ( error message )then showing message window just link  Information message.
    So i can no understand why are not message window pop up  when i take message type I and W.
    my code is that
    method IF_EX_ME_PURCHDOC_POSTED~POSTED
    IF SY-TCODE EQ 'ME21N' OR SY-TCODE EQ'ME21'.
      DATA : wa LIKE LINE OF IM_EKPO.
      DATA : VAR_MAKTX TYPE MAKT-MAKTX.
      DATA : VAR_MAABC TYPE MARC-MAABC.
      DATA : P TYPE STRING.
      DATA : P1 TYPE STRING.
      LOOP AT IM_EKPO INTO wa.
        SELECT SINGLE MAABC FROM MARC INTO VAR_MAABC WHERE matnr EQ wa-matnr AND werks EQ wa-werks.
        SELECT SINGLE MAKTX FROM MAKT INTO VAR_MAKTX WHERE matnr EQ wa-matnr. " AND werks EQ wa-werks.
          IF VAR_MAABC EQ 'A'.
            P = 'is significant material'.
            CONCATENATE  WA-MATNR '(' VAR_MAKTX ')'  P INTO P1.
            MESSAGE P1 TYPE 'E'.
            EXIT.
            ENDIF.
      ENDLOOP.
    ENDIF.
    endmethod.
    guide me...............

    Hi vinod,
    thanks for reply......
    yes,  my  requirement is to show the popup window with  material number, material description and ABC indicator of material at saving point of PO if material is significant.
    I find Badi to transaction me21n at saving PO.  Badi ME_PROCESS_PO_CUST does not exist.
    so i am using Badi me_purchdoc_posted~posted.
    This Badi  ( me_purchdoc_posted~posted ) is properly working But showing message  "system error ( error in method po_post ) "
    when I am click on OK then automatic leave from transaction.
    guide me..........

  • Not showing  pop up message window when message type I and W

    Hi,
    My requirement is to show the popup message window with material number, material description and ABC indicator of material at Every line item of PO in Transaction ME21N , if material is significant.
    I find Badi to transaction me21n ME_PROCESS_PO_CUST~PROCESS_ITEM
    actually i want show only information about material.
    This Badi ( ME_PROCESS_PO_CUST~PROCESS_ITEM ) is properly working But does not showing Popup Message window
    when i am using Message Type  'I' or "W" .
    <Coding>
    method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM.
    BREAK-POINT.
    BREAK-POINT.
        IF  SY-TCODE EQ 'ME21N' OR SY-TCODE EQ'ME21' . " ) AND MEPO1211-werks IS NOT INITIAL. " AND IM_LGOBE IS INITIAL.
       BREAK-POINT .
      DATA : VAR_MAKTX TYPE MAKT-MAKTX.
      DATA : VAR_MAABC TYPE MARC-MAABC.
      DATA : P TYPE STRING.
      DATA : P1 TYPE STRING.
    DATA: ls_mepoitem1 TYPE mepoitem,
          ls_header_obj TYPE REF TO if_purchase_order_mm,
          ls_header   TYPE mepoheader,
          lc_werks(1) TYPE c,
          lv_fabkl    TYPE t001w-fabkl,
          lv_plifz    TYPE ekpo-plifz.
       *Get header data
      ls_header_obj = im_item->get_header( ).
      ls_header     = ls_header_obj->get_data( ).
    *Get Item Data
    ls_mepoitem1 = im_item->get_data( ).
        SELECT SINGLE MAABC FROM MARC INTO VAR_MAABC WHERE matnr EQ ls_mepoitem1-matnr AND werks EQ    ls_mepoitem1-WERKS.
        SELECT SINGLE MAKTX FROM MAKT INTO VAR_MAKTX WHERE matnr EQ ls_mepoitem1-matnr.
          IF   VAR_MAABC EQ 'A'.   "LS_MEPOITEM1-SPINF EQ 'A'.
            P = 'is significant material'.
            CONCATENATE  LS_MEPOITEM1-MATNR '' '(' VAR_MAKTX ')'  '' P INTO P1.
           MESSAGE p1 type 'I' .   
            EXIT.
            ENDIF.
            ENDIF.
    endmethod.
    guide me.....

    Hi
    Please, see SAP Note 310154 - ME21N/ME51N: Customer-specific check, generating error log
    I hope this helps you
    Regards
    Eduardo

  • My Finder Window when open and desktop icons are blinking/flashing/periodically disappearing.

    The other day I was working on my iMac when the screen all of a sudden froze. iTunes was playing and continued to play, but I could not do anything. This has happened before, so I didn't panick, but just did a hard reset. I was then prompted to recover my computer from my external harddrive/time machine. This took about 10 hours (over firewire). Since then the computer works again, but the Finder window when open as well as the icons on my desktop are constantly flashing or blinking (more like periodically disappearing and reappearing) when I'm in the Finder, I'm then brought back to the previous folder I was in when it reappears.
    I read that this might have to do with Stuffit, which I deleted. I also deleted the Project 179 from Canon, as it was the last program I installed on the day that the computer went glitchy. I also tried both of these:
    1. click on "spotlight" on the top right corner of your desktop.
    2. type "terminal" (without the quotation marks) and open it.
    3. when the terminal opens, type "cd desktop" and hit enter.
    4. type "rm -rf .DS_Store" and enter
    5. type "exit" and enter
    If it doesn't work try the follow:
    1. click on "spotlight" on the top right corner of your desktop.
    2. type "terminal" (without the quotation marks) and open it.
    3. when the terminal opens, type "sudo rm -rf ~/.Trash/" (This will empty your trash) and enter
    4. type your administrator password. As you type, you will not see any character on the screen. Just type it and hit enter. (If you left your password blank, you have to make one by going to system preferences - users & groups - change password)
    5. type "exit" and enter
    Please help!

    Thank you Lic Davis (Emmanuel Kant) for the help. Here is the information you requested:
    03.09.13 22:40:31.267 Google Drive[295]: GsyncAppDeletegate.py : Finder debug level logs : False
    03.09.13 22:40:38.000 kernel[0]: Data/Stack execution not permitted: Finder[pid 205] at virtual address 0x1017e9000, protections were read-only
    03.09.13 22:40:59.487 com.apple.launchd.peruser.501[182]: (com.apple.Finder[205]) Job appears to have crashed: Bus error: 10
    03.09.13 22:41:01.571 ReportCrash[333]: Saved crash report for Finder[205] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4101_christian-langeneggers-computer.crash
    03.09.13 22:41:01.719 ReportCrash[333]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-221753_christian-langeneggers-computer.crash
    03.09.13 22:41:34.860 com.apple.launchd.peruser.501[182]: (com.apple.Finder[339]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:41:35.201 ReportCrash[333]: Saved crash report for Finder[339] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4135_christian-langeneggers-computer.crash
    03.09.13 22:41:35.209 ReportCrash[333]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-221854_christian-langeneggers-computer.crash
    03.09.13 22:42:35.860 com.apple.launchd.peruser.501[182]: (com.apple.Finder[353]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:42:36.168 ReportCrash[361]: Saved crash report for Finder[353] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4236_christian-langeneggers-computer.crash
    03.09.13 22:42:36.179 ReportCrash[361]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-221956_christian-langeneggers-computer.crash
    03.09.13 22:43:37.168 com.apple.launchd.peruser.501[182]: (com.apple.Finder[362]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:43:37.431 ReportCrash[370]: Saved crash report for Finder[362] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4337_christian-langeneggers-computer.crash
    03.09.13 22:43:37.435 ReportCrash[370]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222057_christian-langeneggers-computer.crash
    03.09.13 22:44:38.395 com.apple.launchd.peruser.501[182]: (com.apple.Finder[371]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:44:38.648 ReportCrash[378]: Saved crash report for Finder[371] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4438_christian-langeneggers-computer.crash
    03.09.13 22:44:38.652 ReportCrash[378]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222159_christian-langeneggers-computer.crash
    03.09.13 22:45:39.694 com.apple.launchd.peruser.501[182]: (com.apple.Finder[379]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:45:39.919 ReportCrash[387]: Saved crash report for Finder[379] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4539_christian-langeneggers-computer.crash
    03.09.13 22:45:39.923 ReportCrash[387]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222259_christian-langeneggers-computer.crash
    03.09.13 22:46:40.982 com.apple.launchd.peruser.501[182]: (com.apple.Finder[388]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:46:41.200 ReportCrash[394]: Saved crash report for Finder[388] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4641_christian-langeneggers-computer.crash
    03.09.13 22:46:41.203 ReportCrash[394]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222401_christian-langeneggers-computer.crash
    03.09.13 22:47:42.267 com.apple.launchd.peruser.501[182]: (com.apple.Finder[395]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:47:42.502 ReportCrash[401]: Saved crash report for Finder[395] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4742_christian-langeneggers-computer.crash
    03.09.13 22:47:42.506 ReportCrash[401]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222502_christian-langeneggers-computer.crash
    03.09.13 22:48:43.568 com.apple.launchd.peruser.501[182]: (com.apple.Finder[402]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:48:43.785 ReportCrash[409]: Saved crash report for Finder[402] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4843_christian-langeneggers-computer.crash
    03.09.13 22:48:43.788 ReportCrash[409]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222603_christian-langeneggers-computer.crash
    03.09.13 22:49:44.854 com.apple.launchd.peruser.501[182]: (com.apple.Finder[410]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:49:45.072 ReportCrash[416]: Saved crash report for Finder[410] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4945_christian-langeneggers-computer.crash
    03.09.13 22:49:45.076 ReportCrash[416]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222704_christian-langeneggers-computer.crash
    03.09.13 22:50:46.145 com.apple.launchd.peruser.501[182]: (com.apple.Finder[417]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:50:46.366 ReportCrash[424]: Saved crash report for Finder[417] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5046_christian-langeneggers-computer.crash
    03.09.13 22:50:46.369 ReportCrash[424]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222806_christian-langeneggers-computer.crash
    03.09.13 22:51:47.438 com.apple.launchd.peruser.501[182]: (com.apple.Finder[425]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:51:47.663 ReportCrash[431]: Saved crash report for Finder[425] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5147_christian-langeneggers-computer.crash
    03.09.13 22:51:47.669 ReportCrash[431]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222910_christian-langeneggers-computer.crash
    03.09.13 22:52:48.737 com.apple.launchd.peruser.501[182]: (com.apple.Finder[432]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:52:48.977 ReportCrash[439]: Saved crash report for Finder[432] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5248_christian-langeneggers-computer.crash
    03.09.13 22:52:48.980 ReportCrash[439]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223010_christian-langeneggers-computer.crash
    03.09.13 22:53:50.024 com.apple.launchd.peruser.501[182]: (com.apple.Finder[440]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:53:50.294 ReportCrash[446]: Saved crash report for Finder[440] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5350_christian-langeneggers-computer.crash
    03.09.13 22:53:50.297 ReportCrash[446]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223112_christian-langeneggers-computer.crash
    03.09.13 22:54:51.329 com.apple.launchd.peruser.501[182]: (com.apple.Finder[447]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:54:51.561 ReportCrash[454]: Saved crash report for Finder[447] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5451_christian-langeneggers-computer.crash
    03.09.13 22:54:51.574 ReportCrash[454]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223224_christian-langeneggers-computer.crash
    03.09.13 22:55:52.619 com.apple.launchd.peruser.501[182]: (com.apple.Finder[455]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:55:52.841 ReportCrash[461]: Saved crash report for Finder[455] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5552_christian-langeneggers-computer.crash
    03.09.13 22:55:52.846 ReportCrash[461]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223347_christian-langeneggers-computer.crash
    03.09.13 22:56:53.940 com.apple.launchd.peruser.501[182]: (com.apple.Finder[462]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:56:54.161 ReportCrash[469]: Saved crash report for Finder[462] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5654_christian-langeneggers-computer.crash
    03.09.13 22:56:54.165 ReportCrash[469]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223448_christian-langeneggers-computer.crash
    03.09.13 22:57:55.237 com.apple.launchd.peruser.501[182]: (com.apple.Finder[470]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:57:55.450 ReportCrash[476]: Saved crash report for Finder[470] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5755_christian-langeneggers-computer.crash
    03.09.13 22:57:55.454 ReportCrash[476]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223552_christian-langeneggers-computer.crash
    03.09.13 22:58:56.506 com.apple.launchd.peruser.501[182]: (com.apple.Finder[477]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:58:56.731 ReportCrash[484]: Saved crash report for Finder[477] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5856_christian-langeneggers-computer.crash
    03.09.13 22:58:56.735 ReportCrash[484]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223653_christian-langeneggers-computer.crash
    FIRST CRASH REPORT:
    Process:         Finder [406]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.8.3 (10.8.3)
    Build Info:      Finder_FE-808003001000000~4
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [189]
    User ID:         501
    Date/Time:       2013-09-03 20:12:41.325 +0200
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Sleep/Wake UUID: D46AA1C3-1916-4FB6-866D-EA8269293442
    Interval Since Last Report:          32117 sec
    Crashes Since Last Report:           501
    Per-App Interval Since Last Report:  31460 sec
    Per-App Crashes Since Last Report:   501
    Anonymous UUID:                      DELETED PER REQUEST
    Crashed Thread:  7
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000001017e91b4
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x1017e91b4:
    -->
        __TEXT                 000000010a81b000-000000010acd6000 [ 4844K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x000000011039c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000011039bc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010d225233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010d22a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010d22a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox                     0x000000010be05eb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox                     0x000000010be05c52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox                     0x000000010be05ae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x000000010dd98533 _DPSNextEvent + 685
    9   com.apple.AppKit                        0x000000010dd97df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit                        0x000000010dd8f1a3 -[NSApplication run] + 517
    11  com.apple.AppKit                        0x000000010dd33bd6 NSApplicationMain + 869
    12  com.apple.finder                        0x000000010a820b56 0x10a81b000 + 23382
    13  libdyld.dylib                           0x00000001101be7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000011039ed16 kevent + 10
    1   libdispatch.dylib                       0x0000000110185dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00000001101859ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x000000011039e322 __select + 10
    1   com.apple.CoreFoundation                0x000000010d269f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00000001102247a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00000001102111e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 7 Crashed:
    0   ???                                     0x00000001017e91b4 0 + 4320039348
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000000000005e  rcx: 0x000000010c71a000  rdx: 0x000000000000005e
      rdi: 0x000000010c71a000  rsi: 0x000000010baf0000  rbp: 0x000000010c71bff4  rsp: 0x000000010c71bf7c
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x000000010baf0000  r15: 0x0000000000000000
      rip: 0x00000001017e91b4  rfl: 0x0000000000010206  cr2: 0x00000001017e91b4
    Logical CPU: 1
    Binary Images:
           0x10a81b000 -        0x10acd5ff7  com.apple.finder (10.8.3 - 10.8.3) <5AF2416D-6AF0-386F-86D5-A276C74780E6> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x10ade2000 -        0x10af02fff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10af76000 -        0x10afc7ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10aff6000 -        0x10b2c7ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10b400000 -        0x10b443ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10b456000 -        0x10b45cfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10b46b000 -        0x10b4d9ff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10b50b000 -        0x10b5d0ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10b647000 -        0x10b7f5fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10b8b3000 -        0x10b8b3fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10b8ba000 -        0x10b8c9fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10b8d7000 -        0x10b9b1fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x10ba3a000 -        0x10ba96fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x10bad0000 -        0x10badefff  com.apple.Collaboration (68 - 68) <164D07CA-B00B-36C1-B488-D33329FB8314> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
           0x10baf3000 -        0x10bcf3fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x10bd95000 -        0x10bd9cfff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10bda6000 -        0x10c0d6fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10c232000 -        0x10c4e1fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x10c720000 -        0x10c81efff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x10c8d4000 -        0x10c92efff  com.apple.Suggestions (2.0 - 102.1) <05D8D892-9A31-301A-BD24-D8A89B2AC905> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
           0x10c974000 -        0x10c977fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x10c982000 -        0x10cad4fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10cb5f000 -        0x10cc50ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <F9FAEAF0-B9A5-34DF-94B7-926FB03AD5F6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x10ccb6000 -        0x10ccb7fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10ccbf000 -        0x10cd4efff  libCoreStorage.dylib (296.16.1) <35FE3D47-089C-351A-AC9E-4D2C82AE5D87> /usr/lib/libCoreStorage.dylib
           0x10cd76000 -        0x10cdbffff  com.apple.DiskManagement (5.2.1 - 665.1) <8F2C8673-B1DE-33CE-A024-5E179EA8D378> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
           0x10cde5000 -        0x10cdeffff  libcsfde.dylib (296.16.1) <8F75205A-8802-3B1D-87AA-235CBF1E49AE> /usr/lib/libcsfde.dylib
           0x10ce00000 -        0x10ce27ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10ce4a000 -        0x10ce7efff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10ceac000 -        0x10cf14ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
           0x10cf6e000 -        0x10cf6fff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
           0x10cf7d000 -        0x10d09592f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x10d0ba000 -        0x10d18cff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10d1f0000 -        0x10d1f0fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10d1f5000 -        0x10d3dfff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10d541000 -        0x10d541fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10d549000 -        0x10d8a8fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10dacb000 -        0x10dbe4fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x10dc43000 -        0x10e870fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10ef69000 -        0x10f0deff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10f1a3000 -        0x10f1b6ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x10f1c4000 -        0x10f1e5fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10f200000 -        0x10f20dff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10f21f000 -        0x10fbaf4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x10fcb8000 -        0x10fd38ff7  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
           0x10fd68000 -        0x10fe25ff7  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
           0x10fe71000 -        0x10fec7fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10ff00000 -        0x10ff13ff7  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
           0x10ff28000 -        0x10ff82fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10ffb1000 -        0x10fff0ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x11000a000 -        0x11001efff  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
           0x110034000 -        0x110046ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x110052000 -        0x110056fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x110061000 -        0x1100cafff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x110130000 -        0x110135fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x11013c000 -        0x11014afff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x11015e000 -        0x110163fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x11016d000 -        0x110174fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x110181000 -        0x110196ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x1101af000 -        0x1101b0ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x1101bc000 -        0x1101bfff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x1101c7000 -        0x1101c7fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x1101ce000 -        0x1101d6fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x1101e4000 -        0x1101eafff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x1101f4000 -        0x1101f6fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x1101fd000 -        0x1101feff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x110206000 -        0x110207fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x110210000 -        0x1102dcff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x110325000 -        0x11032dff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x110337000 -        0x11036dfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
           0x11038c000 -        0x1103a7ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x1103bf000 -        0x1103edff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
           0x1103f9000 -        0x110407ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
           0x11041a000 -        0x110425fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x110432000 -        0x110433ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x11043f000 -        0x110441ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
           0x110449000 -        0x11044fff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x11045d000 -        0x11047fff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x110497000 -        0x1104e6ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x1104f6000 -        0x110542ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x11055a000 -        0x11057fff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x1105b7000 -        0x1105c5ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
           0x1105cb000 -        0x1108e2ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x11095d000 -        0x1109defff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x110a39000 -        0x110adfff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x110b45000 -        0x110bd2ff7  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
           0x110c1b000 -        0x110c7afff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x110ca9000 -        0x110d5afff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x110dae000 -        0x110ddfff7  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
           0x110e07000 -        0x110f04fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x110f20000 -        0x11101dff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
           0x111056000 -        0x111065ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
           0x11106e000 -        0x111072fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x11107d000 -        0x11107dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x111084000 -        0x111091fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x11109c000 -        0x111109ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x111145000 -        0x111149ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x111154000 -        0x111155fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x111159000 -        0x11117aff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
           0x111188000 -        0x11119ffff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x1111ad000 -        0x1111c4fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1111e0000 -        0x11120bfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x11121e000 -        0x11121efff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x111224000 -        0x11132ffff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x111394000 -        0x1113e3ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x111410000 -        0x1115abfef  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
           0x1115d1000 -        0x1115d1fff  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
           0x1115d6000 -        0x11163efff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x11164c000 -        0x1116e6fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x1116f8000 -        0x111aeffff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x111b56000 -        0x111cdcfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x111d0c000 -        0x111d34fff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x111d42000 -        0x111d97ff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x111daa000 -        0x111dcafff  libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x111dd7000 -        0x111ddbfff  libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x111de0000 -        0x111ee2fff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x111f14000 -        0x111f17fff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x111f1e000 -        0x111f62fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
           0x111f75000 -        0x111f97ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x111fb2000 -        0x111fecff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x11200f000 -        0x11202eff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
           0x112039000 -        0x11212efff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
           0x112142000 -        0x1121c4ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x1121ee000 -        0x1121f0fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x1121fb000 -        0x112200fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x112211000 -        0x11221cfff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x112224000 -        0x11222fff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x11223d000 -        0x11225cff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x112269000 -        0x112276fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x11227f000 -        0x1122a9ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x1122ca000 -        0x11256eff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x112655000 -        0x1126acff7  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
           0x1126d3000 -        0x11271dff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x112730000 -        0x112737fff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x112743000 -        0x11275afff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x112771000 -        0x1127aefef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x1127ba000 -        0x1127bcfff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x1127c7000 -        0x1127cbfff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x1127d8000 -        0x1127e4fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x1127f3000 -        0x11284dff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x112863000 -        0x112c80fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x112e95000 -        0x1130caff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x1131ce000 -        0x113211ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x11324f000 -        0x11324fffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x11325c000 -        0x113266fff  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
           0x113274000 -        0x1132d7ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x1132ff000 -        0x113315fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x113327000 -        0x11334efff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x11336b000 -        0x113409ff7  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
           0x113440000 -        0x113440fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x113443000 -        0x1134c1ff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x113500000 -        0x113509ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x113517000 -        0x1135b2fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x1135d3000 -        0x11362fff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x113678000 -        0x1136aefff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x1136cf000 -        0x113993fff  com.apple.AddressBook.framework (7.1 - 1170) <A850809B-B087-3366-9FA0-1518C20831D3> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x113be5000 -        0x113bf1ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x113c00000 -        0x113c07fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
           0x113c11000 -        0x113c11fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x113c1a000 -        0x113c54fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x113c89000 -        0x113cc4fff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x113cd6000 -        0x113f31ff7  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
           0x114093000 -        0x114146ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x1141ba000 -        0x1141e6fff  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
           0x114217000 -        0x1144b2ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x114560000 -        0x1146d1ff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x1147de000 -        0x114829fff  com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x114850000 -        0x114b07ff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x114b9e000 -        0x114fdafef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x11506e000 -        0x11506efff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x115075000 -        0x11508ffff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x1150ae000 -        0x1150fbfff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x115127000 -        0x115285fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
           0x1152d0000 -        0x1153eafff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
           0x11540f000 -        0x115bb6fff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x115bd4000 -        0x115c00fff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x115c18000 -        0x115c63fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x115c8c000 -        0x115cdbfff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x115d17000 -        0x115d6eff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
           0x115d7e000 -        0x115d82ff7  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
           0x115d8a000 -        0x115d8dfff  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
           0x115d99000 -        0x115daefff  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
           0x115dd0000 -        0x115dedff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x115e00000 -        0x115e02ff7  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
           0x115e0b000 -        0x115e0dfff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x115e15000 -        0x115ea9ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x115eff000 -        0x115f0aff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
           0x115f16000 -        0x115f6fff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x115fb7000 -        0x115fd2ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
           0x115fee000 -        0x1160f0fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
           0x11615d000 -        0x1163defff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
           0x116408000 -        0x116408fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
           0x116411000 -        0x116481fff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
           0x1164d7000 -        0x1164e2ff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
           0x1164f4000 -        0x116505ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
           0x116511000 -        0x116548ff7  libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
           0x11655e000 -        0x116631ff7  com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x116699000 -        0x1166e1fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
           0x1166f7000 -        0x116737ff7  com.apple.MediaKit (14

  • TS3212 Still unable to download itunes to my pc. Tried with IE, Mozilla and Google Chrome. Keep getting an error message :"Windows cannot open itunes.exe the file is corrupt contact support."previous itunes files were wipped out by "disk cleaner." Any hel

    Still unable to download itunes to my pc. Tried with IE, Mozilla and Google Chrome. Keep getting an error message :"Windows cannot open itunes.exe the file is corrupt contact support."previous itunes files were wipped out by "disk cleaner." Any help??
    Please!
    Thanks!

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

  • Message received when openning the  Adobe Premiere Elements 12 "Not possible to initialize on-line services" What do I have to do?

    Hello,
    How can I fix this problem?
    Message received when openning the  Adobe Premiere Elements 12 "Not possible to initialize on-line services" What do I have to do?
    Thanks in advence,
    FL

    FLOureiro
    What computer operating system is your Premiere Elements 12 running on? Have you updated 12 to 12.1 Update using an opened project's Help Menu/Update? If not, please do so.
    For your immediate issue, have you update the Online Services in preferences?
    Where are you in the program when you get the message "Not possible to initialize on-line services".
    Are you in a country outside of the USA?
    There certain online services that are just not available outside the USA.
    Please review and consider and then, based on your details, we will consider what next.
    Thank you.
    ATR

  • Is there a way to filter a drop down list by using the result main data display from"GetUserProfileByName" when open the form.

    Hi 
    Is there a way to filter a drop down list by using the result main data display from"GetUserProfileByName" when open the form?
    The second source has a huge list of company names that can be narrrow by email work. 
    background:SP 2010 and Infopath 2010
    CRISTINA&amp MICROSOFT Forum

    I'm not sure if I understood your question clearly but here is a good resource on how to get attributes from "GetUserProfileByName" web services:
    http://blog.mangroveweb.com/pre-populating-an-infopath-from-with-mysql-data-using-a-net-web-service/using-sharepoints-getuserprofilebyname-web-service-to-retrieve-ad-account-information/
    Regarding filtering dropdown list then this could be done by applying form on-load rules. 
    Hope this helps

  • Error When Opening Any Form

    Hi All.,
    Im facing some issue while opening any form..its stuck in below mention file while opening any form i tried all the ways still im not able to fix the issue.
    Application:11.5.10.2
    OS-----------HP-UX
    DB-----------10.2.0.4.0
    File Name:
    oracle/forms/ui/FLWTextArea
    Work Around
    Relink the all the files
    Regenerated the jar files
    Regenerated the forms
    f60gen help=y
    Forms 6.0 (Form Compiler) Version 6.0.8.28.0 (Production)
    Forms 6.0 (Form Compiler): Release - Production
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    PL/SQL Version 8.0.6.3.0 (Production)
    Oracle Procedure Builder V6.0.8.21.0 Build #0 - Production
    Oracle Virtual Graphics System Version 6.0.5.39.0 (Production)
    Oracle Multimedia Version 6.0.8.25.0 (Production)
    Oracle Tools Integration Version 6.0.8.17.0 (Production)
    Oracle Tools Common Area Version 6.0.5.32.0
    Oracle CORE Version 4.0.6.0.0 - Production
    Metalink Doc id
    java.lang.NoClassDefFoundError: oracle/forms/ui/FLWTextArea Error When Opening Any Form [ID 1219663.1]

    Thanks,
    From the below doc id we are currently in patch set 19 but im not able see that in ad_bugs.,
    Note: 232313.1 - Information on Previous Versions of Developer 6i Patchsets
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=232313.1
    Here is an example:
    If you have Forms: 6.0.8.27.x --> You are on Developer 6i Patch 18
    If you have Forms: 6.0.8.26.x --> You are on Developer 6i Patch 17
    If you have Forms: 6.0.8.25.x --> You are on Developer 6i Patch 16
    If you have Forms: 6.0.8.24.x --> You are on Developer 6i Patch 15
    SQL> select bug_number from ad_bugs where bug_number='&BUG_NUMBER';
    Enter value for bug_number: 9935935
    old 1: select bug_number from ad_bugs where bug_number='&BUG_NUMBER'
    new 1: select bug_number from ad_bugs where bug_number='9935935'
    no rows selected
    SQL>

  • "Internal Error" Message from Windows when opening Reader 9 files

    When I attempt to open an Acrobat file using Reader 9.0 I get a window with a message "Windows has detected an internal eror.Adobe 9.0 has quit." I am using Vista ( which I happen to detest). There is no error number. What can I do?

    yes I do but the error message does not ask me for admin permission. All it says is what I quoted above in #2. I have since even attempted to uninstall Reader 9 and guess what? It will not allow it to continue, error message 1606. Could not access network location. %APPDATA%\ - whatever the heck that means. Again, it would appear logical that the term "access" would indicate admin pemission required. It (windows) did ask me and I did say continue, but it then did not do anything, just keeps returning the above message. These Catch 22 situations with computers seem to congolmerate on my own computer. Directs me around in circles with no results possible.

  • How to re-open a message window when it is behind the main window of Thunderbird?

    For writing a new message Thunderbird opens new window. Activating main window of Thunderbird hides this new window with new message behind Thunderbird.
    On my Mac how do I re-activate this new message window?
    I know of using Mission Control, but would like an easy way. Does a quick way exist? cmd-tab does not do the job. Maybe some other hotkey?
    Thanks

    Maybe alt+tab; this works in Windows and Linux. Both these OSes offer tools via the task bar to bring selected windows to the foreground. I really think this is a question about how to drive a Mac. ;-)
    You could also minimize or move the offending window to reveal the other one trapped behind it.

  • Save As Dialog Not Showing when opening pdf from Outlook 2010

    Hi
    I have recently had to change the default documents folder on a windows 7 machine (Right Click Documents, properties,  include folder, set save location). Since this change, when opening an attached pdf document in outlook 2010 and viewing with adobe reader, if i click Save as from the file menu, no os dialog appears and therefore user cannot choose a place to save the document.
    As a work around the user can right click the attachment save the docment to a location, once opened, ther save as dialog is usable.
    I have uninstalled and re-installed reader to the laterst version, but with no luck.
    Any ideas?
    Jason Congerton

    This looks like a new behavior of Outlook 2010 and isn't specific to PDFs. You will need to "save as" the document. There is a thread at Microsoft forums about this with some possible workarounds:
    http://social.technet.microsoft.com/Forums/en-US/outlook/thread/927d678d-b55b-4732-93cb-f1 3ed1dacf96/

  • Error message when opening infopath form

    I have a browser enabled infopath form loading in a Form webPart in a webpart page with another connecting web part. When users try to open the form they get:
    "An error occurred querying a data source"
    An entry has been added to the Windows event log of the server.
    Log ID:7893
    Correlation ID:42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    After following the correlation ID in SharePoint log file I found these entries:
    06/02/2012 21:40:42.51 w3wp.exe (0x19F8)                       
    0x1970  SharePoint Foundation        
            Monitoring                   
         b4ly               
    High       Leaving Monitored Scope (PostResolveRequestCacheHandler). Execution Time=1456.48337845783               
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    06/02/2012 21:40:42.59 w3wp.exe (0x19F8)                      
    0x1970  SharePoint Foundation        
            General                      
             72nz               
    Medium              
    Videntityinfo::isFreshToken reported failure.    
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    06/02/2012 21:40:43.37 w3wp.exe (0x19F8)    
    0x1970  SharePoint Foundation        
            Monitoring                   
         b4ly               
    High       Leaving Monitored Scope (Activate web part connections). Execution Time=778.345021899529 
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    06/02/2012 21:40:54.15 w3wp.exe (0x19F8)                      
    0x1970  InfoPath Forms Services      
            Runtime - Data Connections   
    7tfk        Medium 
    Data adapter failed during OnLoad: The operation has timed out              
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    06/02/2012 21:40:54.15 w3wp.exe (0x19F8)                      
    0x1970  InfoPath Forms Services      
            Runtime - Data Connections   
    eq8m    Warning              
    The following data connection (0#.w|abc\test1) has timed out(User: BA Forms, Form Name: , IP:
    http://XXXX/new.aspx?ItemId=18, Request: urn:schemas-microsoft-com:office:infopath:BA-Forms:-myXSD-2012-02-15T04-39-46, Form ID: (null)).               
    42ed9f77-2bb5-4164-9c71-d8c13fadecb6
    This error just happens in the first load and if user reload the form there is no error.
    This problem happens if for a while around 30 min no one open the form.
    The weird thing is all data connections seem work fine because all fields can get their data from web service call.
    Does anybody knows how I can get rid of this error message in the first time of loading the from?
    Thanks,

    i receive error in uls
    02/04/2015 14:07:01.44  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     nasq Medium   Entering monitored scope (Request (GET:http://drims.dri.local:80/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis&ClientInstalled=true&Source=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1)) 
    02/04/2015 14:07:01.44  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Name=Request (GET:http://drims.dri.local:80/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis&ClientInstalled=true&Source=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1) 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.44  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Site=/ 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        5vax Verbose  FormServerPage BeginProcessRequest:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqk Verbose  GlobalStorage.Enter: New context - FormControl   Total contexts - 1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index IsConversionInProgress value type Boolean. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        57zo Verbose  XmlFormView: Entering OnInit 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqm Verbose  GlobalStorage.Leave: Old context - FormControl   Total contexts after
    Leave - 0 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        57zq Verbose  XmlFormView: Leaving OnInit 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        5vat Verbose  FormServerPage OnInit Enter:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqk Verbose  GlobalStorage.Enter: New context - {F888E1A1-20CA-470d-A2F4-498A9ECD1C67}  
    Total contexts - 1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqm Verbose  GlobalStorage.Leave: Old context - {F888E1A1-20CA-470d-A2F4-498A9ECD1C67}  
    Total contexts after Leave - 0 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index IsConversionInProgress value type Boolean. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index SiteAndWebCache value type SiteAndWebCache. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        adv7 Verbose  XmlFormView: Entering OnDataBinding 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqk Verbose  GlobalStorage.Enter: New context - FormControl   Total contexts - 1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        5vav Verbose  FormServerPage CreateChildControls Enter:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        5vaw Verbose  FormServerPage CreateChildControls Leave:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.45  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8geg Verbose  MetaInformationByUrl:scanned 63 of 63 formTemplates for URL=http://drims.dri.local/popis/Forms/template.xsn,
    fileName= template.xsn, matching=NONE 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        wdqk Verbose  GlobalStorage.Enter: New context - FormControl   Total contexts - 2 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index CultureData value type RequestCultureData. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        0000 Verbose  XmlFormView: ShouldDisableFirstRequestOptimization for form:IW:/POPIS/FORMS/TEMPLATE.XSN,
    tag:K6W976CD4PLNJLrTYJOckzrMg3etJQ3uFbc8sT1x138 first request optimized:True on page:/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis&ClientInstalled=true&Source=http%3A%2F%2Fdrims%2Edri%2Elocal%2Fpopis%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1
    . 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - State Service        8ykk Verbose  KEY: b967a19babe048c7bc0180dbd0a52d6e_1d793db6afc2409c88f1c180994563ae 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index EditingSessionId value type String. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8ykj Verbose  Creating document with editingSessionId: b967a19babe048c7bc0180dbd0a52d6e_1d793db6afc2409c88f1c180994563ae 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index TimeZoneId value type UInt16. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index XmlForm value type XmlFormHost. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime                        8z3p Verbose  Calling GlobalStorage.SetItem with index FormState value type FormStateBag. 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Conversion and Deployment      93wz Verbose  Recursion: Entering schema validation. FormTemplate: urn:schemas-microsoft-com:office:infopath:popis:-myXSD-2015-01-21T07-22-46 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.47  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Conversion and Deployment      93x0 Verbose  Recursion: Leaving schema validation. FormTemplate: urn:schemas-microsoft-com:office:infopath:popis:-myXSD-2015-01-21T07-22-46 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.91  w3wp.exe (0x15C0)                        0x1764 Secure Store Service         
     Secure Store                   elo9 Medium   Entering SecureStoreProviderFactory.GetDefaultSecureStoreProviderName 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.91  w3wp.exe (0x15C0)                        0x1764 Secure Store Service         
     Secure Store                   elp1 Medium   Leaving SecureStoreProviderFactory.GetDefaultSecureStoreProviderName 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:01.91  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Topology                       e5mc Medium   WcfSendRequest: RemoteAddress: 'https://vm-drims1:32844/9efec30f2e474b37a620610e7ffef5b3/SecureStoreService.svc/https'
    Channel: 'Microsoft.Office.SecureStoreService.Server.ISecureStoreServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/2009/06/securestoreservice/ISecureStoreServiceApplication/GetUserApplication' MessageId: 'urn:uuid:a65080f1-c38a-416f-a234-ab364197d7e1' 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.01  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (ExecuteWcfOperation:http://schemas.microsoft.com/sharepoint/2009/06/securestoreservice/ISecureStoreServiceApplication/GetUserApplication).
    Execution Time=112,764052414483 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.01  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (ExecuteOnChannel: GetApplication). Execution Time=113,705233486379 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.01  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Topology                       e5mc Medium   WcfSendRequest: RemoteAddress: 'https://vm-drims2:32844/9efec30f2e474b37a620610e7ffef5b3/SecureStoreService.svc/https'
    Channel: 'Microsoft.Office.SecureStoreService.Server.ISecureStoreServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/2009/06/securestoreservice/ISecureStoreServiceApplication/GetCredentials' MessageId: 'urn:uuid:de38ae0e-e451-40ca-8ba5-7f2eb0c1d730' 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (ExecuteWcfOperation:http://schemas.microsoft.com/sharepoint/2009/06/securestoreservice/ISecureStoreServiceApplication/GetCredentials).
    Execution Time=107,606972394536 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (ExecuteOnChannel: GetCredentials). Execution Time=109,635721858504 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     6wdh Verbose  WebServiceQuery: Begin soln=urn:schemas-microsoft-com:office:infopath:popis:-myXSD-2015-01-21T07-22-46 adapter=current user 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     6qh7 Verbose  Web Request: Begins url=http://drims.dri.local/_vti_bin/userprofileservice.asmx action=http://microsoft.com/webservices/SharePointPortalServer/UserProfileService/GetUserProfileByName 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zc Verbose  Web Request:  Preparing SOAP message 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zd Verbose  Web Request:  Preparing WebRequest 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     1dhr Verbose  Web Request:  Writing request stream 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:02.12  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zf Verbose  Web Request:  Getting response 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:04.12  w3wp.exe (0x15C0)                        0x1914 SharePoint Foundation        
     Topology                       e5mc Medium   WcfSendRequest: RemoteAddress: 'http://vm-drims:32843/9a369b2ae1ce44f88d48e93d62e5f772/MetadataWebService.svc'
    Channel: 'Microsoft.SharePoint.Taxonomy.IMetadataWebServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:0346e221-d65e-4b5c-8be9-46f3d7f225b1' 
    02/04/2015 14:07:04.84  w3wp.exe (0x15C0)                        0x1838 SharePoint Portal Server       Runtime                      
     8gp7 Medium   Topology cache updated. (AppDomain: /LM/W3SVC/1229331659/ROOT-1-130675275570041108) 
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zg Verbose  Web Request:  WebException Caught 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zi Verbose  Web Request:  Copying response to DOMs 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     13zi Verbose  Web Request:  Copying response to DOMs 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     6qh8 Verbose  Web Request: Ends url=http://drims.dri.local/_vti_bin/userprofileservice.asmx action=http://microsoft.com/webservices/SharePointPortalServer/UserProfileService/GetUserProfileByName 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     6wdi Verbose  WebServiceQuery: End 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     7tfk Medium   Data adapter failed during OnLoad: The operation has timed out 9823355e-8a6c-4741-971e-a9e064249485
    02/04/2015 14:07:12.33  w3wp.exe (0x15C0)                        0x1764 InfoPath Forms Services      
     Runtime - Data Connections     eq8m Warning  The following data connection (DRI\gljubic) has timed out(User: popis, Form Name: , IP:
    http://drims.dri.local/_layouts/FormServer.aspx?XsnLocation=http://drims.dri.local/popis/Forms/template.xsn&SaveLocation=http://drims.dri.local/popis&ClientInstalled=true&Source=http://drims.dri.local/popis/Forms/AllItems.aspx&DefaultItemOpen=1,
    Request: urn:schemas-microsoft-com:office:infopath:popis:-myXSD-2015-01-21T07-22-46, Form ID: (null)). 9823355e-8a6c-4741-971e-a9e064249485
    i used your solution for this my problem but nothing.
    plz help me
    i changed settings for infopath forms service, but nothing
    what i do?

  • VS 2013 SP4 crashes when opening a Form with large Numbers of elements on Windows 8 32-Bit

    Hi, I have made a C#-Project, which is fully functional but opening the main form causes VS 2013 Sp4 to crash. I can build the solution an open all Files. Only when i open the form in Designer, VS crashes and want to restart. There are no Log-Entrys. Only
    in the event-log there is an Event-Id 1000 with code 0x0000409. I can open the form on two other Windows 8.1 64-Bit machines without Problems. Looking on "free Mem" while opening in Resourcemonitor it crashes when at least are around 190 MB free.
    How can I investigate this Problem?

    Hi Frank,
    If the same solution works well in other machine, I doubt that it is your Environment issue.
    Of course, to make sure that it is not the project files issue, please create a blank solution, and then add all project files to this new solution, test it again.
    Maybe you could delete .suo file in your solution folder, and then re-open your .sln file, test it again.
    If there are many projects in the same solution, I suggest you create different solutions for them, test it again.
    But as your previous description, I doubt that it would be related to your VS/Windows Environment.
    Please disable all add-ins in your VS, maybe you could run your VS in safe mode, test it again.
    http://msdn.microsoft.com/en-us/library/ms241278.aspx
    To make sure that it is not the account issue, please run your VS as the admin.
    In addition, the most important issue is that we have make sure that it is not the Window Configuration issue.
    For example, when you run your windows for a long time, or your task manager is so busy, or other processes take high CPU and so on, I think they will impact your VS or other software performance.
    Please restart your PC, close other processes which take high memory, please also close third party tools like firewall or the Anti-virus. If you open a few VS Editors, just close them, and then just open one, test it again.
    Best Regards,
    Jack 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • I'm scared I (iTunes) might delete everything on my iPod!

    I recently had to restore my computer so right before I did I enabled the iPod for disk use to save all my songs and pictures. I then re-installed the iPod software and iTunes (4.7.1) using the cd that came with the iPod. So now there is nothing in m

  • Footer problem

    I am using dreamweaver cs4 this is my CSS style sheet                                                            body {         margin:  0px;         padding: 0px;         background: some picture  repeat x; #header {         margin: 0 auto;        

  • System with only Display Access

    Hi, I have the following question, is it possible to configure a system copy with only Display access (at a sap level or Oracle Display mode, et cetera) without creating restrictions in an authorization level? Kind regards, Luis

  • Can you get a new 5G Ipod Touch by taking your old 4G ipod touch and paying a fee ?

    I am form argentina, there is no apple retail shops here, only authorised distribuitors, so i cant have it replaced here. i have somebody traveling to the states next month so ill ask him to take the ipod touch 4G witch works perfectly but has a shat

  • ITunes Match on Apple TV is a debacle

    I've been trying to listen to music on my Apple TV using iTunes Match since the day I set it up and it's impossible. It is broken. Also, these "discussion" forums are a joke.