How to Create Pages in EP6 after Creating iView

Dear All,
I have created a iViews in EP6 based on available par files can any one tell me how to cretae the pages for that iview so that when user logs in he can click on page link and see iView in Ep6
Thanks and Regards
Prasad.Y

Hi Prasad,
To get more info on this question and your other questions, see this documentation on help.sap.com:
http://help.sap.com/saphelp_nw04/helpdata/en/a9/76bd3b57743b09e10000000a11402f/frameset.htm
In the navigation panel on the left choose Administration Guide > Content Administration. You will find topics on Pages, roles, worksets, etc.
Hope this helps.
John

Similar Messages

  • How to save report in PersonalCategory  after creating it using java panel?

    Hi,
    Anybody knows How to save report in PersonalCategory  after creating it using java panel?
    I dont want to save it in public folder. I want to save report (webi) in user's personal category.
    can anybody send me source code?
    It will help me a lot.
    Thanks in advance
    Amol Mali

    Hi teda,
    i'm assuming that you have seen my post that i did successfuly save report in user's personal category.
    Actually the report is created in webi java panel using RE SDK and  is saved in Report Sample Folder then i'm saving it in user's personal category by following code
    string query = "Select SI_PERSONAL_CATEGORIES From CI_INFOOBJECTS Where "
                         + "SI_INSTANCE=0 And SI_ID=" + reportID;
                    InfoObjects infoObjects = infoStore.Query(query);
                    InfoObject infoObject = infoObjects[1];
                    Webi wreport = (Webi)infoObject;
                    ObjectRelativeIDs personalIDs = wreport.PersonalCategories;
                /personalIDs.Add(Convert.ToInt32(categoryID));
                   infoStore.Commit(infoObjects);
    But the report is presents in the Folder also and in user's personal category also.
    I dont want the report to be in the folder (Report Sample) if i saved it in user's personal category.
    How can i do that?
    any idea.
    Please help me.
    Thanks in advance
    Amol Mali
    Edited by: amol mali on Jan 9, 2009 7:55 PM

  • How to pick additional delivery quantity after creating Transfer Order .

    Hi
    Sales order has been created for 30 pc of material ,  with reference to this  sales order , delivery  has been created .Afterwards  I  created  transfer order in lt03 and got it confirmed  in LT12. However , PGI has not been carried out .
    Afterwards ,  I went to  VL02N and manually increased the materialsu2019 quantity to 60 pc in delivery  .
    In delivery packing status is partially picked .
    I request you to help me how can  I pick another 30pc as already transfer order has been created and confirmed for this delivery .
    Either system is not allowing me to cancel transfer order in order to create   fresh  transfer order to with reference to this delivery . Otherwise , I could have done it .
    Could you please suggest me , how to go about it .

    Hi
    There is an excellent way to handle your issue
    While creating TO in t code LT03 in the initial screen control tab if you give pick quantity as 2 after the TO creation the system will simultaneouslely do PGI also in a single shot
    This means the delivery quantity cant be changed in the VL02N
    The whole VL02N will be display mode fully greyed out
    That means after TO you cant change the delivery
    If extra qty has to be added then it has to be a separate order only
    I have practised this only and for the past two hrs i was breaking my head how come you are changing delivery after TO creation and for me it was in display mode(fully greyed out) even in VL02N and i found out i am using adopt pick qty as 2 in the initial screen of LT03 which does PGI in a single shot
    This should be a good solution for you
    Even the solution suggested by Mr.Raj Malhotra you will face the same problem
    Regards
    Raja

  • How to see the table entries after creating the tansaction XD01

    I creat customer initial screen through Transaction XD01.
    After creating customer initial screen how can i see the yable entries.

    Hi,
    The customer entries are stored in table KNA1.
    Regards,
    Himanshu

  • How to find out idoc num after creating a costomer or vendor .....etc

    hai
    i had to find out idoc number after creating a customer, for that particular customer, i know to find out bygoing to the transaction WE05, but it is very tedious to find the idoc num for that particular customer, is it possible to find from the application it self with out going to WE05
    if so please help me,
    reward guarenty
    thanks in advance
    sindu

    Hi ,
    In  Customer  Display   Tcode -- XD03 ,
    Extras ---> Customer Partner Function ---> ( Pls  check  Logical System LS )
    Regards.

  • How can i set primary key after creating a table ?

    hi friends
    thank you for all the support you have given me . i have doubt ,can we set primary key for a column after creating the table
    I have added a column named idno after creating the table . i want to set that column as primary key . i tried this
    table name = address
    column name = idno
    ALTER TABLE ADDRESS MODIFY (idno PRIMARY KEY(idno))
    ,but not working
    if anbody knows the solution pls reply
    thanks and regards
    nev

    how does the other users know which is the primary key for this table?....the other user needs to execute this query...and modify the query accordingly
    select aa.table_name,aa.column_name,aa.constraint_name,bb.constraint_type
    from user_cons_columns aa,user_constraints bb
    where aa.constraint_name = bb.constraint_name
    and aa.table_name = 'TEST_EMP' and bb.constraint_type = 'P';

  • Create Page that programmatically displays an iview

    I'm trying to design a page that will contain to iViews.  One would have an announcement text at the top of the page and the other would be a related iView.  I would like the announcement header to only display if there's content to be loaded.  I've thought of two methods of this.
    One would be to create a JSPDyn page that loads both iviews and partner that with some Javascript that hides the top if there's no relevant content.  However, I can't seem to find any examples of JSPDyn pages loading other iViews.  Where would I look for examples on this?
    The other method would be using a property of the iView API called
    pageSupport.ivuRemove that appears to do what I want, but again, I haven't found any example code on how to use this.
    If anyone has any ideas, example code, or even a better method for optionally displaying an iView, please let me know.  I'll be sure to award points for answers that lead me on the right track.
    Thank you.
    - Craig

    Hi Praveen,
    My requirement is somewhat similar. I have a JSPDynpage application which gets data from the KM.
    If no data is available the iView should be hidden. The iView should be visible again only when there is relevant data available in the KM for the iView.
    I tried using the above code that you provided. However i am not able to figure out why the doOnNodeReady() is not getting called.
    Here is an example code that i am trying to get it work :
    package com.test;
    import com.sapportals.portal.prt.component.AbstractPortalComponent;
    import com.sapportals.portal.prt.component.IPortalComponentProfile;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    import com.sapportals.portal.prt.component.IPortalComponentResponse;
    import com.sapportals.portal.prt.pom.IEvent;
    import com.sapportals.portal.prt.pom.NodeMode;
    public class JSPPortalComp extends AbstractPortalComponent
        String text = null;
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
              IPortalComponentProfile  profile = request.getComponentContext().getProfile();
              text = profile.getProperty("TextValue");
              response.write("Hello" + text);
         protected void doOnNodeReady(IPortalComponentRequest request, IEvent event){
           if(text != "X") {
                   request.getNode().setNodeMode(NodeMode.DEFAULT_MODE);
              } else {
                   request.getNode().setNodeMode(new NodeMode("HideMode"));
                   return;
    If i set the TextValue iView property value to X then the iView should be hidden else shown.
    If i place a response .write() statement in the doOnNodeReady(), the response doesn't print.
    Can you please provide some insights into this.
    I have posted a thread for the same kind of requirement : https://forums.sdn.sap.com/thread.jspa?forumID=41&threadID=1130403
    Regards,
    Melwyn.

  • How do I use "Trim Paths" after "Create Shapes from Vector Layer" on a strokes only layer?

    Hello,
    Adobe After Effects CC
    2014.0.2
    Version 13.0.2.3
    I have imported an illustrator file that was created in Illustrator CC 18.0.0. The file contains the outline of a logo. It is the logo with the fill set to none and the stroke set to 1px.
    I drag the logo_strokes.ai file onto the composition, right click, and click Create Shapes from Vector Layer.
    A new layer is created and in the Contents "drop down", a Fill 1 layer is created.
    When I select the Contents "drop down" and click Add / Trim Paths, a Trim Paths 1 layer is created.
    When I animate Trim Paths 1, it appears to animate the Fill layer, not the stroke.
    How do I get it to animate just the stroke, and not show a fill at all?
    Thank you.

    Thanks,
    I am reading and watching tutorials. Still stuck on that one point.
    Here are the images of the After Effects layers. The illustrator layer is the top layer.

  • How to delete MRP view data after create in Material master data ?

    Hi all ,
          After user  create a useless MRP view data in Material master data , how to remove it ?

    Hi
    Material master once created cannot be deleted.Only thing u can do is to mark it for deletion
    Go to Logistics > Materials management > Material master > Material > Flag for deletion > Immediately.
    Give the necessary data that is needed for the view you want to delete.
    Press and flag the view you want to delete.
    Now the view is flagged for deletion. This means that it's use is limited and it will be cleaned up or really deleted at the next clean up of the system.
    regards
    Anand

  • How to use a Web Service after creating the reference

    I created a Web Service reference and APEX 3.1 and it recognizes it.
    The WS has a list of customers. The XML file (WS result) has XSD then the customers data.
    The only thing I can do inside APEX is to create a form based on WS with a field that has a dump of the WS result.
    I do not know how to use the XML data in the WS to show the customers data in APEX.
    I appreciate it, if you can point me to any article or documentation taht show to consume WS in APEX
    Thanks
    Mo

    Jason
    My post above does not make sense because the browser converted the "lt" and "gt" that I saw in the form when I copied and paste to < and > as it should do.
    below I will attach the XSD
    &lt;?xml version = &quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;yes&quot;?&gt;
    &lt;VFPDataSet&gt;
         &lt;xsd:schema id=&quot;VFPDataSet&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:msdata=&quot;urn:schemas-microsoft-com:xml-msdata&quot;&gt;
         &lt;xsd:element name=&quot;VFPDataSet&quot; msdata:IsDataSet=&quot;true&quot;&gt;
              &lt;xsd:complexType&gt;
                   &lt;xsd:choice maxOccurs=&quot;unbounded&quot;&gt;
                   &lt;xsd:element name=&quot;curCustomers&quot; minOccurs=&quot;0&quot; maxOccurs=&quot;unbounded&quot;&gt;
                                  &lt;xsd:complexType&gt;
                                       &lt;xsd:sequence&gt;
                                            &lt;xsd:element name=&quot;customerid&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;5&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;companyname&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;40&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;contactname&quot; minOccurs=&quot;0&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;30&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;contacttitle&quot; minOccurs=&quot;0&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;30&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;address&quot; minOccurs=&quot;0&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;60&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;city&quot; minOccurs=&quot;0&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;15&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;region&quot; minOccurs=&quot;0&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;15&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;postalcode&quot; minOccurs=&quot;0&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;10&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;country&quot; minOccurs=&quot;0&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;15&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;phone&quot; minOccurs=&quot;0&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;24&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                            &lt;xsd:element name=&quot;fax&quot; minOccurs=&quot;0&quot;&gt;
                                                 &lt;xsd:simpleType&gt;
                                                      &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                           &lt;xsd:maxLength value=&quot;24&quot;/&gt;
                                                      &lt;/xsd:restriction&gt;
                                                 &lt;/xsd:simpleType&gt;
                                            &lt;/xsd:element&gt;
                                       &lt;/xsd:sequence&gt;
                                  &lt;/xsd:complexType&gt;
                             &lt;/xsd:element&gt;
                        &lt;/xsd:choice&gt;
                        &lt;xsd:anyAttribute namespace=&quot;http://www.w3.org/XML/1998/namespace&quot; processContents=&quot;lax&quot;/&gt;
                   &lt;/xsd:complexType&gt;
              &lt;/xsd:element&gt;
         &lt;/xsd:schema&gt;

  • Keynote and pages are crashing after creating a new file. I got this crash report: What can I do? Please help me!!!

    Process:         Pages [400]
    Path:            /Applications/iWork '09/Pages.app/Contents/MacOS/Pages
    Identifier:      com.apple.iWork.Pages
    Version:         4.3 (1048)
    Build Info:      Pages-10480000~1
    App Item ID:     409201541
    App External ID: 9465286
    Code Type:       X86 (Native)
    Parent Process:  launchd [168]
    User ID:         501
    Date/Time:       2013-01-31 21:28:45.169 +0100
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          67865 sec
    Crashes Since Last Report:           12
    Per-App Interval Since Last Report:  62213 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      328B7E54-3CC5-5063-D3C0-0A9485CAC791
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Dyld Error Message:
      Symbol not found: _SFRIntegralSizeForScaleFactor
      Referenced from: /Applications/iWork '09/Pages.app/Contents/MacOS/Pages
      Expected in: /Applications/iWork '09/Pages.app/Contents/MacOS/../Frameworks/SFRendering.framework/Versions/A/SFR endering
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x8fe7c0b5 dyld_fatal_error + 1
    1   dyld                                    0x8fe7f01b dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 150
    2   libdyld.dylib                           0x067d376c dyld_stub_binder_ + 20
    3   com.apple.iWork.Pages                   0x000d1118 __gnu_cxx::new_allocator<std::pair<unsigned char const*, Status (*)(_xmlTextReader*, SFMDI*)> >::construct(std::pair<unsigned char const*, Status (*)(_xmlTextReader*, SFMDI*)>*, std::pair<unsigned char const*, Status (*)(_xmlTextReader*, SFMDI*)> const&) + 805118
    4   com.apple.sf.sfapplication              0x05302ed7 -[SFAppDocument writeToURL:ofType:forSaveOperation:originalContentsURL:error:] + 483
    5   com.apple.AppKit                        0x016edcb2 -[NSDocument _writeSafelyToURL:ofType:forSaveOperation:forceTemporaryDirectory:error:] + 578
    6   com.apple.AppKit                        0x016eda67 -[NSDocument _writeSafelyToURL:ofType:forSaveOperation:error:] + 69
    7   com.apple.AppKit                        0x016ed662 -[NSDocument writeSafelyToURL:ofType:forSaveOperation:error:] + 419
    8   com.apple.sf.sfapplication              0x053028ba -[SFAppDocument writeSafelyToURL:ofType:forSaveOperation:error:] + 1282
    9   com.apple.AppKit                        0x016ecd4a __block_global_90 + 108
    10  com.apple.AppKit                        0x016fb882 __block_global_97 + 279
    11  com.apple.AppKit                        0x016fb763 __block_global_96 + 389
    12  com.apple.AppKit                        0x01b5d8a4 __block_global_89 + 1586
    13  com.apple.AppKit                        0x01b59b68 __87-[NSDocument _fileCoordinator:coordinateReadingContentsAndWritingItemAtURL:byAccessor:]_bloc k_invoke_01554 + 50
    14  com.apple.Foundation                    0x02ce6d66 __85-[NSFileCoordinator(NSPrivate) _coordinateWritingItemAtURL:options:error:byAccessor:]_block_invoke_0303 + 45
    15  com.apple.Foundation                    0x02ae4f42 -[NSFileCoordinator(NSPrivate) _invokeAccessor:orDont:thenRelinquishAccessClaimForID:] + 233
    16  com.apple.Foundation                    0x02ac6ab5 -[NSFileCoordinator(NSPrivate) _coordinateWritingItemAtURL:options:error:byAccessor:] + 620
    17  com.apple.AppKit                        0x016ec99e -[NSDocument _fileCoordinator:coordinateReadingContentsAndWritingItemAtURL:byAccessor:] + 343
    18  com.apple.AppKit                        0x016ec769 __66-[NSDocument saveToURL:ofType:forSaveOperation:completionHandler:]_block_invoke_0 + 1107
    19  com.apple.AppKit                        0x016eb7ac -[NSDocument performAsynchronousFileAccessUsingBlock:] + 59
    20  com.apple.AppKit                        0x016ec30f -[NSDocument saveToURL:ofType:forSaveOperation:completionHandler:] + 158
    21  com.apple.sf.sfapplication              0x05308152 -[SFAppDocument(Private) saveToURL:ofType:forSaveOperation:completionHandler:] + 2242
    22  com.apple.AppKit                        0x016ebccf __67-[NSDocument autosaveWithImplicitCancellability:completionHandler:]_block_invoke_0 + 549
    23  com.apple.AppKit                        0x016eba95 __block_global_19 + 25
    24  com.apple.AppKit                        0x016e71fd -[NSDocument continueFileAccessUsingBlock:] + 247
    25  com.apple.AppKit                        0x016eba74 __block_global_18 + 136
    26  com.apple.AppKit                        0x01b8e005 __block_global_44 + 164
    27  com.apple.CoreFoundation                0x027f2f50 __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 16
    28  com.apple.CoreFoundation                0x027b0287 __CFRunLoopDoBlocks + 247
    29  com.apple.CoreFoundation                0x027d6e36 __CFRunLoopRun + 918
    30  com.apple.CoreFoundation                0x027d663a CFRunLoopRunSpecific + 378
    31  com.apple.CoreFoundation                0x027d64ab CFRunLoopRunInMode + 123
    32  com.apple.HIToolbox                     0x07b2e15a RunCurrentEventLoopInMode + 242
    33  com.apple.HIToolbox                     0x07b2ddf5 ReceiveNextEventCommon + 162
    34  com.apple.HIToolbox                     0x07b2dd44 BlockUntilNextEventMatchingListInMode + 88
    35  com.apple.AppKit                        0x01824a3a _DPSNextEvent + 724
    36  com.apple.AppKit                        0x0182426c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    37  com.apple.AppKit                        0x0181a6cc -[NSApplication run] + 855
    38  com.apple.AppKit                        0x017bd6f6 NSApplicationMain + 1053
    39  com.apple.iWork.Pages                   0x0000c939 __gnu_cxx::new_allocator<std::pair<unsigned char const*, Status (*)(_xmlTextReader*, SFMDI*)> >::construct(std::pair<unsigned char const*, Status (*)(_xmlTextReader*, SFMDI*)>*, std::pair<unsigned char const*, Status (*)(_xmlTextReader*, SFMDI*)> const&) + 287
    40  com.apple.iWork.Pages                   0x0007ce16 __gnu_cxx::new_allocator<std::pair<unsigned char const*, Status (*)(_xmlTextReader*, SFMDI*)> >::construct(std::pair<unsigned char const*, Status (*)(_xmlTextReader*, SFMDI*)>*, std::pair<unsigned char const*, Status (*)(_xmlTextReader*, SFMDI*)> const&) + 460284
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x069649ae kevent + 10
    1   libdispatch.dylib                       0x067afc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x067af7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x069640ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0682104c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x06820e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x06808cca start_wqthread + 30
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x06963be6 __select + 10
    1   com.apple.CoreFoundation                0x0281ac00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x0681e557 _pthread_start + 344
    3   libsystem_c.dylib                       0x06808cee thread_start + 34
    Thread 4:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x069617d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x06960cb0 mach_msg + 68
    2   com.apple.QuartzCore                    0x056cee24 CA::Render::Server::server_thread(void*) + 441
    3   com.apple.QuartzCore                    0x0575f836 thread_fun + 29
    4   libsystem_c.dylib                       0x0681e557 _pthread_start + 344
    5   libsystem_c.dylib                       0x06808cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x0696391a __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x0682413b pthread_mutex_lock + 595
    2   com.apple.Foundation                    0x02b0c6db -[NSLock lock] + 169
    3   com.apple.Keynote.SFWordProcessing          0x03e4347d -[SFWPSpellThread pRun:] + 289
    4   com.apple.Foundation                    0x02b531d8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x02b5315b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x0681e557 _pthread_start + 344
    7   libsystem_c.dylib                       0x06808cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x069638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x06823289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x06823512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x02b813c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x02b811ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x02b86740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.SFTabular                     0x034a4209 -[SFTFormulaInitThreadManager formulaWorkerThread] + 91
    7   com.apple.Foundation                    0x02b531d8 -[NSThread main] + 45
    8   com.apple.Foundation                    0x02b5315b __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x0681e557 _pthread_start + 344
    10  libsystem_c.dylib                       0x06808cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x069640ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0682104c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x06820e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x06808cca start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib                  0x069640ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0682104c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x06820e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x06808cca start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x069640ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0682104c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x06820e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x06808cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x8fe889c4  ebx: 0x00001d0f  ecx: 0x00000000  edx: 0x000000f7
      edi: 0x8fe7cf71  esi: 0x8feaf07c  ebp: 0xbfffda38  esp: 0xbfffda1c
       ss: 0x00000023  efl: 0x00000246  eip: 0x8fe7c0b5   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x10fe8000
    Logical CPU: 0
    Binary Images:
        0x1000 -   0x354fe3  com.apple.iWork.Pages (4.3 - 1048) <3F2BE397-E81E-3355-C0DE-8B0F014E897B> /Applications/iWork '09/Pages.app/Contents/MacOS/Pages
      0x3ec000 -   0x46bff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <824E7748-CA28-3105-B5C3-27E9D8C6D465> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x4af000 -   0xfc0fe7  com.apple.sfcompatibility (1.0 - 0.0.1d1) <83E03A17-13ED-51E7-12B7-26DE57A1D429> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFCompatibility.framework/Versions/A/SFCompat ibility
    0x16c1000 -  0x227dffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x2797000 -  0x2797fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x279f000 -  0x2987ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x2ab5000 -  0x2dd2ff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x2f55000 -  0x31eeff3  com.apple.AddressBook.framework (7.1 - 1167) <AF7B18F2-D0FF-33AA-9CE9-4106B1CDAE1D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x337d000 -  0x33cbff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x33f2000 -  0x340bff7  com.apple.Keynote.sfstyles (1.0 - 1.0) <6083223F-5878-863C-D7F1-98BD06B74F88> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFStyles.framework/Versions/A/SFStyles
    0x341d000 -  0x38d8feb  com.apple.SFTabular (1.0 - 1.0) <61A6E9DF-E011-8B5C-54ED-236DE8614721> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFTabular.framework/Versions/A/SFTabular
    0x3aa2000 -  0x3b5bff3  com.apple.Keynote.sfutility (1.0 - 0.0.1d1) <7D4FCBF0-498F-02D1-6EB8-CA108FD792E9> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFUtility.framework/Versions/A/SFUtility
    0x3bd0000 -  0x3d61ff3  com.apple.Keynote.sfdrawables (2.0 - 2.0) <0B8D5D6B-27A1-4A56-EC0F-10E53BEC5E68> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFDrawables.framework/Versions/A/SFDrawables
    0x3e22000 -  0x4094fff  com.apple.Keynote.SFWordProcessing (1.0 - 20030221_1) <F3734BEB-9CAC-FDCE-D70A-3CD06B13E074> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFWordProcessing.framework/Versions/A/SFWordP rocessing
    0x41b8000 -  0x4203ff7  com.apple.Keynote.SFControls (1.0 - 20030306_1) <48AC8060-4ACE-2669-AD66-36740E295DA7> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFControls.framework/Versions/A/SFControls
    0x4232000 -  0x428bff7  com.apple.Keynote.sfarchiving (1.0 - 0.0.1d1) <9B4F9347-CA6B-0EC6-0DA5-5996B7E4D240> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFArchiving.framework/Versions/A/SFArchiving
    0x42bf000 -  0x43cdfe7  com.apple.Keynote.sfrendering (1.0 - 1.0) <DB0AD559-D87C-C65A-C6D4-1090A50F6824> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFRendering.framework/Versions/A/SFRendering
    0x4432000 -  0x44bafff  com.apple.Keynote.proofreader (0 - 1) <81C5E92C-78A6-9188-5866-EB35F3AC18B1> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFProofReader.framework/Versions/A/SFProofRea der
    0x44ca000 -  0x44cafff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x44cd000 -  0x4587fef  com.apple.Keynote.sfinspectors (1.0 - 1.0) <6193377A-55FA-B9E4-7650-5162E7EEDB9A> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFInspectors.framework/Versions/A/SFInspector s
    0x45e6000 -  0x4950fff  com.apple.Keynote.sfcharts (2.0 - 2.0) <DE8D594A-C257-1FC5-7C88-FFBA0E4D4EF0> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFCharts.framework/Versions/A/SFCharts
    0x4b89000 -  0x4bcefe7  com.apple.Keynote.SFAnimation (1.0 - 0.0.1d1) <0E370E35-F03F-D44C-7FFB-344CF8F9153A> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFAnimation.framework/Versions/A/SFAnimation
    0x4bfb000 -  0x4c25fe3  com.apple.Keynote.sflicense (1.0 - 0.0.1d1) <F53762FE-49AD-088F-EC06-10AF18C87E58> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFLicense.framework/Versions/A/SFLicense
    0x4c42000 -  0x4c50fff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x4c58000 -  0x4d41ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x4d6f000 -  0x4eccffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x4f9a000 -  0x5216ff7  com.apple.QuickTime (7.7.1 - 2599.13) <FE609160-E1EF-341D-9B6A-205D3E03A4D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x52bf000 -  0x537bff7  com.apple.sf.sfapplication (1.0 - 1.0) <C21F6535-0B53-1A7F-FA88-C1BFFE5987CA> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFApplication.framework/Versions/A/SFApplicat ion
    0x53e8000 -  0x53e8fff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x53eb000 -  0x53f9ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x53ff000 -  0x5402ffb  com.apple.sf.sfblocks (1.0 - 1.0) <FE4E8658-6163-1BDE-4CAE-AD63D5127338> /Applications/iWork '09/Pages.app/Contents/Frameworks/SFBlocks.framework/Versions/A/SFBlocks
    0x540a000 -  0x546eff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x54cc000 -  0x54ccfff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x54d3000 -  0x55e0057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x55fc000 -  0x55fcfff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x5605000 -  0x577dff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x5819000 -  0x5821fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x582b000 -  0x5a98fff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x5c2f000 -  0x5c88fff  com.apple.QuickLookFramework (4.0 - 555.4) <96911441-FDD4-3B68-9E0C-51BA11A97C2E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x5cb9000 -  0x5cfbffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x5d23000 -  0x5d65ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x5d7a000 -  0x5f36ffd  libicucore.A.dylib (491.11.1) <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
    0x5fc5000 -  0x6112ffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x61bc000 -  0x647cfff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x658c000 -  0x658dfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x6591000 -  0x65f9ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x6624000 -  0x6641fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x664b000 -  0x6662fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x666b000 -  0x666eff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x6674000 -  0x66d6fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x6728000 -  0x674afff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x6774000 -  0x6778ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x677d000 -  0x6788fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x6793000 -  0x6796ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x679d000 -  0x67a5fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x67ab000 -  0x67bdff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x67cd000 -  0x67cefff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x67d3000 -  0x67d5fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x67db000 -  0x67dbfff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x67df000 -  0x67e6fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x67ee000 -  0x67f2ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x67f7000 -  0x67f8fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x67fd000 -  0x67fefff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x6804000 -  0x6804fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x6808000 -  0x68c5feb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x6901000 -  0x6908fff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
    0x690e000 -  0x693aff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x694f000 -  0x6969ffc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
    0x697a000 -  0x69a7ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x69b1000 -  0x69bfff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x69cb000 -  0x69d5fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x69de000 -  0x69dffff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x69e4000 -  0x69e5ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x69eb000 -  0x69f2ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x69f9000 -  0x6a16fff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x6a29000 -  0x6a75fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x6a82000 -  0x6a83fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x6a88000 -  0x6a9afff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x6aa2000 -  0x6b9aff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x6bac000 -  0x6bbafff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x6bc2000 -  0x6bc5ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x6bca000 -  0x6bcaffd  libOpenScriptingUtil.dylib (148.2) <907E25B1-4F50-3461-B8D5-733C687EB534> /usr/lib/libOpenScriptingUtil.dylib
    0x6bce000 -  0x6bdaff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x6be0000 -  0x6ee5ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x6f59000 -  0x6fd5ff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7018000 -  0x70b0fff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7107000 -  0x718cff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x71c7000 -  0x7220fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7246000 -  0x72f0fff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x733a000 -  0x736bfff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x738a000 -  0x7391ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7398000 -  0x73a4ffe  libkxld.dylib (2050.18.24) <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
    0x73a9000 -  0x73b5ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x73c0000 -  0x7424fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7451000 -  0x7467fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x747e000 -  0x74a7fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x74b3000 -  0x760bffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7689000 -  0x7689ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x768f000 -  0x78a6fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7951000 -  0x7a6dff7  com.apple.desktopservices (1.7.2 - 1.7.2) <8E74D101-8398-34F1-A463-B4950680A597> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7ad6000 -  0x7eb9ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x801c000 -  0x8026fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x802f000 -  0x80e3fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x8139000 -  0x8196fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x81b8000 -  0x81cbff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x81d9000 -  0x81fdfff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x8212000 -  0x82c1ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x8316000 -  0x8423ff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x8474000 -  0x8548fff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x85b5000 -  0x85beffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x85c6000 -  0x85ebffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x8600000 -  0x8697ff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x86c1000 -  0x8b03fff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x8b94000 -  0x8c09ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x8c31000 -  0x8cefff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x8d2d000 -  0x8d84ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x8db6000 -  0x8dc6ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x8dd3000 -  0x8e73ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x8ea0000 -  0x8eb5fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x8ec5000 -  0x8ec9fff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x8ed1000 -  0x8ed1fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x8ed4000 -  0x8fd2ff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9020000 -  0x906effb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9090000 -  0x9219ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9237000 -  0x9237fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x923a000 -  0x92a2fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92ac000 -  0x933effb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9348000 -  0x9700ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9758000 -  0x9893ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x98bc000 -  0x98e0fff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98e8000 -  0x9937ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9943000 -  0x995fff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9967000 -  0x996bffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9970000 -  0x9a7bff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9aa1000 -  0x9aa3ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x9aa7000 -  0x9ae8ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x9af8000 -  0x9b11fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9b29000 -  0x9b5cff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9b77000 -  0x9b94ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x9b9f000 -  0x9c90ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9c9e000 -  0x9d0dffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9d30000 -  0x9d31ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9d36000 -  0x9d3afff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9d43000 -  0x9d4cff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9d53000 -  0x9d92ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9da4000 -  0x9dc9ff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9de1000 -  0xa084ffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0xa11a000 -  0xa171ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0xa18a000 -  0xa1cefff  libGLU.dylib (8.6.1) <06BAFDCA-800C-35E3-B1A3-F05E105B86AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0xa1dc000 -  0xa1e2fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0xa1e8000 -  0xa1f5fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0xa206000 -  0xa241fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0xa249000 -  0xa24bfff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0xa250000 -  0xa253ffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0xa259000 -  0xa265ffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0xa273000 -  0xa2b8ff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0xa2c8000 -  0xa6e5fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0xa8f6000 -  0xa903ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0xa90b000 -  0xa92aff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0xa93d000 -  0xa947ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0xa950000 -  0xa970ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0xa97b000 -  0xa97bfff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0xa97e000 -  0xa9f8ff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0xaa28000 -  0xaa30fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0xaa39000 -  0xaad3fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0xab19000 -  0xab73fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0xab9e000 -  0xabd4ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0xabf0000 -  0xabf9ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0xac03000 -  0xacf7ff3  com.apple.QuickLookUIFramework (4.0 - 555.4) <D66F61A6-2C4C-359F-A2E3-7D023C33CB5A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0xad72000 -  0xadcbff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0xadf7000 -  0xae7ffff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0xaec2000 -  0xb0f2fff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0xb1d8000 -  0xb1fdff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0xb21b000 -  0xb21bfff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0xb21e000 -  0xb265ff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0xb287000 -  0xb61affb  com.apple.MediaToolbox (1.0 - 926.62) <7290B07B-4D03-3B46-809C-64C8FB97B40C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0xb694000 -  0xba90feb  com.apple.VideoToolbox (1.0 - 926.62) <B09EEF06-CB3C-3EAA-8B0E-22A1801F3CAE> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0xbb13000 -  0xbb2aff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0xbb40000 -  0xbb90ff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0xbbb2000 -  0xbcd0ff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0xbd03000 -  0xbe1bff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0xbe33000 -  0xc4bffeb  com.apple.CoreAUC (6.16.00 - 6.16.00) <654A0AB8-F24F-3489-8F70-F0A22414FE08> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0xc4d9000 -  0xc503ff9  com.apple.framework.Apple80211 (8.0.1 - 801.17) <8A8BBBFD-496B-35A6-A26E-ADF8D672D908> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0xc514000 -  0xc55dff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0xc57b000 -  0xc5bcff7  com.apple.framework.CoreWiFi (1.0 - 100.10) <944B3FAE-F901-3276-A676-9D52295DA817> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0xc5dd000 -  0xc638ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0xc642000 -  0xc687ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0xc6af000 -  0xc6b1fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0xc6b6000 -  0xc6bafff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0xc6c2000 -  0xc6c5fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0xc6cb000 -  0xc726fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0xc74d000 -  0xc762fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0xc77b000 -  0xc799ff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0xc7aa000 -  0xc823ff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0xc85f000 -  0xcab7ff1  com.apple.JavaScriptCore (8536 - 8536.26.7) <75629E05-65FE-3699-8CDC-80C95015CF42> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0xcb48000 -  0xcb4bff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0xcb51000 -  0xcb58ffe  com.apple.agl (3.2.1 - AGL-3.2.1) <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0xcb5f000 -  0xcc0afff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0xcc4e000 -  0xcc59ffb  com.apple.DirectoryService.Framework (10.8 - 151.10) <234F4A14-60ED-300B-93B2-D5052878558F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0xcc62000 -  0xcc91ff7  com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0xccad000 -  0xccb3fff  com.apple.phonenumbers (1.1 - 47) <DD22B3D1-DA4B-3794-9D73-E90D49A1F88E> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0xccba000 -  0xccefff7  com.apple.framework.internetaccounts (2.1 - 210) <8F2D0EB8-C997-3833-AA80-95AF7AA377BE> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0xcd12000 -  0xcd49ffa  com.apple.LDAPFramework (2.4.28 - 194.5) <8368FAE7-2B89-3A7D-B6EE-7184B522CB66> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0xcd56000 -  0xcd6fffb  com.apple.frameworks.preferencepanes (15.0 - 15.0) <802C922C-CF94-357F-B1AE-4244AA025C04> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0xcd82000 -  0xce63fff  libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
    0xceb6000 -  0xd1a1ff7  com.apple.AOSKit (1.05 - 151) <F470C45E-620C-3FF2-AB1C-2D57FCD215E7> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0xd1bf000 -  0xd1bfffe  com.apple.AOSMigrate (1.0 - 1) <4EA0829E-6AE5-3877-A5B6-032AFDF28D39> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0xd1c3000 -  0xd229ffc  com.apple.ISSupport (1.9.8 - 56) <D2AC4E10-0B3C-3194-AEB7-1E9964CBC0D0> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0xd260000 -  0xd269ffe  com.apple.aps.framework (3.0 - 3.0) <09D5F4F3-03FD-3077-A51D-B368F18ED1D4> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0xd273000 -  0xd283ff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0xd28a000 -  0xd2bdff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0xd2d0000 -  0xd3eeff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0xd49f000 -  0xe12eff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0xe8b0000 -  0xe8b2fff  com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0xe8b8000 -  0xeb08fff  com.apple.MessageFramework (6.0 - 1499) <1067CCB7-94BE-308D-B1D3-420D016C7510> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0xebdf000 -  0xec1cfff  com.apple.OSAKit (1.3 - 86) <0A129E24-F054-3C58-B1E1-68ECE126DC9C> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0xec41000 -  0xecdffeb  com.apple.MobileMe (8 - 1.0) <8B6C5BC1-865C-A52C-F1A1-53AB8D4261AD> /Applications/iWork '09/Pages.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0xed3b000 -  0xed69ff3  com.apple.framework.Admin (12.0 - 12.0) <E7364F79-8DF9-3A64-9C78-4CF317AD1123> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0xed86000 -  0xeff5fff  com.apple.CalendarStore (6.0 - 1245) <F1909196-2119-3516-952D-32E756BCC04D> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0xf0f8000 -  0xf1a9ff7  com.apple.CoreMessage (1.0 - 1499) <E9F40F6D-D2EB-3FE8-9D75-1655BB734FE9> /System/Library/PrivateFrameworks/CoreMessage.framework/Versions/A/CoreMessage
    0xf1fe000 -  0xf24bffb  com.apple.ExchangeWebServices (3.0 - 157) <29FBE8CC-2EC5-3209-B2CB-DD32E3E2ECC7> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0xf29f000 -  0xf2faff3  com.apple.IMAP (6.0 - 1499) <DC7A734E-AD01-36B3-931A-6EED6FB7E257> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
    0xf323000 -  0xf349fff  com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <8DE3CB89-6682-3C69-8115-7027583F1B29> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0xf35b000 -  0xf3b7fff  com.apple.corelocation (1.0 - 1239.39) <8159C021-DE49-332F-859E-00D7544EB568> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0xf3e4000 -  0xf3ecff3  com.apple.AppSandbox (2.0 - 1) <5C586FB0-9EBB-3F14-A63F-497C7A034359> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0xf3f4000 -  0xf438ff3  com.apple.CalDAV (6.0 - 112.5) <DF589033-DBDE-3162-A17D-401B39897767> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0xf468000 -  0xf471ff3  com.apple.CalendarAgentLink (1.0 - 37) <2D0AFE12-0235-3B60-B786-0EC07AC9F52C> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0xf47f000 -  0xf490fff  com.apple.CalendarFoundation (1.0 - 29) <D8714276-78B5-35A5-8C34-694E51AD9EB6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0xf4a0000 -  0xf502fff  com.apple.coredav (1.0.1 - 179.6) <80D3EE71-AA9C-3954-B262-6BB8FCB293BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0xf53c000 -  0xf58afff  com.apple.iCalendar (6.0 - 126.5) <C30CAF95-3D02-3E2E-8855-51DCDF8DB219> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0xf5b5000 -  0xf5c2ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0xf5cc000 -  0xf718fff  com.apple.syncservices (7.0 - 713) <442C8E15-8870-3D65-98EC-82C0E2580EC0> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0xf794000 -  0xf801ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6879CD26-8E35-315B-897C-D52B6EB741F6> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0xf82f000 -  0xf861ff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0xf873000 -  0xf87cfff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0xf884000 -  0xf8abff3  libsandbox.1.dylib (220) <D05340F5-32E0-31C7-9D26-28804F4723D6> /usr/lib/libsandbox.1.dylib
    0xf8b2000 -  0xf8c5ff3  com.apple.AppContainer (2.0 - 1) <799C8E8B-F983-3A3D-91CF-A2C9B5B7D007> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0xf8d4000 -  0xf8d8fff  com.apple.SecCodeWrapper (2.0 - 1) <EBB54594-C7F3-37FA-9759-09BD098ED688> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0xf8df000 -  0xf8e3ffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0xf8e7000 -  0xf8f3ff7  libexslt.0.dylib (11.3) <C7ACF116-D881-3C9F-ACFB-A7C9E19E42F6> /usr/lib/libexslt.0.dylib
    0xf8fa000 -  0xf9f6ff3  com.apple.DiskImagesFramework (10.8 - 344) <98C16F91-9D3E-3FD0-A30B-BD49EE4ED9A4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0xfa47000 -  0xfa4affe  com.apple.LoginUICore (2.0 - 2.0) <2CCB81A5-1194-3F16-8FD0-F779014E389D> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0xfa52000 -  0xfae9ffb  libCoreStorage.dylib (274.7) <1F99649B-4407-35F2-B419-9FE010360816> /usr/lib/libCoreStorage.dylib
    0xfb0c000 -  0xfb16ffb  libcsfde.dylib (274.7) <3560C5D0-59F3-311E-A298-1F71E4B58351> /usr/lib/libcsfde.dylib
    0xfb1f000 -  0xfb20ffb  libodfde.dylib (18) <3A56DA84-5ACC-3D91-B31A-B87BC4BC34F1> /usr/lib/libodfde.dylib
    0xfb26000 -  0xfbfcfff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0xfc54000 -  0xfc96fff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0xfca6000 -  0xfce6fff  com.apple.MediaKit (13 - 659) <37B8C1E3-B67D-3FE6-8A14-7FFD9F31C556> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0xfcf6000 -  0xfcf8ffd  com.apple.EFILogin (2.0 - 2) <C2D9F59D-8E7E-3FB3-BEB4-1BA05E422B2A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0xfcfd000 -  0xfd00ffb  libutil.dylib (30) <605DD210-46C2-3D4A-8DC1-08B0E80694FD> /usr/lib/libutil.dylib
    0xff73000 -  0xff80ff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x108a4000 - 0x108aefff  libCSync.A.dylib (324.6) <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x10ff3000 - 0x10ff6ff9  libCGXType.A.dylib (324.6) <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x12326000 - 0x12353ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
    0x12506000 - 0x1252fff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x127f8000 - 0x127f8ff7 +cl_kernels (???) <D017C86A-0E5B-400B-8241-3D5B3C934AB3> cl_kernels
    0x1808b000 - 0x1808dfff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x1809e000 - 0x1809fff1 +cl_kernels (???) <5073CFCC-62A4-4CB5-A92D-172065DB936B> cl_kernels
    0x180a3000 - 0x180d8fff  libTrueTypeScaler.dylib (84.5) <2598F930-5E6B-37D7-B1E6-18181A972C6E> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
    0x180e5000 - 0x18161ffb  libType1Scaler.dylib (101.1) <0D94D786-29F7-33DB-B64B-B264FA5EACD2> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libType1Scaler.dylib
    0x182e5000 - 0x182edffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x182f7000 - 0x182f8ff5 +cl_kernels (???) <B204FF5D-FD26-4ED3-9A76-FF4E02B57C71> cl_kernels
    0x18400000 - 0x18778ff3  com.apple.FinderKit (1.1.1 - 1.1.1) <5868FEF0-E512-3E22-91FF-7AFE4F7580A1> /System/Library/PrivateFrameworks/FinderKit.framework/FinderKit
    0x18927000 - 0x1897eff3  com.apple.Suggestions (2.0 - 102.1) <AA369EDE-913D-3C0D-8CE1-92C1C171CCA7> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x189ae000 - 0x18c3affb  com.apple.RawCamera.bundle (4.03 - 676) <53F1CD12-96E9-3E41-BEA9-46B75FC707D4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera

    bolivarzr wrote:
    problem is i cant active it my ipad i did forget my id and my paascode
    If you have iOS 7 installed... Then...The Apple ID and Password that was Originally used to Activate the iDevice is required.
    Activation Lock in iOS 7  >  http://support.apple.com/kb/HT5818

  • Captive runtime -target bundle does not create the package fails after creating a .tmp folder

    Hi Adobe Team, Experts,
    I cannot create a captive runtime package successfully on windows.
    This is the command I am using to create a captive runtime package for windows
    adt -package -keystore CodeSigning.pfx -storetype pkcs12 -storepass password -target bundle TestPackage Test-app.xml Test.swf
    The issue is the above command creates a .tmp directory "adt5072057577475387637.tmp" but does not create a directory by name "TestPackage" .
    Another observation is the above command works in-consistently it seems to create the directory sometimes but fails for the most.
    Funny enough !! It worked when I was creating a POC but  now when I am trying to release it stops working on me.
    It is the same machine I did POC on.
    The application descriptor has
    <supportedProfiles>desktop extendedDesktop</supportedProfiles>
    I have also tried
    adt -package -keystore CodeSigning.pfx -storetype pkcs12 -storepass password -target bundle TestPackage.exe Test-app.xml Test.swf
    as mentioned here -  http://www.riaspace.com/2011/08/bundling-air-3-runtime-in-air-desktop-applications/
    Flex SDK version - 4.6.0
    AIR SDK version - 3.1
    JDK version - jdk1.6.0_18
    Please advise as to how to fix this issue.
    Thanks,
    vshare

    Hi vshare,
    did you ever find a solution to this? I'm running into the same problem with no apparent solution.
    Thanks!

  • How to reinstall Pages as free after restoring

    I purchased an iPad Mini in December 2013 and could install the iworks applications for free. Today, my ipad mini got stuck and therefore I needed to restore it via itunes on my laptop.
    Everything is back fine. However I cannot see iworks under Purchased applications including Pages. When I search it in App Store, it displays with a price tag.
    So my question is how I can have these apps free again?
    I tried to sign out from itunes on ipad and signed in like suggested on some websites but it did not help. I signed with a different itunes id and signed out and signed in with original, it still did not help. And I had no backup prior to restoring.
    Any help is highly appreciated.
    Thanks.

    How to get all the iWork apps, iPhoto, and iMovie for free on an eligible iPhone or iPad
    http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
    About Free Apple Apps for iOS 7 compatible devices
    http://support.apple.com/kb/HT5913
     Cheers, Tom

  • How to retain page Scroll position after post back

    Hi,
    I have some long jsf web pages that requires user to user vertical scroll to access some fields. Now the problem I face is that, there are some fields at the bottom of the page, on click of which i need to do a postback, call valueChangeListner in the backing bean and populate some values in subsequent fields. And when the page reloads after the call to valueChangeListner, the top portion of the page is displayed to the user which is a little annoying. I want to display the portion of the page that the user was accessing before.
    Could you please help?
    Thanks,
    Srikanth.
    Edited by: sriki79 on Mar 15, 2009 9:45 AM

    Several ways:
    1) Populate the fields entirely clientside.
    2) Use Ajax to populate the fields.
    3) Use Javascript during onload to scroll to the desired position/element.

  • Unable to create or update object after creating database

    I have installed Oracle 8.1.6 on a Solaris server (with documentation, cause I'm not expert of Unix).
    Next I have created a database and a user (with the doc too !!)
    I can make select on all the objects of this database (system tables for example). I have created one test table without any problem. Now I can't create any table or update the table on the server or on a client (the sql + froze). The select orders work. I tried to restard the server but the problem is the same.
    Thank you very much for your help

    There are no error ! (alert.log)
    The sql plus (on the client or on the server) froze when I launch the create or update command. The select command works.
    Thank you very much.

Maybe you are looking for