Nepal Export Process from India

Hi All,
I want to map Exports to Nepal from India, In this case Excise duty is applicable and I want excise document to adopt Export number range.
I suppose if I use - user exit - J_1I7_REDETERMINE_INVOICE_TYPE and define Nepal as domestic then it may take domestic excise number range.
Can some help me out with process config tips.
Thx in advance.

Hi
Dont Worry,
Export Sales means you can export products from 1 country to another country either nepal or USA, difference is tax part
If USA Excise values is Statistical then only it flows to excise invoice and ARE1
in you case Nepal is having Excise that means dont put excise as a statistical do it as such  a normal sales process but currency is different
In this case nt required to change userexit level, Pl correct me if am wrong...
Hari Mandav

Similar Messages

  • Export Process from BPM Stuido 10g

    The process can be exported from Studio manually.
    Does anyone know how to write the code (PBL or Java) to export the process?
    Or the API of connecting BPM Studio.
    Sincerely

    I'm not too sure why you would need to do all that, but it would involve quite a bit of custom work.....
    For the export itself, just zip the directory (without build and system directories) and rename to .exp I've not tried it this way, but it should work.
    Several of the components aren't going to work when renamed. They store both a 'name' and an 'id'. Process Ids cannot be changed easily (I don't recommend it).
    From what you're describing, why don't you just use Studio and the Process Admin... thats what it was intended to do?
    If its just the deployment, you can use the Ant scripts provided, and use them to deploy and publish a project to standalone.
    Hope this helps...

  • Exports From India?

    Hi Experts!
    Can anybody guide me about the documents can be generated in SAP for exports process from India?
    Thanks,
    Amol

    Dear Amol
    Following are the export documents that would be used by the exporters in India.
    -  Invoice (Proforma / Commercial)
    -  Packing List
    -  ARE-1
    -  GSP Form
    -  DEEC Declaration in case of Advance Licence export shipment
    -  Bank Covering Letter (like Hundi used in domestic)
    -  Bill of Lading
    -  Shipping Bill
    The Bill of Lading would be released by the Liner who owns the Vessel (Ship) and Shipping Bill would be released by the clearing agent.
    From SAP point of view, it is enough if you concentrate on all excepting the last two.
    thanks
    G. Lakshmipathi

  • How to export deployed SOA process from 10.1.3.4 and to use in JDeveloper

    I have a situation where I need to export deployed SOA process from 10.1.3.4 in order to make some changes since the source code is not available. If I export process from BPEL console in 10.1.3.4, I cannot use that in JDeveloper. Will anyone suggest me how to export the deployed process from 10.1.3.4 and then to import in JDeveloper 10.1.3.4. thanks!
    Regards,
    Suneel Jakka

    As far as i remember, i think you have option to export the deployed project as .zip file.
    When you deploy using jdev / ant script, the compiled code will be exported as .jar file into the server and in the server context path, the .jar file will be extracted.
    When you export from the server, it will zip the extracted content from the context path.
    So you need to create a empty project with that name and manually copy paste the project folders into your jdeveloper work space, then compile.
    Hope this helps !!
    *7) Give points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question.*
    Thanks,
    Vijay

  • Export Business Process in India Scenarios

    Hi ASAP,
    Can any ASAP guru gives me the Export Business Process in India Scenarios including ARE Doc. transaction.
    With Regards & Thanks
    Manoj Kumar

    Dear ASAP,
    The information which is given in CIN En Help, I am not able to understand, If you can give me the Process Flow as like given below for both Bonded and Un-Boned with ARE doc. creation, it will be much more help.
    Process Flow for Standard Outgoing Mat. with Excise.
           1.    creates a sales order,
           2.   creates a delivery,and post  the goods issue.
           3.   create commercial invoice with ref. of the delivery
           4.   Creates an excise invoice from the invoice.
    With Worm Reagrds
    Manoj

  • Abt Export process & forms

    Dear SD gurus,
    I wan tto know in detail abt export process like. what forms used in exports.
    process like which documents involved in export e.g bill of lading ct3 form etc.
    wht is deemed export direct export.
    what is export under bond.
    want to abt accounting entries after billing for export.
    hope i will get detail info abt the same.
    Regards
    dere is no one who can answer my queries.
    I hope lot from this forum
    Edited by: Sap Sd on May 7, 2008 2:25 PM

    hi,
    Physical export : Product exported out side the country . Sold against LC ( letter of credit ) . This can be called as Direct Export also.
             Documents required to be prepared while physical export  : Bill of lading , Cargo   manifesto ,  Certificate of qty and certificate of origion .
    This can be with bond or without bond. If you export under bond , duty will be forgone , means , you will be creating ARE otherwise you need to pay duty .
    Deemed export : Sale to the customer who is going to export the product after reprocessing in his plant . Here customer is within india.
             CT3 : is issued in case of sale to EOU ( Export Oriented Unit ) factories.
             CT2 : is issued in case of non - EOU customer ,but he is going to reprocess the product and export .This can be with or without Advance authorisation .
    Hope , tried to explain in short the definitions and basic concepts. If u need in detail , i agree with Mr.Lakshmipathi.
    Do post if any specific doubt exists.
    saravanan

  • How to export data from a Dynpro table to Excel file?

    Hi
    Here I go again. I read the post <b>Looking for example to export data from a DynPro table to Excel file</b> and put the code lines into a Web Dynpro Project where we need to export a dynpro table to Excel file but exactly at line 23 it doesn't recognize <b>workBook = new HSSFWorkbook();</b>
    1     //Declare this in the end between the Begin others block.
    2     
    3     private FileOutputStream out = null;
    4     private HSSFWorkbook workBook = null;
    5     private HSSFSheet hsSheet = null;
    6     private HSSFRow row = null;
    7     private HSSFCell cell = null;
    8     private HSSFCellStyle cs = null;
    9     private HSSFCellStyle cs1 = null;
    10     private HSSFCellStyle cs2 = null;
    11     private HSSFDataFormat dataFormat = null;
    12     private HSSFFont f = null;
    13     private HSSFFont f1 = null;
    14     
    15     //Code to create the Excel.
    16     
    17     public void onActionExportToExcel(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    18     {
    19     //@@begin onActionExportToExcel(ServerEvent)
    20     try
    21     {
    22     out = new FileOutputStream("C:/mydirectory/myfiles/testexcel.xls");
    23     workBook = new HSSFWorkbook();
    24     hsSheet = workBook.createSheet("My Sheet");
    25     cs = workBook.createCellStyle();
    26     cs1 = workBook.createCellStyle();
    27     cs2 = workBook.createCellStyle();
    28     dataFormat = workBook.createDataFormat();
    29     f = workBook.createFont();
    30     f1 = workBook.createFont();
    31     f.setFontHeightInPoints((short) 12);
    32     // make it blue
    33     f.setColor( (short)HSSFFont.COLOR_NORMAL );
    34     // make it bold
    35     // arial is the default font
    36     f.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    37     
    38     // set font 2 to 10 point type
    39     f1.setFontHeightInPoints((short) 10);
    40     // make it red
    41     f1.setColor( (short)HSSFFont.COLOR_RED );
    42     // make it bold
    43     f1.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    44     f1.setStrikeout(true);
    45     cs.setFont(f);
    46     cs.setDataFormat(dataFormat.getFormat("#,##0.0"));
    47     
    48     // set a thick border
    49     cs2.setBorderBottom(cs2.BORDER_THICK);
    50     
    51     // fill w fg fill color
    52     cs2.setFillPattern((short) HSSFCellStyle.SOLID_FOREGROUND);
    53     cs2.setFillBackgroundColor((short)HSSFCellStyle.SOLID_FOREGROUND);
    54     // set the cell format to text see HSSFDataFormat for a full list
    55     cs2.setDataFormat(HSSFDataFormat.getBuiltinFormat("text"));
    56     cs2.setFont(f1);
    57     cs2.setLocked(true);
    58     cs2.setWrapText(true);
    59     row = hsSheet.createRow(0);
    60     hsSheet.createFreezePane(0,1,1,1);
    61     for(int i=1; i<10;i++)
    62     {
    63     cell = row.createCell((short)i);
    64     cell.setCellValue("Excel Column "+i);
    65     cell.setCellStyle(cs2);
    66     }
    67     workBook.write(out);
    68     out.close();
    69     
    70     //Read the file that was created.
    71     
    72     FileInputStream fin = new FileInputStream("C:/mydirectory/myfiles/testexcel.xls");
    73     byte b[] = new byte[fin.available()];
    74     fin.read(b,0,b.length);
    75     fin.close();
    76     
    77     wdContext.currentContextElement().setDataContent(b);
    78     }
    79     catch(Exception e)
    80     {
    81     wdComponentAPI.getComponent().getMessageManager().reportException("Exception while reading file "+e,true);
    82     }
    83     //@@end
    84     }
    I don't know why this happen? Any information I will appreciate it.
    Thanks in advance!!!
    Tokio Franco Chang

    After test the code lines appears this error stacktrace:
    [code]
    java.lang.NoClassDefFoundError: org/apache/poi/hssf/usermodel/HSSFWorkbook
         at com.sap.tc.webdynpro.progmodel.api.iwdcustomevent.ExportToExcel.onActionAct1(ExportToExcel.java:232)
         at com.sap.tc.webdynpro.progmodel.api.iwdcustomevent.wdp.InternalExportToExcel.wdInvokeEventHandler(InternalExportToExcel.java:147)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleAction(WebDynproMainTask.java:101)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:304)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:649)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:252)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:392)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:345)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:323)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:865)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:240)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)
    Thanks in advance!!!
    Tokio Franco Chang
    [/code]

  • Can't export photos from iPhoto

    MacBook Pro OS X 10.9.4 and iPhoto 8.1.2
    I'm trying to export photos from my iPhoto to a folder on my desktop - I've always been able to do this by just dragging and dropping the thumbnail from iphoto onto my desktop, but that no longer works. When I try to drag/drop, I get a little window that says "Preparing to copy to desktop" and a scrolling status bar that will scroll infinitely without any progress. I can't cancel this process, and have to either restart my computer or kill all Finder operations in Terminal to stop it.
    When I try to File > Export, iPhoto crashes. Error message is below. Any ideas on how to solve this problem?
    Process:         iPhoto [9077]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         8.1.2 (8.1.2)
    Build Info:      iPhotoProject-4240000~8
    Code Type:       X86 (Native)
    Parent Process:  launchd [163]
    Responsible:     iPhoto [9077]
    User ID:         501
    Date/Time:       2014-08-06 19:53:36.460 -0500
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  510DE911-F31F-C31B-48DF-3D2222D28AF7
    Crashed Thread:  21
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    Performing @selector(ok:) from sender NSButton 0x11e3ad50
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib             0x983f673f strlen + 63
    1   libicucore.A.dylib             0x9a9d9d99 0x9a92a000 + 720281
    2   libicucore.A.dylib             0x9a92d373 ures_getByKeyWithFallback + 1068
    3   libicucore.A.dylib             0x9aa236e2 0x9a92a000 + 1021666
    4   libicucore.A.dylib             0x9a946c2b icu::DateFormatSymbols::initializeData(icu::Locale const&, char const*, UErrorCode&, signed char) + 4107
    5   libicucore.A.dylib             0x9a945c18 icu::DateFormatSymbols::DateFormatSymbols(icu::Locale const&, char const*, UErrorCode&) + 100
    6   libicucore.A.dylib             0x9a945b94 icu::SimpleDateFormat::initializeSymbols(icu::Locale const&, icu::Calendar*, UErrorCode&) + 90
    7   libicucore.A.dylib             0x9a94fb73 icu::SimpleDateFormat::adoptCalendar(icu::Calendar*) + 95
    8   libicucore.A.dylib             0x9a94fb0c icu::DateFormat::setCalendar(icu::Calendar const&) + 36
    9   com.apple.CoreFoundation       0x98cb2244 __cficu_udat_setCalendar + 36
    10  com.apple.CoreFoundation       0x98cafb9a __ResetUDateFormat + 2954
    11  com.apple.CoreFoundation       0x98caefcb CFDateFormatterCreate + 347
    12  com.apple.CoreFoundation       0x98dcccfa -[CFPrefsCompatibilitySource alreadylocked_copyValueForKey:] + 2362
    13  com.apple.CoreFoundation       0x98c4f902 -[CFPrefsSource copyValueForKey:] + 82
    14  com.apple.CoreFoundation       0x98c4f9c3 -[CFPrefsSearchListSource alreadylocked_copyValueForKey:] + 163
    15  com.apple.CoreFoundation       0x98c4f902 -[CFPrefsSource copyValueForKey:] + 82
    16  com.apple.CoreFoundation       0x98c4f89c __CFPreferencesCopyAppValue_block_invoke + 44
    17  com.apple.CoreFoundation       0x98c49022 +[CFPrefsSearchListSource withSearchListForIdentifier:perform:] + 978
    18  com.apple.CoreFoundation       0x98c48c16 CFPreferencesCopyAppValue + 166
    19  com.apple.Foundation           0x959f2d8a -[NSUserDefaults(NSUserDefaults) objectForKey:] + 34
    20  com.apple.iPhoto               0x001c1087 0x1000 + 1835143
    21  com.apple.Foundation           0x959f9732 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke + 49
    22  com.apple.CoreFoundation       0x98d3a5a4 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 20
    23  com.apple.CoreFoundation       0x98c1c04b _CFXNotificationPost + 3435
    24  com.apple.Foundation           0x959e821f -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    25  com.apple.Foundation           0x95a166bc -[NSUserDefaults(NSUserDefaults) setObject:forKey:] + 106
    26  com.apple.AppKit               0x96eef989 +[NSSavePanel(NSOpenSaveDefaults) _storeFrameSize:withKey:] + 163
    27  com.apple.AppKit               0x96b26985 -[NSSavePanel _storeExpandedFrameSize] + 219
    28  com.apple.AppKit               0x96b313a6 -[NSSavePanel(NSSavePanelLayout) saveFrameUsingName:] + 33
    29  com.apple.AppKit               0x965a5ce8 -[NSWindow _persistFrame] + 76
    30  com.apple.AppKit               0x965a5313 -[NSWindow _setFrame:updateBorderViewSize:] + 339
    31  com.apple.AppKit               0x965a4cf2 -[NSWindow _oldPlaceWindow:] + 572
    32  com.apple.AppKit               0x965a448c -[NSWindow _setFrameCommon:display:stashSize:] + 1622
    33  com.apple.AppKit               0x965a3e2a -[NSWindow _setFrame:display:allowImplicitAnimation:stashSize:] + 307
    34  com.apple.AppKit               0x965a3cf2 -[NSWindow setFrame:display:] + 79
    35  com.apple.AppKit               0x967eef91 -[NSThemeFrame _setSheet:] + 286
    36  com.apple.AppKit               0x967eed59 -[NSWindow(NSSheets) _setSheet:] + 169
    37  com.apple.AppKit               0x96b2b889 -[NSSavePanel _didEndSheet:returnCode:contextInfo:] + 333
    38  com.apple.AppKit               0x967f480d -[NSWindow endSheet:returnCode:] + 705
    39  com.apple.AppKit               0x967f4537 -[NSApplication endSheet:returnCode:] + 342
    40  com.apple.AppKit               0x96b2dde8 -[NSSavePanel dismissWindow:] + 131
    41  com.apple.AppKit               0x96b2e214 -[NSSavePanel ok:] + 470
    42  libobjc.A.dylib               0x95eae2af -[NSObject performSelector:withObject:] + 70
    43  com.apple.AppKit               0x966a88a5 -[NSApplication sendAction:to:from:] + 438
    44  com.apple.AppKit               0x966a86ad -[NSControl sendAction:to:] + 102
    45  com.apple.AppKit               0x966f7c7b -[NSCell _sendActionFrom:] + 159
    46  com.apple.AppKit               0x96712f2a -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2465
    47  com.apple.AppKit               0x96712161 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 513
    48  com.apple.AppKit               0x96711785 -[NSControl mouseDown:] + 690
    49  com.apple.AppKit               0x9668da9d -[NSWindow sendEvent:] + 11953
    50  com.apple.AppKit               0x9662991d -[NSApplication sendEvent:] + 4034
    51  com.apple.iPhoto               0x00229973 0x1000 + 2263411
    52  com.apple.AppKit               0x967fa518 -[NSApplication _modalSession:sendEvent:] + 1236
    53  com.apple.AppKit               0x967f9f65 -[NSApplication _realDoModalLoop:peek:] + 965
    54  com.apple.AppKit               0x967f9b8d -[NSApplication _doModalLoop:peek:] + 209
    55  com.apple.AppKit               0x967f8556 -[NSApplication runModalForWindow:] + 235
    56  com.apple.iPhoto               0x000f610d 0x1000 + 1003789
    57  libobjc.A.dylib               0x95eae2af -[NSObject performSelector:withObject:] + 70
    58  com.apple.AppKit               0x966a88a5 -[NSApplication sendAction:to:from:] + 438
    59  com.apple.AppKit               0x966c4c65 -[NSMenuItem _corePerformAction] + 486
    60  com.apple.AppKit               0x966c496a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 163
    61  com.apple.AppKit               0x966c4021 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    62  com.apple.AppKit               0x96717664 -[NSMenu performActionForItemAtIndex:] + 65
    63  com.apple.AppKit               0x96717619 -[NSMenu _internalPerformActionForItemAtIndex:] + 45
    64  com.apple.AppKit               0x967175e4 -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 106
    65  com.apple.AppKit               0x96717434 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 120
    66  com.apple.AppKit               0x966b9da6 NSSLMMenuEventHandler + 816
    67  com.apple.HIToolbox           0x97dd2d89 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    68  com.apple.HIToolbox           0x97c2634f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    69  com.apple.HIToolbox           0x97c25668 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    70  com.apple.HIToolbox           0x97c38811 SendEventToEventTarget + 88
    71  com.apple.HIToolbox           0x97dd2c2e SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 478
    72  com.apple.HIToolbox           0x97c9bef7 SendMenuCommandWithContextAndModifiers + 70
    73  com.apple.HIToolbox           0x97c9bea4 SendMenuItemSelectedEvent + 199
    74  com.apple.HIToolbox           0x97c9bd72 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 134
    75  com.apple.HIToolbox           0x97e2759d MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 722
    76  com.apple.HIToolbox           0x97ca370e _HandleMenuSelection2 + 488
    77  com.apple.HIToolbox           0x97ca3517 _HandleMenuSelection + 53
    78  com.apple.AppKit               0x96627298 _NSHandleCarbonMenuEvent + 358
    79  com.apple.AppKit               0x9647c6a2 _DPSNextEvent + 2459
    80  com.apple.AppKit               0x9647b870 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    81  com.apple.AppKit               0x9646e15c -[NSApplication run] + 727
    82  com.apple.AppKit               0x96456ff8 NSApplicationMain + 1165
    83  com.apple.iPhoto               0x00124b80 0x1000 + 1194880
    84  com.apple.iPhoto               0x00003172 0x1000 + 8562
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x90164992 kevent64 + 10
    1   libdispatch.dylib             0x99c33899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib             0x99c33532 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x901637ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9a5bbd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9a5bc042 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation           0x95a20823 -[NSCondition waitUntilDate:] + 389
    4   com.apple.Foundation           0x95a168b2 -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation           0x95a16792 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x00f56201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore           0x00f44363 -[XTThread run:] + 387
    8   com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    9   com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    10  libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib         0x901637ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9a5bbd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9a5bc042 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation           0x95a20823 -[NSCondition waitUntilDate:] + 389
    4   com.apple.Foundation           0x95a168b2 -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation           0x95a16792 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x00f56201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore           0x00f44363 -[XTThread run:] + 387
    8   com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    9   com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    10  libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib         0x9015ef7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x9015e16c mach_msg + 68
    2   com.apple.CoreFoundation       0x98c82bf9 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x98c821d1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x98c819ea CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x98c8184b CFRunLoopRunInMode + 123
    6   com.apple.Foundation           0x95a542f9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
    7   com.apple.proxtcore           0x00f458a5 -[XTRunLoopThread run:] + 421
    8   com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    9   com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    10  libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib         0x901637ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9a5bbd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9a5bdbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto               0x00506841 0x1000 + 5265473
    4   com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    5   com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    6   libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x90163ace __select + 10
    1   com.apple.CoreFoundation       0x98cd2ae6 __CFSocketManager + 1158
    2   libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    3   libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    4   libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib         0x9015ef7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x9015e16c mach_msg + 68
    2   com.apple.CoreFoundation       0x98c82bf9 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x98c821d1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x98c819ea CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x98c8184b CFRunLoopRunInMode + 123
    6   com.apple.AppKit               0x96625b88 _NSEventThread + 283
    7   libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 8:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x9015ef7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x9015e16c mach_msg + 68
    2   com.apple.CoreFoundation       0x98c82bf9 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x98c821d1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x98c819ea CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x98c8184b CFRunLoopRunInMode + 123
    6   com.apple.Foundation           0x95a52095 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    8   com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib         0x901637ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9a5bbd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9a5bdbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation           0x95a4effa -[NSCondition wait] + 274
    4   com.apple.iPhoto               0x0051242a 0x1000 + 5313578
    5   com.apple.iPhoto               0x00511c48 0x1000 + 5311560
    6   com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    7   com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    8   libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib         0x901637ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9a5bbd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9a5bdbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation           0x95a4effa -[NSCondition wait] + 274
    4   com.apple.iPhoto               0x0051242a 0x1000 + 5313578
    5   com.apple.iPhoto               0x00511c48 0x1000 + 5311560
    6   com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    7   com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    8   libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib         0x901637ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9a5bbd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9a5bdbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto               0x00506841 0x1000 + 5265473
    4   com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    5   com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    6   libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib         0x90164046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9a5badcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9a5becce start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib         0x90164046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9a5badcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9a5becce start_wqthread + 30
    Thread 14:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib         0x90163b76 __semwait_signal + 10
    1   libsystem_c.dylib             0x98470fb7 nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib             0x98470e62 usleep$UNIX2003 + 60
    3   com.apple.AppKit               0x966f0a4c -[NSUIHeartBeat _heartBeatThread:] + 2318
    4   com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    5   com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    6   libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib         0x90164046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9a5badcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9a5becce start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib         0x90164046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9a5badcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9a5becce start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib         0x90164046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9a5badcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9a5becce start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib         0x90164046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9a5badcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9a5becce start_wqthread + 30
    Thread 19:: CVDisplayLink
    0   libsystem_kernel.dylib         0x901637ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9a5bbd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9a5bdbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo           0x942c4540 CVDisplayLink::runIOThread() + 936
    4   com.apple.CoreVideo           0x942c4180 startIOThread(void*) + 159
    5   libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    6   libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    7   libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib         0x90164046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9a5badcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9a5becce start_wqthread + 30
    Thread 21 Crashed:
    0   com.apple.CoreFoundation       0x98c1542d CFBasicHashSetValue + 2813
    1   com.apple.CoreFoundation       0x98c148dd CFDictionarySetValue + 205
    2   com.apple.ImageIO.framework   0x9965a53c dictionaryApplier + 150
    3   com.apple.CoreFoundation       0x98c5d5a5 -[NSDictionary __apply:context:] + 213
    4   com.apple.CoreFoundation       0x98c5175b CFDictionaryApplyFunction + 187
    5   com.apple.ImageIO.framework   0x9965a524 dictionaryApplier + 126
    6   com.apple.CoreFoundation       0x98c5d5a5 -[NSDictionary __apply:context:] + 213
    7   com.apple.CoreFoundation       0x98c5175b CFDictionaryApplyFunction + 187
    8   com.apple.ImageIO.framework   0x9965a524 dictionaryApplier + 126
    9   com.apple.CoreFoundation       0x98c5d5a5 -[NSDictionary __apply:context:] + 213
    10  com.apple.CoreFoundation       0x98c5175b CFDictionaryApplyFunction + 187
    11  com.apple.ImageIO.framework   0x9965a3bc CGImageDestinationAddImageFromSource + 204
    12  com.apple.iPhoto               0x000fb976 0x1000 + 1026422
    13  com.apple.iPhoto               0x000fab9b 0x1000 + 1022875
    14  com.apple.framework.iPhoto.FileExporter2 0x0de73f0b 0xde72000 + 7947
    15  com.apple.iPhoto               0x000f6b29 0x1000 + 1006377
    16  com.apple.Foundation           0x95a51f0e -[NSThread main] + 45
    17  com.apple.Foundation           0x95a51e66 __NSThread__main__ + 1426
    18  libsystem_pthread.dylib       0x9a5b95fb _pthread_body + 144
    19  libsystem_pthread.dylib       0x9a5b9485 _pthread_start + 130
    20  libsystem_pthread.dylib       0x9a5becf2 thread_start + 34
    Thread 21 crashed with X86 Thread State (32-bit):
      eax: 0x13322200  ebx: 0x13366a90  ecx: 0x00000000  edx: 0x00000000
      edi: 0x98c1493e  esi: 0x13366a90  ebp: 0xb09c76f8  esp: 0xb09c76b0
       ss: 0x00000023  efl: 0x00000202  eip: 0x98c1542d   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x11703000
    Logical CPU:     3
    Error Code:      0x00000000
    Trap Number:     3
    Binary Images:
        0x1000 -   0x9fbfee  com.apple.iPhoto (8.1.2 - 8.1.2) <436E886C-E26D-2C7D-9745-252829318EFE> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xb31000 -   0xb59fff  com.apple.DiscRecordingUI (8.0 - 8000.4.6) <5DA1C568-EB47-32A6-8901-087C125DAC54> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
      0xb72000 -   0xb7cfff  com.apple.UpgradeChecker (1.0 - 1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
      0xb86000 -   0xc0cff7  com.apple.iLifeMediaBrowser (2.8.3 - 637.9) <97183B08-6857-394C-91BC-06F3EBB3DAAE> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0xc53000 -   0xcefffc  com.apple.MobileMe (8 - 1.0) <47DF6C20-78C5-1AA2-1D64-274EAE522D93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0xd51000 -   0xd51fff  com.apple.MessageFramework (7.0 - 1602) <5C6C48D4-69AB-3897-B255-9887F1777D68> /System/Library/Frameworks/Message.framework/Versions/B/Message
      0xd56000 -   0xd60ff4  com.apple.iChat.InstantMessage (8.0 - 4203) <CD505866-C660-3BCD-85D1-64512A9BD60D> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
      0xd6b000 -   0xd6bfff +eOkaoCom.dylib (1) <17ADB0F4-BF83-0B0B-5293-F843F1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
      0xd6f000 -   0xda2fe7 +eOkaoDt.dylib (1) <673BD0C5-FAC4-ABB7-B55E-FD8A75E4759D> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
      0xda8000 -   0xf0efff +eOkaoFr.dylib (1) <684982FE-55E4-174D-9CF3-DA4319BD57F9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
      0xf12000 -   0xf36ff2 +eOkaoPt.dylib (1) <E2ED8DE8-7A2D-8309-3CB5-2E87F135A8A8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
      0xf3d000 -   0xf84ff7  com.apple.proxtcore (1.0.0 - 1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
      0xfc8000 -   0xfc8ff8  com.apple.iLifeSlideshow (1.1 - 452) <65FE31A8-C4C3-2069-9B2C-CB00BB168CFE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
      0xfcc000 -  0x104cfef  com.apple.NetServices.NetServices (8.0 - 8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x10ae000 -  0x10aefff  com.apple.AppleAppSupport (1.5 - 1.5) <A543F012-DA98-33F9-91E7-664DCC2195F2> /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x10b2000 -  0x10dafff  com.apple.iLifeSlideshowCore (1.1 - 134) <6B3AA83C-6198-9C49-7AFB-619E5DC2C756> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x10f4000 -  0x1204fe3  com.apple.iLifeSlideshowProducer (1.1 - 382) <BBC8AFE4-95A6-4993-C10C-FF8AAC006928> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x1277000 -  0x1380ff3  com.apple.iLifeSlideshowRenderer (1.1 - 375) <F8723883-3C5C-734F-CD08-709E4079B2C5> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x13f4000 -  0x13fffff  com.apple.iLifeSlideshowExporter (1.1 - 159) <A378AE26-9698-2327-CDAA-D2AF255DE5BE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x1408000 -  0x1432fff  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <30C0DC77-EDFD-36B3-AB1C-A520B472A869> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1445000 -  0x144dfe7  com.apple.NetServices.BDControl (1.0.5 - 1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x1459000 -  0x145cfff  com.apple.NetServices.BDRuleEngine (1.0.2 - 1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x3100000 -  0x311fffb  com.apple.CalendarStore (7.0 - 1366) <DA77EC71-2408-397E-B8BF-2C3291AA2366> /System/Library/Frameworks/CalendarStore.framework/CalendarStore
    0x3131000 -  0x313effe  com.apple.CalendarAgentLink (7.0 - 138.2) <5871C21F-9269-3850-89B1-90653C7C00A0> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x377e000 -  0x3781ffa  libCGXType.A.dylib (599.25.10.1) <FAA0A87E-0E30-3787-88F0-D0CD8F5661A2> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x37c4000 -  0x37ccff7  libCGCMS.A.dylib (599.25.10.1) <0F42B4AF-CAC2-3433-B33F-3AF2C4FFFEDA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x5025000 -  0x5030ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x5091000 -  0x50b2ff7  com.apple.CalendarFoundation (7.0 - 113.3) <DDBB37F3-25F6-3F9F-B3BF-CF0100A99455> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x50e2000 -  0x510aff7  libRIP.A.dylib (599.25.10.1) <D33121E4-3FA6-3CC3-A36F-1C173A335E7F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x5118000 -  0x513dff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x515b000 -  0x5170fff  com.apple.iPhoto.FacebookPublisher (1.0 - 1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x517d000 -  0x518dff3  com.apple.iPhoto.FlickrPublisher (1.0 - 1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x5198000 -  0x519cfff  com.apple.iPhoto.RSSPublisher (1.0 - 1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x9b82000 -  0x9bb3ff7  com.apple.iPhoto.MobileMePublisher (1.0 - 1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0xa407000 -  0xa40dffc  libCGXCoreImage.A.dylib (599.25.10.1) <AC95DFCD-6855-3D2D-8EB2-7B43F4F6C0DE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
    0xa429000 -  0xa429ff3 +cl_kernels (???) <98A233F1-FE21-4234-A3FC-565344779644> cl_kernels
    0xa42b000 -  0xa516ff7  unorm8_bgra.dylib (2.3.58) <4E28B3D7-DC85-3454-8B83-4A81918934DC> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0xa542000 -  0xa628ff7  unorm8_rgba.dylib (2.3.58) <6F4210CB-30E1-3572-AF1E-D38D920B2510> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
    0xc5b2000 -  0xc5bdfff  com.apple.BookService (8.0 - 8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0xc5c7000 -  0xc5d1fff  com.apple.CalendarsService (8.0 - 8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0xc5db000 -  0xc5e5fff  com.apple.CardsService (8.0 - 8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0xc5f6000 -  0xc5f7ffd  com.apple.textencoding.unicode (2.6 - 2.6) <27946D57-CEFB-3EF1-B124-4A39D2621738> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xcf2b000 -  0xcf36fff  com.apple.PrintsService (8.0 - 8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0xcf40000 -  0xcf47ffd  com.apple.iLMBAperturePlugin (2.8.3 - 390.6) <DDFFF52C-985A-3955-94A9-04C84DA79747> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0xcf4e000 -  0xcf4efff  com.apple.iLMBAppDefPlugin (2.8.3 - 390.6) <7763372C-14D5-38D0-ABE3-73278C1C914F> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0xcf53000 -  0xcf5cff0  com.apple.iLMBFinalCutPlugin (2.8.3 - 390.6) <B3808AB0-4473-3895-8F86-49AD3DC384C1> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0xcf63000 -  0xcf64fff  com.apple.iLMBFolderPlugin (2.8.3 - 390.6) <395E3F44-9D7C-3C61-A649-94CA0512D145> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0xcf69000 -  0xcf6cfff  com.apple.iLMBGarageBandPlugin (2.8.3 - 390.6) <A1CC5DC3-C750-3571-9880-4BA1491E28D4> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0xcf72000 -  0xcf7dff9  com.apple.iLMBiMoviePlugin (2.8.3 - 390.6) <CF07907F-EDD5-3966-BE42-B21DC9145032> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0xcf84000 -  0xcf97fff  com.apple.iLMBiPhoto8Plugin (2.8.3 - 390.6) <865F580A-55A6-3317-A554-230B8DA3FB6D> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0xcf9f000 -  0xcfa7ffb  com.apple.iLMBiPhotoPlugin (2.8.3 - 390.6) <768920DB-5144-3D2F-9F76-8AD080B0E200> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0xcfae000 -  0xcfb5ffe  com.apple.iLMBiTunesPlugin (2.8.3 - 390.6) <B0936831-80AA-3B67-BDDD-5DCBABF99607> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0xcfbc000 -  0xcfbffff  com.apple.iLMBLogicPlugin (2.8.3 - 390.6) <C5D310EC-EE02-3CF8-B456-C8C64493E3BB> /Library/Application Support/iLifeMediaBrowser/*/iLMBLogicPlugin
    0xcfc5000 -  0xcfc6fff  com.apple.iLMBMoviesFolderPlugin (2.8.3 - 390.6) <6D3A3167-9C47-3D54-A3F6-A37EAF9B683C> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0xcfcb000 -  0xcfcdffb  com.apple.iLMBPhotoBooth2Plugin (2.8.3 - 390.6) <DE32FC61-1328-3BEA-90B5-AEA01AC33C1E> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0xcfd3000 -  0xcfd4ffd  com.apple.iLMBPhotoBoothPlugin (2.8.3 - 390.6) <35512917-C9C0-3B77-AC1D-C92D81B44A35> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0xd100000 -  0xd1b0fff  ColorSyncDeprecated.dylib (426) <F54DBFF3-3165-3D15-8AE4-37B603502A5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xd1f3000 -  0xd34eff3  com.apple.iLMBAperture31Plugin (2.8.3 - 390.6) <E42DD3F5-8459-35CA-909D-B89E91820D4B> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0xd396000 -  0xd540ffb  com.apple.iLMBAperturePlugin2012 (2.8.3 - 390.6) <874D781B-AA62-32BA-960F-94B610CF8288> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0xd59c000 -  0xd6faffb  com.apple.iLMBiPhoto9Plugin (2.8.3 - 390.6) <8618248D-B76B-3466-8B47-D4798C42CF23> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0xd743000 -  0xd8edff9  com.apple.iLMBiPhotoPlugin2012 (2.8.3 - 390.6) <FDAD0C41-32A6-3C04-B8E2-65271F9B49DF> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0xd949000 -  0xd9faff7  com.apple.iTunesAccess (11.3 - 11.3) <87F12A6B-1FC1-3C01-A25A-1FEDE3BE3EA7> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0xda57000 -  0xda62fff  libGPUSupport.dylib (9.6.1) <46231771-6D1B-3539-A571-0FF7BF73A595> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0xde72000 -  0xde75fff  com.apple.framework.iPhoto.FileExporter2 (8.0 - 8.0) /Applications/iPhoto.app/Contents/PlugIns/FileExporter2.iPhotoExporter/Contents /MacOS/FileExporter2
    0xdfe9000 -  0xdff6ff1  com.apple.KerberosHelper (4.0 - 1.0) <BDCE5217-69E5-3FBF-BAC4-76AAE84A8961> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0xe800000 -  0xefbbff9  libclh.dylib (4.0.3 - 4.0.3) <7759C56E-CCBE-3F31-8597-7E1CBEB62161> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/libclh.dy lib
    0xf0a3000 -  0xf0a9fe7  com.apple.framework.iPhoto.QTExporter (8.0 - 8.0) /Applications/iPhoto.app/Contents/PlugIns/QTExporter.iPhotoExporter/Contents/Ma cOS/QTExporter
    0xf0f7000 -  0xf0f7fff +cl_kernels (???) <570CE978-1D63-42A7-A8A4-7631B6FE5696> cl_kernels
    0x11300000 - 0x11347ff7  com.apple.CalDAV (7.0 - 155.2) <D6D3D17B-D21E-326E-88AE-CDC3838B905E> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x113e6000 - 0x113eeff7  com.apple.framework.iPhoto.HTMLExporter (8.0 - 8.0) /Applications/iPhoto.app/Contents/PlugIns/HTMLExporter.iPhotoExporter/Contents/ MacOS/HTMLExporter
    0x113f7000 - 0x113f8ff1 +cl_kernels (???) <55258921-45B9-4B98-99D6-2DF8171BB6CF> cl_kernels
    0x11ac1000 - 0x11ac3ff5 +cl_kernels (???) <1D92A26B-A721-4D23-87CA-ACF0420E40EB> cl_kernels
    0x11b90000 - 0x11bb9fff  com.apple.iCalendar (7.0 - 162.2) <03B11EF8-2397-37A4-B641-5953A36D4E63> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x11bfa000 - 0x11bfbff5 +cl_kernels (???) <24BE356F-516E-4403-9576-BFD344A8D9BC> cl_kernels
    0x12500000 - 0x12562ff7  com.apple.coredav (1.0.1 - 229.6) <D9E24A98-5D3A-37BF-8744-1C264BBF3D5F> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x1259f000 - 0x12816ffd  com.apple.CalendarPersistence (7.0 - 138.4) <21719B05-6072-3DF4-AE72-64441B14E005> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
    0x12926000 - 0x12974fff  com.apple.ExchangeWebServices (4.0 - 193) <66F72D8B-5232-3F9B-BDA1-2B38D9458117> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x12d00000 - 0x12e40fff  com.apple.syncservices (8.1 - 722) <6371658B-05CB-3F3F-BFAF-6BE639A2501D> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x12ebb000 - 0x12f28ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <395F3538-8A1D-323B-B5C7-C8196CC03D15> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x40000000 - 0x4035bff7  com.apple.driver.AppleIntelHDGraphicsGLDriver (8.24.15 - 8.2.4) <1B1BCFC5-8C9C-3661-8977-C1F059CBE1B2> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
    0x48000000 - 0x488caff7  com.apple.GeForceTeslaGLDriver (8.24.15 - 8.2.4) <009DE5A7-9FC2-3596-A520-EEDE8AB859EE> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTe slaGLDriver
    0x8fea9000 - 0x8fedb417  dyld (239.4) <FF5ED937-CC28-3FEF-BCAF-750B1CDBAE36> /usr/lib/dyld
    0x90008000 - 0x90008fff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90009000 - 0x90080ffb  com.apple.framework.IOKit (2.0.1 - 907.100.13) <D1308EE0-96AA-3442-A27B-264F58AE12B4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90081000 - 0x900e2ff7  com.apple.Symbolication (1.4 - 129.0.2) <774BC6EC-450B-3AE8-BBED-F1F140B93E7E> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x900e5000 - 0x9014bfff  com.apple.corelocation (1486.17 - 1486.24) <7DA4ADC6-4766-3DAC-B1AD-1ECEAD4CE477> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x9014c000 - 0x90169ff4  libsystem_kernel.dylib (2422.110.17) <BCE753BB-9F18-30CB-87BC-D960721254C1> /usr/lib/system/libsystem_kernel.dylib
    0x9016a000 - 0x901dfff1  com.apple.ApplicationServices.ATS (360 - 363.3) <FD423680-01A1-357A-89A7-33910A87DE65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x901e0000 - 0x901e0fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x901e1000 - 0x902afff7  com.apple.backup.framework (1.5.4 - 1.5.4) <C09AF796-385F-34DB-B551-68967989E9CB> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x902b0000 - 0x902f2fff  libGLU.dylib (9.6.1) <0655104D-2F22-36CE-955B-52A533CA70D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x902f3000 - 0x902fcfff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x902fd000 - 0x90309ffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x9030a000 - 0x9030effe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9030f000 - 0x90317fff  libsystem_dnssd.dylib (522.92.1) <7E36B79E-6BF4-3462-9A84-C0744D029636> /usr/lib/system/libsystem_dnssd.dylib
    0x90318000 - 0x90381fff  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <3AD9C90B-40A9-312B-B479-3AB178A96EA1> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90382000 - 0x90386ffc  com.apple.IOSurface (91.1 - 91.1) <70637267-4D54-3EFF-A929-54FC0A8A907A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9046d000 - 0x9046efff  libSystem.B.dylib (1197.1.1) <789CF4BE-5A0B-310E-9515-E515EA033D03> /usr/lib/libSystem.B.dylib
    0x9046f000 - 0x90478fff  com.apple.DiskArbitration (2.6 - 2.6) <92F7575A-AA20-34D9-BB26-2CC8C3CCAFEB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90479000 - 0x904ceff7  com.apple.framework.internetaccounts (2.1 - 210) <3E555C08-C8FA-3175-8C3F-E49F6F5238A6> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x9053e000 - 0x90546ffe  libGFXShared.dylib (9.6.1) <632989B3-36C2-302E-8A85-A02125A9C5D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90547000 - 0x905b1ff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x905b2000 - 0x905b4fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x905b5000 - 0x905baff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x905bb000 - 0x905f7ff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x905f8000 - 0x90661ffa  com.apple.datadetectorscore (5.0 - 354.5) <CB793FA7-B873-39A9-855F-D86AB0C35298> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90662000 - 0x906aeff7  libcups.2.dylib (372.4) <A11AA954-07E7-3929-84AB-309B0C0DDB5D> /usr/lib/libcups.2.dylib
    0x906af000 - 0x906d3fff  libJPEG.dylib (1043) <257BE460-DFB1-3398-8AC5-A2E50FBED794> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x906d4000 - 0x9072aff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x9072b000 - 0x90731ff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x90732000 - 0x90783ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x9078d000 - 0x9080dff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <382BE89A-9F37-3316-9AB8-DDEA691A80D1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9080e000 - 0x9084eff7  com.apple.bom (14.0 - 193.1) <FFF1C8E5-41FF-357B-8681-69B21DCED2E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9084f000 - 0x9087fff7  com.apple.CoreServicesInternal (184.9 - 184.9) <999FEDEC-7657-3F32-A9AE-F29E0BE0AAF5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x90880000 - 0x908d5ff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x908d6000 - 0x90a2cff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90a2d000 - 0x90c91ff7  com.apple.CoreData (107 - 481.3) <8EB45FB9-CF78-36E1-919C-E976AE4C8146> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90c92000 - 0x90caaff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <184471C6-C810-3346-B7C7-D86E695D0FA1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x90cab000 - 0x90d57ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90d58000 - 0x90d9eff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x90d9f000 - 0x90e8aff4  com.apple.DiskImagesFramework (10.9 - 371.1) <32A138AB-6A20-3C28-BFF8-7188C9790F31> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x90e8b000 - 0x90e8dff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x90e8e000 - 0x90ec4fff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x917ec000 - 0x917ecffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <9515158F-3A33-39CF-AD5A-201C2B121F33> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x917ed000 - 0x918e1fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x918e2000 - 0x91913ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x91914000 - 0x91e81fff  com.apple.QuartzComposer (5.1 - 319) <77419C8D-B822-3649-BBB4-2CF0F0993E9A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91e82000 - 0x91e9aff7  libsystem_malloc.dylib (23.10.1) <CB52555E-0F5B-31E3-A42A-FD4F930E2192> /usr/lib/system/libsystem_malloc.dylib
    0x91e9b000 - 0x91efdff3  com.apple.imfoundation (10.0 - 1000) <20565092-0897-3E34-A35A-E1F027D53A26> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x91efe000 - 0x91f00fff  com.apple.SecCodeWrapper (3.0 - 1) <066E1E30-2EEA-3166-8F86-D1054B50875B> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x91f01000 - 0x91f08ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91f09000 - 0x91f1dff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <06C2834A-91E9-3DCC-B7D0-9EAC592CE1C5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x91f1e000 - 0x9218dff2  com.apple.security (7.0 - 55471.14.8) <8AF3BEF0-0EF9-32CD-A316-F9C6325E3491> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9218e000 - 0x9240afe7  com.apple.QuickTime (7.7.3 - 2826.19) <AEF12245-C9D5-3B50-8AB6-45DC794E693E> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9240b000 - 0x92433fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x92434000 - 0x92492ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92493000 - 0x92524fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92525000 - 0x92578fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92579000 - 0x9257cff3  com.apple.AppleSystemInfo (3.0 - 3.0) <4586B503-A0A8-3654-AA48-D2F9FA0188CB> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x9257d000 - 0x9341effb  com.apple.WebCore (9537 - 9537.77.4) <4D8AF042-0E87-307D-BA40-15D5F841F573> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9341f000 - 0x934e6ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x934e7000 - 0x934e8fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x9358a000 - 0x939beff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x939bf000 - 0x939deff9  com.apple.framework.Apple80211 (9.4 - 940.60) <8CCF54EE-F3CA-38B3-BD61-DDBF99E37FCB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x939df000 - 0x939e3fff  libheimdal-asn1.dylib (323.92.1) <DD8BAEED-28AC-389E-9DC4-E32DA60CB05A> /usr/lib/libheimdal-asn1.dylib
    0x939e4000 - 0x93a13ff1  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <2215559E-C517-3122-906F-156FD3CC10AD> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x93a14000 - 0x93a53ff5  com.apple.ids (10.0 - 1000) <D28CFCBA-F7C4-3456-92E4-0B1ABA86BB87> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    0x93a54000 - 0x93a6dfff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93a6e000 - 0x93a77fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93a78000 - 0x93ae3fff  com.apple.Heimdal (4.0 - 2.0) <D6465D74-9351-3FF3-9561-AC149AEDB86F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x93ae4000 - 0x93aecfff  liblaunch.dylib (842.92.1) <C180016C-F2DB-3D8B-A72D-5185CE67DFA2> /usr/lib/system/liblaunch.dylib
    0x93aed000 - 0x93b33ff7  libcurl.4.dylib (78.94.1) <0EBB0049-F944-3A3F-ACBF-80D742C4945B> /usr/lib/libcurl.4.dylib
    0x93b34000 - 0x93b37ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x93b38000 - 0x93b4bfff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93b4c000 - 0x93e36fd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93e37000 - 0x9412cffc  com.apple.CoreImage (9.4.0) <33696A53-9E18-32D6-844F-28098DB7E426> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x9412d000 - 0x94136ffc  com.apple.CommonAuth (4.0 - 2.0) <99219CEB-D340-3E1F-9C04-FD0FA700BD67> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x94137000 - 0x941e2fff  libcrypto.0.9.7.dylib (106) <DA3D5F8E-5822-3D41-BC1C-FFE1CC9BB42B> /usr/lib/libcrypto.0.9.7.dylib
    0x941e3000 - 0x9428eff5  com.apple.imcore (10.0 - 1000) <000D6E8B-1067-3FE1-8524-18A8710C572E> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x9428f000 - 0x942c1ffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x942c2000 - 0x942e9fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x942ea000 - 0x94327ffb  libGLImage.dylib (9.6.1) <E2DADD8A-8A60-3F39-840B-4B7FE7001384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94328000 - 0x9437cfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <68D53493-CC1E-3036-BF67-B2A0F6E1A905> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9437d000 - 0x9437fffe  libCVMSPluginSupport.dylib (9.6.1) <C2071F9E-72A1-360C-BF7E-286F9681922F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x94380000 - 0x94693fef  com.apple.CoreAUC (6.25.00 - 6.25.00) <84677812-2943-328C-B4E0-5E37A6181195> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x94694000 - 0x947a6ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x947a7000 - 0x947b2ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x947b3000 - 0x947b4ffa  libsystem_sandbox.dylib (278.11.1) <DA875837-A5C2-3004-8117-65F378E4BD03> /usr/lib/system/libsystem_sandbox.dylib
    0x947b5000 - 0x947b6fff  com.apple.marco (10.0 - 1000) <F7AD1FF7-5B1E-3D3C-AF00-FA3A43118CE5> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x947b7000 - 0x94919ffb  com.apple.CFNetwork (673.4 - 673.4) <3B6BDE2F-BFA3-3B7E-BC53-7B6B75EB12D3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x9491a000 - 0x94a00ff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x94a02000 - 0x94a02ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x94a03000 - 0x94a0fffc  libkxld.dylib (2422.110.17) <FBC1725B-74D4-3DFC-954E-0628948C0781> /usr/lib/system/libkxld.dylib
    0x94a10000 - 0x94d99ff7  com.apple.FinderKit (1.2.4 - 1.2.4) <D863C795-59CB-349A-A24B-79B2DEFA6322> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x94d9a000 - 0x94dc9ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <1BD6205B-7C66-3B7B-AC8C-11BE34F7CF6B> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x94dca000 - 0x94e8dff1  com.apple.CoreText (367.20 - 367.20) <42445623-3BDD-3678-8B46-845C441B6251> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x94e8e000 - 0x94e8efff  com.apple.Carbon (154 - 157) <6C29C608-97B4-306E-AEC5-6F48EDF7EFB5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94e8f000 - 0x9510eff7  com.apple.imageKit (2.5 - 774) <53C3FA27-3830-3A15-9707-AF7369119866> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95113000 - 0x95129ff9  com.apple.aps.framework (4.0 - 4.0) <DAA9FAF9-369F-325A-987B-0504B658CCB0> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x9512a000 - 0x9514afff  com.apple.facetimeservices (10.0 - 1000) <D3A59518-0F74-3B3F-8BFE-447D75E9F3F1> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x9514b000 - 0x9515afff  libGL.dylib (9.6.1) <885E9C1F-11C7-347D-BE10-522A40A46596> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9515b000 - 0x9516dfff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x9516e000 - 0x95178ff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95179000 - 0x954a0ffb  com.apple.JavaScriptCore (9537 - 9537.77.1) <7D918042-6F70-36EA-8F17-C8C5CAC6DC47> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x954a8000 - 0x954a

    You need to backup your iPhoto library and purchase and install iPhoto '11 version 9.5.x from the app store - it works correctly with Mavericks
    LN

  • Unable to Export data from Forms in 11.5.10.2

    Hi All,
    When I am trying to export data from a Form, the output is not appearing on my desktop to save or view for further processing. When I click on File-->Export link, a screen appears for a fraction of second and then disappears automatically.
    And it is generating the below error file in my desktop.
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x006e0065, pid=4988, tid=3864
    # JRE version: 6.0_29-b11
    # Java VM: Java HotSpot(TM) Client VM (20.4-b02 mixed mode, sharing windows-x86 )
    # Problematic frame:
    # C 0x006e0065
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x033a1c00): JavaThread "AWT-Windows" daemon [_thread_in_native, id=3864, stack(0x00960000,0x00a60000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x006e0065
    Registers:
    EAX=0x070bf4d0, EBX=0x00000001, ECX=0x034a7a30, EDX=0x00000004
    ESP=0x00a5fae0, EBP=0x00a5fb0c, ESI=0x033a1d28, EDI=0x034a7a30
    EIP=0x006e0065, EFLAGS=0x00010293
    Top of Stack: (sp=0x00a5fae0)
    0x00a5fae0: 6d09ccc0 00a5fb74 6d09c780 00000000
    0x00a5faf0: 00000000 00000001 033a1d28 00a5fae4
    0x00a5fb00: 00a5fb90 6d0c0628 00000001 00a5fb38
    0x00a5fb10: 7e418734 001002d0 0000981a 034a7a30
    0x00a5fb20: 00000000 6d09c780 dcbaabcd 00000000
    0x00a5fb30: 00a5fb74 6d09c780 00a5fba0 7e418816
    0x00a5fb40: 6d09c780 001002d0 0000981a 034a7a30
    0x00a5fb50: 00000000 00a5fc34 00a5fc2c 005de248
    Instructions: (pc=0x006e0065)
    0x006e0045:
    [error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xc0000005]
    Register to memory mapping:
    EAX=0x070bf4d0 is an unknown value
    EBX=0x00000001 is an unknown value
    ECX=0x034a7a30 is an unknown value
    EDX=0x00000004 is an unknown value
    ESP=0x00a5fae0 is pointing into the stack for thread: 0x033a1c00
    EBP=0x00a5fb0c is pointing into the stack for thread: 0x033a1c00
    ESI=0x033a1d28 is an unknown value
    EDI=0x034a7a30 is an unknown value
    Stack: [0x00960000,0x00a60000], sp=0x00a5fae0, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x006e0065
    C [USER32.dll+0x8734] GetDC+0x6d
    C [USER32.dll+0x8816] GetDC+0x14f
    C [USER32.dll+0x89cd] GetWindowLongW+0x127
    C [USER32.dll+0x8a10] DispatchMessageW+0xf
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.awt.windows.WToolkit.eventLoop()V+0
    j sun.awt.windows.WToolkit.run()V+52
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x07294400 JavaThread "SysExecutionThead" daemon [_thread_blocked, id=328, stack(0x04830000,0x04880000)]
    0x0351e400 JavaThread "AWT-EventQueue-3" [_thread_blocked, id=4484, stack(0x046f0000,0x04740000)]
    0x06f3a400 JavaThread "Flush Queue" [_thread_blocked, id=5560, stack(0x0a530000,0x0a580000)]
    0x073b5400 JavaThread "Thread-20" [_thread_in_native, id=3872, stack(0x09f40000,0x09f90000)]
    0x06dc1400 JavaThread "CursorIdler" [_thread_blocked, id=2808, stack(0x09ef0000,0x09f40000)]
    0x07079c00 JavaThread "TaskScheduler timer" [_thread_blocked, id=2824, stack(0x09ea0000,0x09ef0000)]
    0x070bc400 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=5280, stack(0x045b0000,0x04600000)]
    0x07607400 JavaThread "Busy indicator" daemon [_thread_blocked, id=4924, stack(0x09e50000,0x09ea0000)]
    0x034f7c00 JavaThread "Forms-StreamMessageReader" [_thread_blocked, id=3856, stack(0x07960000,0x079b0000)]
    0x06d18400 JavaThread "thread applet-oracle.forms.engine.Main-3" [_thread_in_native, id=640, stack(0x07910000,0x07960000)]
    0x02ceb400 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=1568, stack(0x04880000,0x048d0000)]
    0x034e2c00 JavaThread "thread applet-oracle/apps/fnd/formsClient/FormsLauncher.class-2" [_thread_blocked, id=5788, stack(0x04790000,0x047e0000)]
    0x033dac00 JavaThread "Applet 4 LiveConnect Worker Thread" [_thread_blocked, id=4080, stack(0x047e0000,0x04830000)]
    0x034d8000 JavaThread "Thread-14" [_thread_in_native, id=5068, stack(0x04740000,0x04790000)]
    0x034da000 JavaThread "LPR" [_thread_blocked, id=2720, stack(0x046a0000,0x046f0000)]
    0x034dd400 JavaThread "Thread-12" [_thread_blocked, id=5720, stack(0x044e0000,0x04530000)]
    0x0345e400 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=4848, stack(0x04650000,0x046a0000)]
    0x0345d400 JavaThread "TimerQueue" daemon [_thread_blocked, id=4800, stack(0x04600000,0x04650000)]
    0x03413800 JavaThread "thread applet-unitask.localPrint.clientAppletLauncher-1" [_thread_blocked, id=3184, stack(0x043f0000,0x04440000)]
    0x033ea000 JavaThread "JVM[id=0]-Heartbeat" daemon [_thread_blocked, id=5900, stack(0x04490000,0x044e0000)]
    0x033e6c00 JavaThread "AWT-EventQueue-2" [_thread_blocked, id=3036, stack(0x04440000,0x04490000)]
    0x033e4c00 JavaThread "Applet 3 LiveConnect Worker Thread" [_thread_blocked, id=5652, stack(0x03790000,0x037e0000)]
    0x033dd800 JavaThread "Browser Side Object Cleanup Thread" [_thread_blocked, id=1008, stack(0x043a0000,0x043f0000)]
    0x033d7000 JavaThread "Windows Tray Icon Thread" [_thread_in_native, id=4576, stack(0x03920000,0x03970000)]
    0x033d5000 JavaThread "CacheCleanUpThread" daemon [_thread_blocked, id=4136, stack(0x038d0000,0x03920000)]
    0x033ae400 JavaThread "CacheMemoryCleanUpThread" daemon [_thread_blocked, id=3632, stack(0x03880000,0x038d0000)]
    0x033a8400 JavaThread "SysExecutionTheadCreator" daemon [_thread_blocked, id=4468, stack(0x03330000,0x03380000)]
    0x033a5c00 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=4164, stack(0x037e0000,0x03830000)]
    =>0x033a1c00 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3864, stack(0x00960000,0x00a60000)]
    0x033a0400 JavaThread "AWT-Shutdown" [_thread_blocked, id=2668, stack(0x03640000,0x03690000)]
    0x0339f000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2840, stack(0x035f0000,0x03640000)]
    0x02d84800 JavaThread "Java Plug-In Pipe Worker Thread (Client-Side)" daemon [_thread_in_native, id=5160, stack(0x035a0000,0x035f0000)]
    0x02da6000 JavaThread "Timer-0" [_thread_blocked, id=3064, stack(0x032e0000,0x03330000)]
    0x02d4d400 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=4168, stack(0x031e0000,0x03230000)]
    0x02d39000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1560, stack(0x02fb0000,0x03000000)]
    0x02d34000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=6076, stack(0x02f60000,0x02fb0000)]
    0x02d31800 JavaThread "Attach Listener" daemon [_thread_blocked, id=5804, stack(0x02f10000,0x02f60000)]
    0x02d30400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1996, stack(0x02ec0000,0x02f10000)]
    0x02d29800 JavaThread "Finalizer" daemon [_thread_blocked, id=3760, stack(0x02e70000,0x02ec0000)]
    0x02d28000 JavaThread "Reference Handler" daemon [_thread_blocked, id=2708, stack(0x02e20000,0x02e70000)]
    0x00888000 JavaThread "main" [_thread_blocked, id=4944, stack(0x00910000,0x00960000)]
    Other Threads:
    0x02cec000 VMThread [stack: 0x02dd0000,0x02e20000] [id=3156]
    0x02d44000 WatcherThread [stack: 0x03000000,0x03050000] [id=5780]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 10048K, used 3925K [0x22990000, 0x23470000, 0x27ee0000)
    eden space 8960K, 43% used [0x22990000, 0x22d654f8, 0x23250000)
    from space 1088K, 0% used [0x23250000, 0x23250000, 0x23360000)
    to space 1088K, 0% used [0x23360000, 0x23360000, 0x23470000)
    tenured generation total 21996K, used 13195K [0x27ee0000, 0x2945b000, 0x32990000)
    the space 21996K, 59% used [0x27ee0000, 0x28bc2d50, 0x28bc2e00, 0x2945b000)
    compacting perm gen total 12288K, used 9062K [0x32990000, 0x33590000, 0x36990000)
    the space 12288K, 73% used [0x32990000, 0x332699b0, 0x33269a00, 0x33590000)
    ro space 10240K, 51% used [0x36990000, 0x36ebd0b8, 0x36ebd200, 0x37390000)
    rw space 12288K, 54% used [0x37390000, 0x37a29570, 0x37a29600, 0x37f90000)
    Code Cache [0x00af0000, 0x00d50000, 0x02af0000)
    total_blobs=1512 nmethods=1280 adapters=167 free_code_cache=31064896 largest_free_block=320
    Dynamic libraries:
    0x00400000 - 0x00424000      C:\Program Files\Java\jre6\bin\java.exe
    0x7c900000 - 0x7c9b2000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f6000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f03000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x5cb70000 - 0x5cb96000      C:\WINDOWS\system32\ShimEng.dll
    0x71590000 - 0x71609000      C:\WINDOWS\AppPatch\AcLayers.DLL
    0x7e410000 - 0x7e4a1000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f59000      C:\WINDOWS\system32\GDI32.dll
    0x7c9c0000 - 0x7d1d7000      C:\WINDOWS\system32\SHELL32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x774e0000 - 0x7761e000      C:\WINDOWS\system32\ole32.dll
    0x769c0000 - 0x76a74000      C:\WINDOWS\system32\USERENV.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x-ww_61e65202\comctl32.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Java\jre6\bin\msvcr71.dll
    0x6d7f0000 - 0x6da9f000      C:\Program Files\Java\jre6\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x6d7a0000 - 0x6d7ac000      C:\Program Files\Java\jre6\bin\verify.dll
    0x6d320000 - 0x6d33f000      C:\Program Files\Java\jre6\bin\java.dll
    0x6d000000 - 0x6d14c000      C:\Program Files\Java\jre6\bin\awt.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x4fdd0000 - 0x4ff76000      C:\WINDOWS\system32\d3d9.dll
    0x00ae0000 - 0x00ae6000      C:\WINDOWS\system32\d3d8thk.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x6d7e0000 - 0x6d7ef000      C:\Program Files\Java\jre6\bin\zip.dll
    0x6d420000 - 0x6d426000      C:\Program Files\Java\jre6\bin\jp2native.dll
    0x6d1d0000 - 0x6d1e3000      C:\Program Files\Java\jre6\bin\deploy.dll
    0x77a80000 - 0x77b15000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x77120000 - 0x771ab000      C:\WINDOWS\system32\OLEAUT32.dll
    0x3d930000 - 0x3da16000      C:\WINDOWS\system32\WININET.dll
    0x03050000 - 0x03059000      C:\WINDOWS\system32\Normaliz.dll
    0x78130000 - 0x78263000      C:\WINDOWS\system32\urlmon.dll
    0x3dfd0000 - 0x3e1bb000      C:\WINDOWS\system32\iertutil.dll
    0x6d6a0000 - 0x6d6e6000      C:\Program Files\Java\jre6\bin\regutils.dll
    0x6d600000 - 0x6d613000      C:\Program Files\Java\jre6\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d620000 - 0x6d629000      C:\Program Files\Java\jre6\bin\nio.dll
    0x74720000 - 0x7476c000      C:\WINDOWS\system32\MSCTF.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\apphelp.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x6d230000 - 0x6d27f000      C:\Program Files\Java\jre6\bin\fontmanager.dll
    0x6d780000 - 0x6d788000      C:\Program Files\Java\jre6\bin\sunmscapi.dll
    0x68000000 - 0x68036000      C:\WINDOWS\system32\rsaenh.dll
    0x5b860000 - 0x5b8b5000      C:\WINDOWS\system32\netapi32.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x76d40000 - 0x76d58000      C:\WINDOWS\system32\MPRAPI.dll
    0x77cc0000 - 0x77cf2000      C:\WINDOWS\system32\ACTIVEDS.dll
    0x76e10000 - 0x76e35000      C:\WINDOWS\system32\adsldpc.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x71bf0000 - 0x71c03000      C:\WINDOWS\system32\SAMLIB.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x6d1a0000 - 0x6d1c3000      C:\Program Files\Java\jre6\bin\dcpr.dll
    0x605d0000 - 0x605d9000      C:\WINDOWS\system32\mslbui.dll
    0x49460000 - 0x4986b000      C:\PROGRA~1\MICROS~2\Office14\GROOVEEX.DLL
    0x78520000 - 0x785c3000      C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_d495ac4e\MSVCR90.dll
    0x78480000 - 0x7850e000      C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_d495ac4e\MSVCP90.dll
    0x78e20000 - 0x78e4b000      C:\WINDOWS\WinSxS\x86_Microsoft.VC90.ATL_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_353599c2\ATL90.DLL
    0x74980000 - 0x74aa3000      C:\WINDOWS\system32\msxml3.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    VM Arguments:
    jvm_args: -D__jvm_launched=6364512386 -Xbootclasspath/a:C:\PROGRA~1\Java\jre6\lib\deploy.jar;C:\PROGRA~1\Java\jre6\lib\javaws.jar;C:\PROGRA~1\Java\jre6\lib\plugin.jar -Dsun.awt.warmup=true
    java_command: sun.plugin2.main.client.PluginMain write_pipe_name=jpi2_pid2020_pipe7,read_pipe_name=jpi2_pid2020_pipe6
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=C:\Program Files\PC Connectivity Solution\;C:\Program Files\CA\SharedComponents\CAWIN\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\PROGRA~1\CA\SHARED~1\CAM\bin;C:\Program Files\CA\Unicenter DSM\bin;C:\Program Files\Windows Imaging\;C:\Program Files\Intel\DMIX
    USERNAME=aggarwalam
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 10, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 3
    CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 23 stepping 10, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1
    Memory: 4k page, physical 3665072k(2703832k free), swap 5592752k(4834108k free)
    vm_info: Java HotSpot(TM) Client VM (20.4-b02) for windows-x86 JRE (1.6.0_29-b11), built on Oct 3 2011 01:01:08 by "java_re" with MS VC++ 7.1 (VS2003)
    time: Mon Jul 02 09:18:26 2012
    elapsed time: 108 seconds
    Can anyone please help me on this.
    Thanks in advance.
    Regards,
    Charls K V

    When I am trying to export data from a Form, the output is not appearing on my desktop to save or view for further processing. When I click on File-->Export link, a screen appears for a fraction of second and then disappears automatically.Please add the application URL to the trusted sites list from the browser.
    Also, make sure all pop-up blockers are disabled.
    And it is generating the below error file in my desktop.Is this the same error you get in the Jinitiator/JRE console window? -- How to enable tracing and logging for Sun JRE (Native Plug-in) [ID 549423.1]
    Please make sure no errors are reported in the database file log.
    Also, please see these docs/links.
    Troubleshooting Export and Attachment issues in Oracle Applications 11i [ID 338651.1]
    How to Troubleshoot Forms Hanging Using Export Functionality [ID 423261.1]
    Attachments and Exports, a Troubleshooting Guide [ID 135444.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Export+AND+Troubleshooting&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Export+AND+Disappear&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • I cannot export projects from GB in my MacBook into GB on my iPad3; nor can I export from IPad to my MacBook. I have tried going onto Apps update on the MacBook, but there were none available. I have read that this omission is to be corrected - can you co

    I cannot export projects from GB in my MacBook into GB on my iPad3; nor can I export from IPad to my MacBook. I have tried going onto Apps update on the MacBook, but there were none available. I have read that this omission is to be corrected - can you confirm this is intended to happen, or is it already in process. While awaiting for this essential development, can you please suggest any way of transferring information either way?

    spicer_the_coalman wrote:
    I cannot export projects from GB in my MacBook into GB on my iPad3
    http://www.bulletsandbones.com/GB/GBFAQ.html#exportgbxtogbi
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    spicer_the_coalman wrote:
    nor can I export from IPad to my MacBook.
    http://www.bulletsandbones.com/GB/GBFAQ.html#exportgbitogbx
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Moving OTC processes from SAP R/3 into SAP CRM 5.0

    Hi all,
    A SAP CRM client that I am currently working on have decided to extend the project scope and now want to move all their existing OTC processes from R/3 to CRM 5.0. Their system is heavily bespoked with a high level of user exits, as during the initial implementation they preferred to use more ABAP than config although some of the functionality was available as standard. If they haven’t figured it out yet, I’m sure they’ll be asking themselves soon whose clever idea that was. They have over 1m customer records with a low transaction volume per customer per year, configurable products, complex pricing and use Biller Direct, just to mention a few.
    Has anyone got any experience in doing this previously? Any issues, challenges or lessions learnt apart from the obvious ones?
    Thanks!
    J

    Seshu Mannepalli wrote:
    > As part of the upgrade we are going to do initial upgrade in the mock server and vendor is going to provide mock server with AIX 7.1 O/S.  Current database size is 100GB, hence we are going to copy the production server data into the mock server using export and import method,
    >
    > Here my doubt is can i install db9.7 directly and do the import (using compitable kernel)?, insteady of installing source database version 8.1 and later upgrading to db2 9.7 . Please clarify me whether can i go head and install the db2 9.7 and do the system copy using R3load.
    Hello,
    You can go ahead for IMPORT with DB 9.7.
    We completed an OS/DB Migration Project (which involves system copy using EXPORT/IMPORT) and we utilized direct newer version of DB2 on the target during IMPORT.
    But please confirm whether the kernel of your release would work fine with DB 9.7 or not. Otherwise, there is no problem in going for higher version of DB2 here.
    Small question -  Why you want to test the Mock Upgrade on DB2 version which is different than the current version on production server ? Or are you planning to upgrade your current DB2 8 to DB2 9.7 BEFORE the SAP Upgrade on all the servers - then the testing is OK I think (however OS is still the different - Or may be you will go for system copies for this too !)
    Thanks

  • Export data from BW to oralce with open hub service.

    Hi Dear all,
    When I tried to export data from BW to oralce with open hub service. There is no available RFC destination for this oracle system. That means i need to create a RFC destination for the oracle server.
    How can i achive this, in SM59? But U don't know much how to configure this. Is there any expert can help me there?
    Kevin

    Hi kevinhuang  ,
    RFC connection.......... You can check in SM59 tcode...Double click on the the desired Source system
    or
    RSA1-->Source systems and then right click on Source system and Check
    To test RFC connection...RSA1 ....Source system....... Right click on desired source system >> Connection Parameter.....Test connection
    Pls go thru this links,
    http://help.sap.com/saphelp_nw70/helpdata/EN/43/79f902dfb06fc9e10000000a1553f6/frameset.htm
    BI Open Hub Destination and data transfer process setup
    http://www.ibm.com/developerworks/data/library/techarticle/dm-0802li/index.html
    Hope this helps U.
    Regards
    Chandra Sekhar
    Edited by: Chandra  Sekhar T on Apr 21, 2009 3:36 PM

  • Batch image processing from bridge cause photoshop to crash

    But first it goes ahead and processes the images selected in Bridge. All of them like even over a hundred at a time (great time saver!). Then displays a message for each image in one error dialogue saying, "Sorry Photoshop couldn't process the image. . ." for each image.
    It also saves the images to the a folder above (in hierarchy) instead of the folder I select in the batch dialogue. I've tried using Batch process from within Photoshop and get the same result as image process from Bridge.
    While I am able to do the processing I need, it's annoying to have the force quit Photoshop each time, and Then to move the processed images where they belong.
    I am on a G5, 4mb ram, OSX 10.4.11. Photoshop CS3 #10.0.1, and bridge CS3 # 2.1.1.9.
    I usually do the updates when I'm alerted, but haven't heard of anything recently.
    Any ideas?

    Hi SSPrengel
    OK - maybe this will shed some light
    Try changing the size to something very small.- see below
    Try changing the compression. Not affected by the level of Quality (2% 50% or 100%) - all fail to load
    Try changing whether a color-profile is embedded or not. Not an option AFAIK in LR Export
    Try changing if the metadata is minimized or not. Not an option AFAIK in LR Export
    Try changing if the JPGs are exported relative to the source image or some fixed location. Exported to a specific location.
    If I use the Image export resize option it loads OK (resize to 1000*673 from 3916*2634).
    Older exports (from LR2.3 and earlier, of the same size image, and source DNG are OK)
    A centre crop from the Image (1205*691) is OK. A marginal crop (2 edges)  (3838*2552) is OK whereas a very slight crop at (3693*2614) FAILS
    The camera is Leica M8, images is in Leica RAW format (DNG).
    It appears to be function of Image export size (reduced either by Cropping or by 'Resizing on Export'
    Looks like a bug in LR2.6
    Message was edited by: V64
    PS I am using a G5 PowerMac with Tiger OSX

  • Any solutions for "Export process terminated unexpectedly [11]" problem?

    Hey guys,
    I'm trying to simply use Quicktime Pro (Version 7.6.6 Build 1632) to enable the "Fast Internet Start" feature of a 640 x 480 video H.264 video. It uses 16-bit Little Endian for audio, if that's of any help.
    Anyway, like lots of other users with this same exact problem, I make the changes in the "Export" dialogue (in this case, enabling "Fast Internet Start" and lowering the audio quality a bit), and the little status indicator goes away and "Export Process Terminated Unexpectedly {11}" appears in its place. Has a definitive answer been found for this problem?

    Similar issue here when exporting AVI files captured from Canon G9 to iPod.
    QuickTime Pro quits with: Failed: process terminated unexpectedly (11).
    Oddly, if I start from a power off and run QTime the error does not occur.
    Of course powering off for every export is a real PAIN IN THE Axx but it is a work around on this end.
    I have yet to try 3rd party software but this is error occurs with Quick Time Pro Ver 7.5 build 149.5.
    Sad

  • Exporting links from Photoshop into a PDF (Rich Content PDF?)

    Hi there,
    I built my resume in Photoshop and typically I've been exporting to a PDF and then handling link creation within Adobe Acrobat itself. I'm wondering if there's a way to streamline this process such that links can be created within Photoshop and exported directly into the PDF file. This would save me the hassle of recreating links in Acrobat every time I modified the resume in Photoshop.
    I've read about a Rich Content PDF extension/extra that is typically located in the Extras folder. I was able to successfully locate it and have Photoshop use it, but I don't know how to get links to actually be recognized by this plugin. My original hypothesis was to use slices (designating a region as a slice and then assigning it a link), but the Rich Content PDF export option did not recognize links through slices. Is there another way to do this or another way to create links in Photoshop such that it can be exported to a PDF (either through this plugin or otherwise)?
    Thanks!

    And what program would you recommend?
    In addition, the resume is already created in the program I'm comfortable with - I'm certainly not opposed to picking up a new tool and learning how to use it, but my question specifically was simply asking if there was a way to export links from Photoshop into a PDF as that would be the most time-efficient.

Maybe you are looking for

  • Iphone 4 speaker won't work after ios 4.3.2 upgrade

    I upgraded to 4.3.2 yesterday and since then the speaker on my iphone 4 has stopped working completely. Phone will not ring, ipod won't play, no sound on the speaker at all. Can use the phone but no speakerphone or any other sound on the speaker. Ple

  • How do I connect dual monitors to my x61 with docking?

    How do I connect dual monitors to my X61 with docking?

  • Custom Fields in Inbox

    We need to add a few custom fields to Search and Result views of Inbox. Some of these fields are from z tables. I'm trying to determine whether I have to use BT Search customization (z index table), or redefine the search class CL_CRM_QUERYAUI_RUN_BT

  • Double Byte Characters in the URL

    Hi I am working on a sample code that uploads and file and lists the file after upload as a link. Users can download files by right clicking on the filename(link) and use the browser's options to download the file. I am having problems with files tha

  • Cant watch video link on safari

    I am trying to watch a marathon race but when I click on the link it downloads a file .asf and when I try to open it with quicktime it tells me it is not a movie file. All my friends with PC can watch this but not me. Please help. The web sight is ir