Value binding not working with rendered attribute

In my jsf page i'm encountering problem with value binding it is not working for a h:inputText with rendered condition even when the rendered condition evaluates to true & the component is rendered.While trying to retrieve the value of the components with conditional rendering on submit i'm unable to retreive the value while on removing rendered condition the value binding is working perfectly
<h:selectOneMenu id="DropDown" value="#pc_GeneralRequestInfo.objInfoDTO.State}" rendered="#pc_GeneralRequestInfo.objAddressRequestDetailsDTO.selectedAddressType == 'HOME'}">                    
<f:selectItems value="#{pc_GeneralRequestInfo.statesList}" />
</h:selectOneMenu>

There is a { missing from the value attribute in the code you posted.                                                                                                                                                                                           

Similar Messages

  • CommandLink doesn't work with rendered-attribute

    Hello,
    I have quite a strange problem.
    I have a commanLink, which has a rendered attribute. The link is rendered conditionally, so the rendered-value comes from a bean.
    <h:commandLink rendered="#{Bean.canEdit}" action="#{Bean.selectDocumentToEdit}" >
               <h:outputText value="Edit doc" />
                              <f:param name="param" value="#{Bean.doc.id}"/>
    </h:commandLink>Showing the link is working like it should, but commandLink is not working with this. When I change rendered="true", commandLink works ok. But now it doesn't call the commandLink action at all.
    Any help would be appreciated

    rendered="true", commandLink works ok. But now it
    doesn't call the commandLink action at all.I meant it doesn't call the commandLink action method when retrieving rendered-value from bean.
    I'm using RI 1.1.01

  • Extract function not working with tag attributes

    Hi all,
    I have an xml document stored in the db as an xmlType. I am trying to use the extract function to retrieve values. The extract will work fine on tags without attributes. Any tags with attributes or tags beyond the tags with attributes will not be accessible.
    <tag1>
    <tag2>hi</tag2>
    <tag3 att="hello">bye</tag3>
    <tag4> hi again </tag4>
    </tag1>
    In the example above I can extract tag2 values but not tag3 or tag4 values.
    here is my select statement
    works
    select e.xmlval.extract('/tag1/tag2').getStringval()
    from test_xml e;
    does not work
    select e.xmlval.extract('/tag1/tag2/tag3').getStringval()
    from test_xml e;
    does not work
    select e.xmlval.extract('/tag1/tag2/tag3/tag4').getStringval()
    from test_xml e;
    Any ideas?

    Hi all,
    Found the issue. The problem was that I was not specifying the second argument to the extract function.
    The tag attribute that I was not handling was xmlns="".
    I used this atttribute as the second argument in the extract function and now I am off and running.
    Hope this helps someone.
    Cheers

  • Navigate Value Interaction not working with UNIONs displayed as pivot

    hi all - If created dozens of requests the uses drilling. Now I'm getting strange behavior in a certain scenario...
    I have a request that is a pivot view and contains UNIONs. One of the columns, employee name, is set up as 'Navigate' for the Value Interaction property. The request drilled to has employee name set up as 'Is Prompted' in the criteria.
    If the main request is displayed as a table view, the drilling works fine - the drilled to request opens with the intended employee that was clicked on in the main request. However, if the main request is a pivot view (which is the view I want) instead of a table view, the drilling does not work as intented - the drilled to request opens with all the employee names. I just want to drill on the clicked upon employee, not all the employees.
    I'm using OBIEE 10.1.3.4.
    Any suggestions as to why this would work as a table view but not as a pivot view?
    Thanks!

    The best solution is to define hyperlink for the detail report in the report column itself. Change the expression of column to HTML hyperlink. (Make sure value interaction is disabled) Use Go URL syntax to navigate to detail report and pass parameter, something like below:
    <pre>'&lt;a href=”saw.dll?Go&Path=/Shared/ReportName&Action=Navigate&P0=1&P1=eq&P2=Emp.Name&P3=’ || Emp.Name || ‘">’ || Emp.Name || ‘&lt;/a>’</pre>
    This link has more details:
    http://www.iwarelogic.com/2010/09/integrating-oracle-obiee-content-using-go-url-850/
    http://www.iwarelogic.com/wp-content/uploads/blogimg/2010/09/image006.jpg
    Hope this helps

  • F:ajax event value binding not working

    I'm trying to create an inputText composite component that generates a label, inputText and message with optional ajax capability.
    When I attempt to expose the f:ajax event property to page authors, I get the following exception:
    javax.faces.view.facelets.TagException: /resources/jimo/textEntry.xhtml @89,50 <f:ajax> '#{cc.attrs.ajaxEvent}' is not a supported event for HtmlInputText. Please specify one of these supported event names: blur, change, click, [etc...]
    The javadoc for f:ajax shows the event attribute as type javax.el.ValueExpression, but it doesn't seem that it's being evaluated as such. I'm able to expose the disabled attribute, and it's working as expected.
    Any feedback would be appreciated.
    I'm running glassfish3.0.1 with Mojarra 2.0.3 (FCS b03)
    Following is the component
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:ui="http://java.sun.com/jsf/facelets"
         xmlns:cc="http://java.sun.com/jsf/composite">
    <!-- INTERFACE -->
    <cc:interface>
         <cc:attribute name="label" required="true" type="java.lang.String" />
         <cc:attribute name="value" required="true" />
         <cc:attribute name="size" default="15" type="int" />
    <!-- lots of other inputText supported Attributes -->
         <cc:attribute name="ajax" default="true" type="java.lang.Boolean" />
         <cc:attribute name="ajaxEvent" />
         <cc:editableValueHolder name="txtEntry" />
         <cc:attribute name="valueChangeListener" targets="txtEntry"
              method-signature="void valueChange(javax.faces.event.ValueChangeEvent)" />
    </cc:interface>
    <!-- IMPLEMENTATION -->
    <cc:implementation>
         <span class="frmLabel">
              <h:outputLabel for="txtEntry" value="#{cc.attrs.label}" />
         </span>
         <h:inputText id="txtEntry" size="#{cc.attrs.size}"
                   value="#{cc.attrs.value}">
              <f:ajax disabled="#{not cc.attrs.ajax}" execute="@this"
                        render="txtEntryMsg" event="#{cc.attrs.ajaxEvent}" />
         </h:inputText>
         <h:message id="txtEntryMsg" for="txtEntry" />
    </cc:implementation>
    </html>And a sample using page
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
         xmlns:ui="http://java.sun.com/jsf/facelets"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:jimo="http://java.sun.com/jsf/composite/jimo">
    <ui:composition template="/template.xhtml">
         <ui:param name="title" value="Test Page for textEntry Component" />
         <h:form id="formid">
              <h:panelGrid id="frmGrid" columns="1">
                   <jimo:textEntry label="Number:" ajax="true" ajaxEvent="change"
                             immediate="true" value="#{simpleBean.dataItem.num}" size="10">
                        <f:convertNumber for="txtEntry" integerOnly="true"
                                  groupingUsed="false" />
                   </jimo:textEntry>
                   <jimo:textEntry label="Description:" ajax="true" ajaxEvent="blur"
                             blur="myBlurFunction(this);"
                             value="#{simpleBean.dataItem.descr}" size="50" />
                   <jimo:textEntry label="Prior Date Validator:" ajax="true"
                             ajaxEvent="change" maxlength="10"
                             valueChangeListener="#{simpleBean.changeListener}"
                             validator="#{simpleBean.priorDateValidator}" value="08/20/2004"
                             size="20">
                        <f:convertDateTime for="txtEntry" pattern="MM/dd/yyyy" type="date"
                                  timeZone="EST" />
                   </jimo:textEntry>
              </h:panelGrid>
              <h:panelGrid columns="2">
                   <h:commandButton id="saveButton" value="Save"
                             action="#{simpleBean.saveAction}"
                             actionListener="#{simpleBean.saveActionListener}" />
                   <h:commandButton id="resetButton" value="Reset"
                             type="reset" />
                   <h:message for="saveButton" />
              </h:panelGrid>
         </h:form>
    </ui:composition>
    </html>Here's the top of the stack trace(full trace is too large for post)
    [#|2010-08-26T15:25:25.343-0400|WARNING|glassfish3.0.1|javax.enterprise.system.container.web.com.sun.enterprise.web|_ThreadID=24;_ThreadName=http-thread-pool-8080-(1);|StandardWrapperValve[Faces Servlet]: PWC1406: Servlet.service() for servlet Faces Servlet threw exception
    javax.faces.view.facelets.TagException: /resources/jimo/textEntry.xhtml @94,38 <f:ajax> '#{cc.attrs.ajaxEvent}' is not a supported event for HtmlInputText.  Please specify one of these supported event names: blur, change, click, dblclick, focus, keydown, keypress, keyup, mousedown, mousemove, mouseout, mouseover, mouseup, select, valueChange.
         at com.sun.faces.facelets.tag.jsf.core.AjaxHandler.applyAttachedObject(AjaxHandler.java:321)
         at com.sun.faces.facelets.tag.jsf.core.AjaxHandler.applyNested(AjaxHandler.java:292)
         at com.sun.faces.facelets.tag.jsf.core.AjaxHandler.apply(AjaxHandler.java:171)
         at javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:131)
         at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:162)
         at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
         at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
         at com.sun.faces.facelets.tag.composite.ImplementationHandler.apply(ImplementationHandler.java:77)
         at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
         at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:89)
         at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:79)
         at com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:148)
         at com.sun.faces.facelets.tag.jsf.CompositeComponentTagHandler.applyCompositeComponent(CompositeComponentTagHandler.java:348)
         at com.sun.faces.facelets.tag.jsf.CompositeComponentTagHandler.applyNextHandler(CompositeComponentTagHandler.java:185)
         at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:162)
         at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
    |#]

    There is a { missing from the value attribute in the code you posted.                                                                                                                                                                                           

  • Problem with rerendering h:panelGrid with rendered attribute

    Hi,
    I am new to jsf and trying to learn its features as I find it easy and fast for development purpose.I have been developing with jsf for past few weeks and got myself stuck with a problem, tired of which I had to take the forum's help :). My problem is that I need to show/hide h:panelGrid using any of the options below:
    I tried putting the grid in the div and show/hide that div using javascript..works fine but the problem with this is, even when the div is hidden the components (h:inputText ) within the grid are submitted with the form, which should not be the case since its hidden (as with normal jsps).
    I worked around with rendered attribute of the grid, and show/hide this grid using the backing bean method which is actually a valueChangeListener of h:selectOneMenu and set the boolean for the rendered to true/false as required, the grid is hide/shown correctly, but this isn't giving me any solution because when I submit the form with this grid shown on the view, its components values are still not submitted :( I dont know whats the reason behind this or what clue am I missing here. I dont know why when the grid is shown correclty, its components values are not submitted.. hence not validated too..
    Any help will be highly appreciable.
    Regards
    srehman

    >
    gimbal2 wrote:
    No, in "normal jsps" you'll get the same thing - even though you
    visibly hide a component, it is still there and thus will still be part
    of a form submit. If you don't want form fields to submit, you'll have
    to make sure they are physically not there, or the fields are disabled.Well thanks alot for correcting me on this mate.
    Don't know either, it should work if you did everything correctly. Are
    you sure the databinding (to a JSF backing bean field) of the grid is
    correct? When you create a similar setup but without any of the
    show/hide logic, does it work then?I guess I have done it correctly but let me tell you, I have no direct binding to the grid itself, instead I have h:inputText fields in the grid that are bound to the backing bean's properties, which I need to submit and validate too. e.g{color:#800000}<h:panelGrid id="myPanel" columns="3" rendered="Bean.renderStatus">
    <h:outputText value="variable"/>
    <h:inputText id="v" value="Bean.property" required="true">
    <a4j:support ......... />
    </h:inputText>
    </h:panelGrid>{color}
    {color:#800000}<rich:message for="v"/>{color}
    Here I am able to hide and show the grid but I am unable to submit the field in any case whether its hidden or shown :( At first the grid is hidden and then on the valueChangeListener of h:selectOneMenu rendered value is set to either true or false.( renderStatus is set in the value change listener ).
    And yeah without this logic of hide/show its working fine with me. Any guess or idea what am I doing wrong here.
    Thanks for your time by the way.
    Regards,
    Shoaib

  • ADF bindings are not working with inheritance heirarchy.

    ADF bindings are not working with inheritance heirarchy. I am using embedded OC4J in JDeveloper 10.1.3.2.
    For the data model I have the following objects\attributes.
    1) User (abstract EJB 3.0 POJO)
    - Id
    - userId
    - userName
    2) Employee -> extends User (EJB 3.0 POJO)
    - enabled
    - password
    3) Manager -> extends Employee (EJB 3.0 POJO)
    - numOfEmployees
    4) UserSessionBean (Stateless Session Bean)
    - public User findUserByUserId(String userId)
    - public List<User> queryUserFindAll()
    - Object mergeEntity(Object entity)
    I created 2 JSF pages using ADF.
    1) ListUsers.jspx - Lists all the users of type Employee and Manager in a table. You can select an user and chose to modify the user details using a modify button.
    2) ModifyUser.jspx - Modify the selected user and persist the modified user details.
    I implemented ListUsers.jspx by dragging and dropping queryUserFindAll() method from the ADF datacontrol on to the JSF page and selected ADF Table format with selection enabled.
    Similarly for the ModifyUser.jspx page I dragged and dropped the User object returned by findUserByUserId(String userId) and selected ADF Form format. I selected OutputText field types for userId and userName.
    I then created a navigation case from ListUsers.jspx to ModifyUser.jspx and pass the selected user.
    Now when I try to run the web application, ListUsers.jspx correctly displays all the users. Then I select a user of type Employee and click on the modify button. This brings up the ModifyUser.jspx page. However, the UserId text field displays the value for "Id" field rather than "userId".
    Question that I have is:
    - Why is ADF framework not able to retrieve the appropriate user attribute value for a Employee based on the binding information in case of inheritance ?
    Thanks,
    Piyush

    Hi,
    tried with JDeveloper 10.1.3.3 and this works for me. Try JDeveloper 10.1.3.3 - if it doesn't work, have a closer look at your sessionFacade
    Frank

  • Validation Event Handler Not working with GTC Recon???

    We have implemented a Validation Event Handler on user entity.
    In the code we have implemented both the execute methods i.e. Orchestration andf Bulk Orchestration. We have created a UDF for Manager field and our validation handler checks whether the user in Manager UDF field is an Active user in OIM or not. In case the user is not an Active user, code will throw a Validation Failed Exception.
    At the time of changing the Manager UDF value from the Console directly Validation Event Handler is getting triggered but with GTC Recon Validation Handler is not Working.
    Previously i faced the same issue with the post process event handler but the problem get resoved when i implemented execute method with Bulk Orchestration. As per my understanding Bulk Orchestration exceute method gets called with GTC Recon and execute method with Orchestration gets called when changing the attribute value directly from the console.
    In case of Validation Event Handler i have implemented both but still validation Event handler is not working with GTC.
    Thanks in Advance....

    Any Help????

  • Bdc not working with workflow

    Hallo,
    I have an issue with a bdc FM i created not working with workflow.
    If I test the FM, it works ok.
    If i Test the method calling the FM it works ok.
    if i test the task calling the method it works ok.
    If I run the workflow it doesn't work, and i get the following messages:
    S     DC     1     Unable to initialise ABAP Control Framework ...             
    S     DC     1     Unable to initialise ABAP Control Framework ...          
    S     DC     6     Control Framework: Fatal error - GUI cannot be reached     
    A     SY     2     Exception condition "CNTL_ERROR" raised.
    What is the meaning of this??     
    Bdc is calling Me54n to set to click on reject button during Purchase Requisition Release,
    putting the PR processing state in status '08'
    I checked all the binding which are fine. No container parameter are passed a part from the business object.
    here is the FM coding:
    FUNCTION ZME_N_WF_REJ_PR.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(CTU) LIKE  APQI-PUTACTIVE DEFAULT 'X'
    *"     VALUE(MODE) LIKE  APQI-PUTACTIVE DEFAULT 'N'
    *"     VALUE(UPDATE) LIKE  APQI-PUTACTIVE DEFAULT 'L'
    *"     VALUE(GROUP) LIKE  APQI-GROUPID OPTIONAL
    *"     VALUE(USER) LIKE  APQI-USERID OPTIONAL
    *"     VALUE(KEEP) LIKE  APQI-QERASE OPTIONAL
    *"     VALUE(HOLDDATE) LIKE  APQI-STARTDATE OPTIONAL
    *"     VALUE(NODATA) LIKE  APQI-PUTACTIVE DEFAULT '/'
    *"     VALUE(BANFN_003) LIKE  BDCDATA-FVAL
    *"  EXPORTING
    *"     VALUE(SUBRC) LIKE  SYST-SUBRC
    *"  TABLES
    *"      MESSTAB STRUCTURE  BDCMSGCOLL OPTIONAL
    subrc = 0.
    perform bdc_nodata      using NODATA.
    perform open_group      using GROUP USER KEEP HOLDDATE CTU.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MECHOB'.
    *perform bdc_field       using 'DYN_6000-LIST'
                                 LIST_001.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MEREQ3328-AFNAM'.
    *perform bdc_field       using 'MEREQ3328-EKGRP'
                                 EKGRP_002.
    perform bdc_dynpro      using 'SAPLMEGUI' '0002'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MEOK'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MEPO_SELECT-BANFN'.
    perform bdc_field       using 'MEPO_SELECT-BANFN'
                                  BANFN_003.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MEREJECT'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'DYN_6000-LIST'.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MESAVE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'DYN_6000-LIST'.
    perform bdc_transaction tables messtab
    using                         'ME54N'
                                  CTU
                                  MODE
                                  UPDATE.
    if sy-subrc <> 0.
      subrc = sy-subrc.
      exit.
    endif.
    perform close_group using     CTU.
    ENDFUNCTION.
    INCLUDE BDCRECXY .
    I tries the same approach on ML81N to block a service entry sheet.(pressing the lock icon),
    I get exactly the same issue.
    Anybody knows how to resolve?
    Or how to do the same without using a bdc call?
    regards,
    marco

    Hi
    this is the Method callind the FM
    object is BUS2105 w delegation ZBUS2105.
    BEGIN_METHOD ZRELEASEREJECTED CHANGING CONTAINER.
    Data: CTU TYPE APQI-PUTACTIVE,      
          MODE TYPE APQI-PUTACTIVE,     
          UPDATE TYPE APQI-PUTACTIVE,
         NODATA TYPE APQI-PUTACTIVE.  
    CTU = 'X'.               
    MODE = 'N'.                
    UPDATE = 'L'.              
    NODATA = '/'.              
    iobjectkey = object-key.
       CALL FUNCTION 'ZME_N_WF_REJ_PR'             
         EXPORTING                                 
           BANFN_003 = iobjectkey                  
           NODATA = NODATA                                            
           UPDATE = UPDATE                         
           MODE = MODE                             
           CTU = CTU                               
         IMPORTING                                 
           SUBRC = SUBRC                           
         TABLES                                    
           MESSTAB = MESSAGE                       
         EXCEPTIONS                                
           OTHERS = 01.                            
       CASE SY-SUBRC.                              
         WHEN 0.            " OK                   
         WHEN OTHERS.       " to be implemented    
       ENDCASE.                                    
    SWC_SET_ELEMENT CONTAINER 'Subrc' SUBRC.                   
    SWC_SET_TABLE CONTAINER 'MESSAGE' MESSAGE.                                                                               
    END_METHOD.

  • Bdc not working with workflow - background task

    Hallo,
    I have an issue with a bdc FM i created not working with workflow.
    If I test the FM, it works ok.
    If i Test the method calling the FM it works ok.
    if i test the task calling the method it works ok.
    If I run the workflow it doesn't work, and i get the following messages:
    S DC 1 Unable to initialise ABAP Control Framework ...
    S DC 1 Unable to initialise ABAP Control Framework ...
    S DC 6 Control Framework: Fatal error - GUI cannot be reached
    A SY 2 Exception condition "CNTL_ERROR" raised.
    What is the meaning of this??
    Bdc is calling Me54n to set to click on reject button during Purchase Requisition Release,
    putting the PR processing state in status '08'
    I checked all the binding which are fine. No container parameter are passed a part from the business object.
    here is the FM coding:
    FUNCTION ZME_N_WF_REJ_PR.
    ""Local interface:
    *" IMPORTING
    *" VALUE(CTU) LIKE APQI-PUTACTIVE DEFAULT 'X'
    *" VALUE(MODE) LIKE APQI-PUTACTIVE DEFAULT 'N'
    *" VALUE(UPDATE) LIKE APQI-PUTACTIVE DEFAULT 'L'
    *" VALUE(GROUP) LIKE APQI-GROUPID OPTIONAL
    *" VALUE(USER) LIKE APQI-USERID OPTIONAL
    *" VALUE(KEEP) LIKE APQI-QERASE OPTIONAL
    *" VALUE(HOLDDATE) LIKE APQI-STARTDATE OPTIONAL
    *" VALUE(NODATA) LIKE APQI-PUTACTIVE DEFAULT '/'
    *" VALUE(BANFN_003) LIKE BDCDATA-FVAL
    *" EXPORTING
    *" VALUE(SUBRC) LIKE SYST-SUBRC
    *" TABLES
    *" MESSTAB STRUCTURE BDCMSGCOLL OPTIONAL
    subrc = 0.
    perform bdc_nodata using NODATA.
    perform open_group using GROUP USER KEEP HOLDDATE CTU.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
    perform bdc_field using 'BDC_OKCODE'
    '=MECHOB'.
    *perform bdc_field using 'DYN_6000-LIST'
    LIST_001.
    perform bdc_field using 'BDC_CURSOR'
    'MEREQ3328-AFNAM'.
    *perform bdc_field using 'MEREQ3328-EKGRP'
    EKGRP_002.
    perform bdc_dynpro using 'SAPLMEGUI' '0002'.
    perform bdc_field using 'BDC_OKCODE'
    '=MEOK'.
    perform bdc_field using 'BDC_CURSOR'
    'MEPO_SELECT-BANFN'.
    perform bdc_field using 'MEPO_SELECT-BANFN'
    BANFN_003.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
    perform bdc_field using 'BDC_OKCODE'
    '=MEREJECT'.
    perform bdc_field using 'BDC_CURSOR'
    'DYN_6000-LIST'.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
    perform bdc_field using 'BDC_OKCODE'
    '=MESAVE'.
    perform bdc_field using 'BDC_CURSOR'
    'DYN_6000-LIST'.
    perform bdc_transaction tables messtab
    using 'ME54N'
    CTU
    MODE
    UPDATE.
    if sy-subrc 0.
    subrc = sy-subrc.
    exit.
    endif.
    perform close_group using CTU.
    ENDFUNCTION.
    INCLUDE BDCRECXY .
    I tries the same approach on ML81N to block a service entry sheet.(pressing the lock icon),
    I get exactly the same issue.
    Anybody knows how to resolve?
    Or how to do the same without using a bdc call?
    regards,
    marco

    Hallo,
    I have an issue with a bdc FM i created not working with workflow.
    If I test the FM, it works ok.
    If i Test the method calling the FM it works ok.
    if i test the task calling the method it works ok.
    If I run the workflow it doesn't work, and i get the following messages:
    S DC 1 Unable to initialise ABAP Control Framework ...
    S DC 1 Unable to initialise ABAP Control Framework ...
    S DC 6 Control Framework: Fatal error - GUI cannot be reached
    A SY 2 Exception condition "CNTL_ERROR" raised.
    What is the meaning of this??
    Bdc is calling Me54n to set to click on reject button during Purchase Requisition Release,
    putting the PR processing state in status '08'
    I checked all the binding which are fine. No container parameter are passed a part from the business object.
    here is the FM coding:
    FUNCTION ZME_N_WF_REJ_PR.
    ""Local interface:
    *" IMPORTING
    *" VALUE(CTU) LIKE APQI-PUTACTIVE DEFAULT 'X'
    *" VALUE(MODE) LIKE APQI-PUTACTIVE DEFAULT 'N'
    *" VALUE(UPDATE) LIKE APQI-PUTACTIVE DEFAULT 'L'
    *" VALUE(GROUP) LIKE APQI-GROUPID OPTIONAL
    *" VALUE(USER) LIKE APQI-USERID OPTIONAL
    *" VALUE(KEEP) LIKE APQI-QERASE OPTIONAL
    *" VALUE(HOLDDATE) LIKE APQI-STARTDATE OPTIONAL
    *" VALUE(NODATA) LIKE APQI-PUTACTIVE DEFAULT '/'
    *" VALUE(BANFN_003) LIKE BDCDATA-FVAL
    *" EXPORTING
    *" VALUE(SUBRC) LIKE SYST-SUBRC
    *" TABLES
    *" MESSTAB STRUCTURE BDCMSGCOLL OPTIONAL
    subrc = 0.
    perform bdc_nodata using NODATA.
    perform open_group using GROUP USER KEEP HOLDDATE CTU.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
    perform bdc_field using 'BDC_OKCODE'
    '=MECHOB'.
    *perform bdc_field using 'DYN_6000-LIST'
    LIST_001.
    perform bdc_field using 'BDC_CURSOR'
    'MEREQ3328-AFNAM'.
    *perform bdc_field using 'MEREQ3328-EKGRP'
    EKGRP_002.
    perform bdc_dynpro using 'SAPLMEGUI' '0002'.
    perform bdc_field using 'BDC_OKCODE'
    '=MEOK'.
    perform bdc_field using 'BDC_CURSOR'
    'MEPO_SELECT-BANFN'.
    perform bdc_field using 'MEPO_SELECT-BANFN'
    BANFN_003.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
    perform bdc_field using 'BDC_OKCODE'
    '=MEREJECT'.
    perform bdc_field using 'BDC_CURSOR'
    'DYN_6000-LIST'.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
    perform bdc_field using 'BDC_OKCODE'
    '=MESAVE'.
    perform bdc_field using 'BDC_CURSOR'
    'DYN_6000-LIST'.
    perform bdc_transaction tables messtab
    using 'ME54N'
    CTU
    MODE
    UPDATE.
    if sy-subrc 0.
    subrc = sy-subrc.
    exit.
    endif.
    perform close_group using CTU.
    ENDFUNCTION.
    INCLUDE BDCRECXY .
    I tries the same approach on ML81N to block a service entry sheet.(pressing the lock icon),
    I get exactly the same issue.
    Anybody knows how to resolve?
    Or how to do the same without using a bdc call?
    regards,
    marco

  • OBIEE 11g Prompt's default value doesn't work with a presentation variable

    Hi, I'm using OBIEE 11g and I have two dashboard prompts (Product Name and Product Number). Theses prompts are hierarquical, so the values that are displayed in the Product Number prompt have dependency with the values chosen on the Product Name prompt. This I was able to do, but now I want to put a default value on the Product Number prompt. The steps are:
    1 - The user chooses the value for the Product Name Prompt and by doing that the Product Number prompt is automatically filled with the correspondent value.
    But unfortunatelly this is not working, after choosing the value for the Product Name the default value for Product Number is not displayed (when you open the prompt the values displayed are correct and already filtered considering the Product Name but the prompt is not automatically filled with the default value).
    What I did is:
    On the Product Name Prompt I've created a Presentation Variable called PROD.
    On the Product Number Prompt I've selected:
    1 - For the "Choice List Values" field I've checked the option "Limit Values by All Prompts"
    2 - For the "Default Selection" field I've chosen the SQL Results option and enter the following SQL:
    SELECT "Products"."Product Number" FROM "Sample Sales Lite"."Products" WHERE "Products"."Product"='@{variables.PROD}
    What am I doing wrong?
    Thank you,
    Carla

    Sorry I was wrong in my previous thread.
    Actually your approach is not correct, Product Number choose constraint that will show as per the selection of Product Name.
    Coming to default value for Product Number you are going for sql override that is okay but not work with variable, instead of setting default values for product number set that to product name.
    if not you need to go for 2 different prompts
    Prompt 1 Product Name hit GO
    Prompt 2 will work based on as you defined earlier with variables
    Hope this helps

  • Layout adjustment not working with tables

    Hi all
    Why will layout adjustment not work with tables?
    I am trying to re-format from A4 landscape to A4 portrait.
    The text box containing the table will resize but not the table.
    Any clues why this might be, I don't want to manually resize every table in the document.
    Many thanks,
    Rob

    Thanks Jongware,
    Having resized the table and got the little red ovals, I tried various things like changing the font size etc but the best workaround I found was to select the table and change the cell inset value to 0, this got rid of all red ovals and I didn't need to change the font size.
    Cheers,
    Rob

  • PreparedStatement not working with Oracle

    Hi All,
    I am using preparedStatement in my JDBC code to fetch/insert values from oracle9i database.
    I am checking condition like if a given record does not exist then insert it else update it.
    First time it works when there is no row in database, however for subsequent run it's not able to return me the result though that row exist in database and this resulting in DuplicateKeyException becuase it try to create the row in db again.
    The code is working fine for MySQL DB2 and SQLServer but doesn't work in case oracle 9i
    Here is mycode
    //problem is here 1st time it works next time it is not retunring true though record is there in DB.
    if(isItemExist("1","CORP"))
    updateItem("1","CORP","DESC1");
    else
    insertItem("1","CORP","DESC1");
    public boolean isItemExist(String itemid, String storeid)
    String FIND_SQL = "SELECT item_desc from item where item_id = ? and store_id = ? ";          
    c = utils.getConnection();
    ps = c.prepareStatement();
    int i = 1;
    ps.setString(i++, storeid);
    ps.setString(i++, itemid);
    rs = ps.executeQuery();
    if(rs.next()){
         return true;
    utils.close(c, ps, rs);
    else{
         return false;
    utils.close(c, ps, rs);
    public void createItem(String itemid, String storeid, String item_desc)
    String INSERT_SQL = "INSERT INTO item(item_id,store_id,item_desc)values(?, ?, ?)";
    c = utils.getConnection();
    ps = c.prepareStatement();
    int i = 1;
    ps.setString(i++, itemid);
    ps.setString(i++, storeid);
    ps.setString(i++, item_desc);
    ps.executeUpdate();
    utils.close(c, ps, null);
    public void updateItem(String itemid, String storeid, String item_desc)
    String INSERT_SQL = "UPDATE item SET item_desc = ?, store_id=? WHERE item_id = ?";
    c = utils.getConnection();
    ps = c.prepareStatement();
    int i = 1;
    ps.setString(i++, item_desc);
    ps.setString(i++, storeid);
    ps.setString(i++, itemid);
    ps.executeUpdate();
    utils.close(c, ps, null);
    Kindly suggest what's wrong with code. because same code works with other databse like SQL Server, MySQL but it is not working with oracle9i.

    if(isItemExist("1","CORP"))
    updateItem("1","CORP","DESC1");
    else
    insertItem("1","CORP","DESC1");
    String FIND_SQL = "SELECT item_desc from item where item_id = ? and store_id = ? ";
    ps.setString(i++, storeid);
    ps.setString(i++, itemid);
    String INSERT_SQL = "INSERT INTO item(item_id,store_id,item_desc)values(?, ?, ?)";
    ps.setString(i++, itemid);
    ps.setString(i++, storeid);
    ps.setString(i++, item_desc);
    String INSERT_SQL = "UPDATE item SET item_desc = ?, store_id=? WHERE item_id = ?";
    ps.setString(i++, item_desc);
    ps.setString(i++, storeid);
    ps.setString(i++, itemid);My first guess, looking at the above snippets, would be that the item_id field is a number and not a string and so you should be calling ps.setInt instead of ps.setString when setting that parameter.
    This is only a guess, however, since you have not posted what the actual error is, which will probably give a hint to what the actual error is.

  • Better privecy does not work with windows vista home prem. what other program removes LSO'S AND HOW can I stop trackers?

    Question
    better privacy does not work with windows vista home prem. what other program removes LSO'S AND HOW can I stop trackers? edit
    Details

    As a temporary workaround, I believe this Adobe management page allows you to clear your "Flash cookies": [http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html Adobe - Flash Player : Settings Manager - Website Storage Settings panel] (hosted on macromedia.com -- Macromedia was the original developer of Flash).
    Regarding the script error, if I'm reading the script correctly, it is related to accessing your Flash cookies directory. It seems the publisher's support forum is not currently available for searching, but that might be a good next step.
    In the meantime, could you check whether the script has the correct location for your Flash cookies directory? If you can't access Tool > BetterPrivacy, you could check here:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''bpr''' and pause while the list is filtered
    (3) There should be a bolded setting named '''extensions.bprivacy.DataDir''' which looks approximately like the following:
    C:\Users\''yourWindowsUsername''\AppData\Roaming\Macromedia
    Do you have a similar value? If you paste the path used by BetterPrivacy into a Windows Explorer window, does it open? Also, click a couple levels in the folder, can you see:
    Flash Player \ #SharedObjects
    If the value is wrong, right-click the wrong value and choose Reset. BetterPrivacy should update the value the next time you try to access it.
    If the value is blank, you could try inserting a sensible value and see whether that helps.
    Any luck?

  • Wintergame does not work with 10.8 and no assistence from apple or the seller

    I have bought in the official Apple Ap Store the game Wintergames. But it does not work with mit OSX 10.8.3
    Every i try to load this programm it brakes down. I have contacted the seller. He is not interested in the problem and gave only the hint to re-intall the programm. This i have done 3 times. It does not work. I have get in contact with the Apple Support. They answered me they were not responsible for that.
    And i ask me.... why do Apple sell programms in their own stores, that do not work.
    This is the remark it get, if i start this programm:
    Process:         wintergames [3566]
    Path:            /Applications/WinterGames.app/Contents/MacOS/wintergames
    Identifier:      com.rune-soft.wintergames
    Version:         1.2.0 (1.2)
    App Item ID:     427639548
    App External ID: 10667633
    Code Type:       X86 (Native)
    Parent Process:  launchd [211]
    User ID:         501
    Date/Time:       2013-04-10 13:31:54.394 +0200
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          29498 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  38 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D1D3A31E-9A15-BB5E-1704-71380FD0FE3E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
    VM Regions Near 0x14:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K]
    ---/--- SM=NUL  /Applications/WinterGames.app/Contents/MacOS/wintergames
        __TEXT                 0000000000001000-0000000000197000 [ 1624K]
    r-x/rwx SM=COW  /Applications/WinterGames.app/Contents/MacOS/wintergames
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.rune-soft.wintergames         0x00088619 MainMenu::createMenues() +
    393
    1   com.rune-soft.wintergames         0x000a7db4 MainMenu::init() + 4804
    2   com.rune-soft.wintergames         0x00070dfa
    WinMain(Windows::HINSTANCE__*, Windows::HINSTANCE__*, char*, int) + 394
    3   com.rune-soft.wintergames         0x000042ff -[GameAppDelegate
    mainWinThreadProc:] + 303
    4   com.rune-soft.wintergames         0x00003c46 -[GameAppDelegate
    applicationDidFinishLaunching:] + 342
    5   com.apple.Foundation              0x997f9152 __57-[NSNotificationCenter
    addObserver:selector:name:object:]_block_invoke_0 + 49
    6   com.apple.CoreFoundation          0x91e6c861
    ___CFXNotificationPost_block_invoke_0 + 257
    7   com.apple.CoreFoundation          0x91db7e9a _CFXNotificationPost + 2794
    8   com.apple.Foundation              0x997e1c88 -[NSNotificationCenter
    postNotificationName:object:userInfo:] + 92
    9   com.apple.AppKit                  0x934750fe -[NSApplication
    _postDidFinishNotification] + 367
    10  com.apple.AppKit                  0x93474db8 -[NSApplication
    _sendFinishLaunchingNotification] + 249
    11  com.apple.AppKit                  0x93471d0f
    -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 751
    12  com.apple.AppKit                  0x93471824
    -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] +
    378
    13  libobjc.A.dylib                   0x96383628 -[NSObject
    performSelector:withObject:withObject:] + 77
    14  com.apple.Foundation              0x997fc73a __76-[NSAppleEventManager
    setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 +
    121
    15  com.apple.Foundation              0x997fc291 -[NSAppleEventManager
    dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430
    16  com.apple.Foundation              0x997fc08e
    _NSAppleEventManagerGenericHandler + 173
    17  com.apple.AE                      0x94d5aa35 aeDispatchAppleEvent(AEDesc
    const*, AEDesc*, unsigned long, unsigned char*) + 331
    18  com.apple.AE                      0x94d2ffbe
    dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    19  com.apple.AE                      0x94d2fe7d aeProcessAppleEvent + 318
    20  com.apple.HIToolbox               0x99bd4c58 AEProcessAppleEvent + 100
    21  com.apple.AppKit                  0x9346dd4d _DPSNextEvent + 1655
    22  com.apple.AppKit                  0x9346d1dc -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    23  com.apple.AppKit                  0x9346363c -[NSApplication run] + 855
    24  com.apple.AppKit                  0x93406666 NSApplicationMain + 1053
    25  com.rune-soft.wintergames         0x0000383a start + 54
    Thread 1:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x99ad59ae kevent + 10
    1   libdispatch.dylib                 0x975bbc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                 0x975bb7a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component    0x9255f5ac 0x91f69000 +
    6251948
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore    0x906ad7da AIOFileThread(void*) +
    892
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 7:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib            0x99ad27d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x99ad1cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio         0x901e5310
    HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned
    long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio         0x901dfe3e
    HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned
    int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio         0x901de67d
    HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio         0x901de061
    HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio         0x901e804a
    ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio         0x901ddf85 HALB_IOThread::Entry(void*)
    + 69
    8   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    9   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0008849b  ecx: 0xbfffdfcc  edx: 0x02aa7200
      edi: 0x00000000  esi: 0x00000000  ebp: 0xbfffea58  esp: 0xbfffb5f0
       ss: 0x00000023  efl: 0x00010282  eip: 0x00088619   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000014
    Logical CPU: 2
    Binary Images:
        0x1000 -   0x196fff +com.rune-soft.wintergames (1.2.0 - 1.2)
    <A73F630B-CA42-6B3F-60C8-DA7B3E2676A3>
    /Applications/WinterGames.app/Contents/MacOS/wintergames
      0x2f2000 -   0x31dff7  com.apple.audio.OpenAL (1.6 - 1.6)
    <CDE1BC7D-871D-3BE7-A6DE-96F6806BB7E1>
    /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
      0x32d000 -   0x3befee +libfreetype.dylib (1)
    <AAF09BB8-8463-7133-C835-7B11945D39CB>
    /Applications/WinterGames.app/Contents/Frameworks/libfreetype.dylib
      0x3d3000 -   0x962fe3 +Cg.dylib (0)
    /Applications/WinterGames.app/Contents/Frameworks/Cg.dylib
    0x1093000 -  0x10a0ff3  com.apple.Librarian (1.1 - 1)
    <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB>
    /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x1728000 -  0x1732ff7 +com.unsanity.smartcrashreports (Smart Crash
    Reports version 1.5 - 1.5) /Library/InputManagers/*/Smart Crash
    Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x173f000 -  0x179cfff +com.cocoamug.CosmoPod (3.1)
    <DF7EFF0D-F74B-D0FC-3712-4E36D75D0043>
    /Library/InputManagers/*/CosmoPod.bundle/Contents/MacOS/CosmoPod
    0x17fa000 -  0x17fbffc +com.CASIO.EXLIM.component (1.1 - 1.1)
    /Library/QuickTime/CASIO AVI Importer.component/Contents/MacOS/CASIO AVI
    Importer
    0x4d25000 -  0x4dd0fff  libcrypto.0.9.7.dylib (106)
    <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x4e14000 -  0x4f33ffb  com.apple.WebKit (8536 - 8536.28.10)
    <C181C3FB-91E3-38AB-A709-6B61935B3AD8>
    /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x5268000 -  0x526bfef  com.apple.LiveType.component (2.1.3 - 2.1.3)
    /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x60ad000 -  0x6d40ffb  com.apple.WebCore (8536 - 8536.28.10)
    <AA738A8C-808D-302A-B58D-404C58075C45>
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.
    framework/Versions/A/WebCore
    0x90d9000 -  0x913efde  com.apple.LiveType.framework (2.1.3 - 2.1.3)
    /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x915e000 -  0x91d0fff +com.DivXInc.DivXDecoder (6.4.0 - 6.4.0)
    /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x91de000 -  0x9224fc3  com.apple.motion.component (1.0 - 1.0)
    <77973A13-4E79-426F-853F-2318E52A2207>
    /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x922a000 -  0x922d02f  Motion (1)
    <B5E862EE-E0FF-4F86-A789-98E3E601A18C>
    /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xb1b2000 -  0xb346ffb  GLEngine (8.7.25)
    <37CEB6BA-0A46-3A34-BE81-7A0ED7DE1830>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEn
    gine
    0xb37d000 -  0xb4fefff  libGLProgrammability.dylib (8.7.25)
    <CE1A4DFC-EEB2-37C1-B574-0338666C4017>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProg
    rammability.dylib
    0xb530000 -  0xb53bfff  libGPUSupport.dylib (8.7.25)
    <08BED1B3-FD0C-3137-BC0C-39EED6029D84>
    /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Librarie
    s/libGPUSupport.dylib
    0xb542000 -  0xb56dff7  GLRendererFloat (8.7.25)
    <2173CC9F-3A9A-37EB-BB50-3E60ABF7F5A3>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bund
    le/GLRendererFloat
    0xb576000 -  0xb57effd  libcldcpuengine.dylib (2.2.16)
    <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpu
    engine.dylib
    0xef8c000 -  0xef8effd  com.apple.PDFImporter (2.2 - 22)
    <29C10CDB-1E25-39CE-AF37-69DC3DE4BB51>
    /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporte
    r
    0xf394000 -  0xf452ff3  ColorSyncDeprecated.dylib (400)
    <A959DD25-E448-3563-B74E-E58C69961C76>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xfc00000 -  0xfc05ff7  com.apple.DesktopVideoOut (1.2.4 - 1.2.4)
    /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOu
    t
    0xfc94000 -  0xfc99fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 -
    2.3.7fc4) <081467DA-1F55-3C0C-8081-062A985F36B7>
    /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugI
    n.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0xfca0000 -  0xff90feb +org.perian.Perian (1.2.3 - 1.2.3)
    <722FFF4F-46EF-E5BE-70A6-42B5873D2B37>
    /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x1040b000 - 0x105d9ff3 +com.MyCometG3.mp4vDecoder (0.7.7 - 2008.06.01)
    /Library/QuickTime/mp4vDecoder.component/Contents/MacOS/mp4vDecoder
    0x106a9000 - 0x106bbfd9  com.apple.FCP Uncompressed 422.component (1.5 -
    1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP
    Uncompressed 422
    0x106c1000 - 0x10729feb  com.apple.AppleProResDecoder (3.0.2 - 5718)
    <3F859389-0434-372E-842F-F15A76B4A8B6>
    /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/Appl
    eProResDecoder
    0x1075a000 - 0x107a3fff  com.apple.AppleVAH264HW.component (3.0 - 3.0)
    <FDF1C720-ED0E-323E-BA44-21423DE18D61>
    /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH2
    64HW
    0x10867000 - 0x1086effc  com.apple.AppleGVAHW.component (1.1 - 1)
    <5DB91F15-3FD3-308F-8FC5-662562F3EA78>
    /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x10875000 - 0x109c0fff  com.apple.AppleGVAFramework (5.0.6 - 5.0.6)
    <103CBDDD-E0C2-3B62-923B-AA46F2AB3CD7>
    /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x109dc000 - 0x10a16fff  com.apple.QuickTimeFireWireDV.component (7.7.1 -
    2599.24) <1E9A8E7C-A9FD-34FD-AB7C-C3784BAB821F>
    /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/Qui
    ckTimeFireWireDV
    0x10a22000 - 0x10a66fe7  com.apple.DVCPROHDCodec (1.4 - 231)
    /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x10a7b000 - 0x10b1efd3  com.apple.AppleHDVCodec (1.4.1 - 222)
    <68ABD695-E990-4F5F-9074-D2C4AE440637>
    /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x10b3c000 - 0x10b5dfff  com.apple.AppleIntermediateCodec (2.0.1 - 5718)
    <D4B0F083-2E31-3508-BE1D-71F8BA917702>
    /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIn
    termediateCodec
    0x10b6c000 - 0x10b70ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1)
    <AD3A3083-F5A3-3ED1-8086-10A977DE9118>
    /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Code
    c
    0x10b75000 - 0x10b95ff3  com.apple.IMXCodec (1.3.1 - 147)
    /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x10bad000 - 0x10bc5ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31)
    <6093BFF1-355E-3F02-903F-FDB466324F99>
    /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/AppleP
    ixletVideo
    0x1255e000 - 0x125b0fff  com.apple.QuickTimeMPEG.component (7.7.1 -
    2599.24) <16DFA65D-83BF-3EC1-B904-C2088AF8CCD1>
    /System/Library/QuickTime/QuickTimeMPEG.component/Contents/MacOS/QuickTime
    MPEG
    0x70000000 - 0x7015eff7  com.apple.audio.units.Components (1.8 - 1.8)
    <F1EA4AF9-517E-3288-9AA4-F20546791B77>
    /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8e2fb000 - 0x8ec49ff3  com.apple.GeForceGLDriver (8.10.44 - 8.1.0)
    <4B231127-7885-33A3-9FC7-7EF42A066FD7>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGL
    Driver
    0x8fe5d000 - 0x8fe8fe57  dyld (210.2.3)
    <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x9000bffc  libGIF.dylib (849)
    <2F1DE1C6-4779-35A6-8ED5-BBF8ADD5962A>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.d
    ylib
    0x9000c000 - 0x901c8ffd  libicucore.A.dylib (491.11.2)
    <59A23F06-16AD-35F8-BA58-D17305232402> /usr/lib/libicucore.A.dylib
    0x901c9000 - 0x90227ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1)
    <953DD669-8C6E-387D-AB3F-D8C8965347DF>
    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90228000 - 0x9022affb  libRadiance.dylib (849)
    <EAF7C74F-2A71-3A07-82E1-4FADEAFCF201>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadia
    nce.dylib
    0x90245000 - 0x90278ffb  com.apple.GSS (3.0 - 2.0)
    <9566A96D-C296-3ABD-A12A-E274C81C0B25>
    /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9033c000 - 0x905dfff3  com.apple.CoreImage (8.2.4 - 1.0.1)
    <BA4EE8D7-FE72-3CC3-801F-B69D8A8B426F>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Core
    Image.framework/Versions/A/CoreImage
    0x905e0000 - 0x90648fe7  libvDSP.dylib (380.6)
    <55780308-4DCA-3B10-9703-EAFC3E13A3FA>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvDSP.dylib
    0x90649000 - 0x9094eff7  com.apple.CoreServices.CarbonCore (1037.5 -
    1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca
    rbonCore.framework/Versions/A/CarbonCore
    0x9094f000 - 0x90d4bfeb  com.apple.VideoToolbox (1.0 - 926.87)
    <D6460276-E1CF-317D-B32F-80EAE916168C>
    /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90d4c000 - 0x90d6efff  libc++abi.dylib (26)
    <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x90d6f000 - 0x90e7aff7  libJP2.dylib (849)
    <B2D0E844-C390-376C-91D9-F3501B5C7A83>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.d
    ylib
    0x90e7d000 - 0x90e85fff  libcopyfile.dylib (89)
    <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x90e86000 - 0x90f83ff7  com.apple.DiskImagesFramework (10.8.3 - 345)
    <26D0C7F8-E87E-3511-8388-8EE616A39D6D>
    /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImag
    es
    0x90f84000 - 0x90f8efff  libCSync.A.dylib (331.0.4)
    <71A7B331-C8A2-322C-AFB0-062EE9C3B848>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90f8f000 - 0x90fafffd  com.apple.ChunkingLibrary (2.0 - 133.3)
    <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48>
    /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chu
    nkingLibrary
    0x90fb0000 - 0x90fb6fff  libGFXShared.dylib (8.7.25)
    <4268BFAF-4529-3B40-A8B9-66F176AC20CF>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXSha
    red.dylib
    0x90fb7000 - 0x90fc6fff  libGL.dylib (8.7.25)
    <818E3E6B-9B00-3117-8157-9E95CB59A47B>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl
    ib
    0x90fc7000 - 0x90fc8fff  libdnsinfo.dylib (453.19)
    <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x90fc9000 - 0x90fccff9  libCGXType.A.dylib (331.0.4)
    <981B13D6-4E8B-3468-92D3-FE436B48C0DA>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90fcd000 - 0x9108bff3  com.apple.ColorSync (4.8.0 - 4.8.0)
    <B534DE6A-3AF0-307C-B274-A4FCFC5BC696>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/ColorSync
    0x9108c000 - 0x9108dffd  com.apple.TrustEvaluationAgent (2.0 - 23)
    <E42347C0-2D3C-36A4-9200-757FFA61B388>
    /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/
    A/TrustEvaluationAgent
    0x9108e000 - 0x910a5fff  com.apple.GenerationalStorage (1.1 - 132.3)
    <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63>
    /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A
    /GenerationalStorage
    0x910a6000 - 0x9117cfff  com.apple.DiscRecording (7.0 - 7000.2.4)
    <528052A0-FCFB-3867-BCDF-EE0F8A998C1C>
    /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecordin
    g
    0x911ba000 - 0x91343ff7  com.apple.vImage (6.0 - 6.0)
    <1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma
    ge.framework/Versions/A/vImage
    0x91344000 - 0x919d0ff3  com.apple.CoreAUC (6.16.13 - 6.16.13)
    <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E>
    /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x919d1000 - 0x919dffff  libxar.1.dylib (105)
    <6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
    0x919e0000 - 0x91a4fffb  com.apple.Heimdal (3.0 - 2.0)
    <964D9952-B0F2-34F6-8265-1823C0D5EAB8>
    /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91a50000 - 0x91a95ff7  com.apple.NavigationServices (3.7 - 200)
    <6AB1A00C-BC94-3889-BA95-40A454B720CE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati
    onServices.framework/Versions/A/NavigationServices
    0x91a96000 - 0x91aa4ff7  libz.1.dylib (43)
    <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x91aa5000 - 0x91ab1ff7  com.apple.NetAuth (4.0 - 4.0)
    <52D23F12-0718-341D-B9DF-16C814022250>
    /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x91ab2000 - 0x91b4dfff  com.apple.CoreSymbolication (3.0 - 117)
    <F705A8CD-A04A-3A84-970A-7B04BC05DA97>
    /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/C
    oreSymbolication
    0x91b4e000 - 0x91b4ffff  liblangid.dylib (116)
    <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x91b50000 - 0x91cadffb  com.apple.QTKit (7.7.1 - 2599.24)
    <39CC892D-2874-33FE-BE30-87FE07D875BD>
    /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91cae000 - 0x91cdbffb  com.apple.CoreServicesInternal (154.2 - 154.2)
    <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
    /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/
    A/CoreServicesInternal
    0x91cdc000 - 0x91d6effb  libvMisc.dylib (380.6)
    <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvMisc.dylib
    0x91d6f000 - 0x91f57ffb  com.apple.CoreFoundation (6.8 - 744.18)
    <68AFEE40-0078-347E-9DEE-32CFE0062A10>
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat
    ion
    0x91f58000 - 0x91f59fff  libquarantine.dylib (52)
    <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x91f66000 - 0x91f68fff  com.apple.securityhi (4.0 - 55002)
    <79E3B880-3AB7-3BF3-9CDF-117A45599545>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security
    HI.framework/Versions/A/SecurityHI
    0x91f69000 - 0x92ca1fff  com.apple.QuickTimeComponents.component (7.7.1 -
    2599.24) <51BE2DF8-7B3B-36F5-8860-50071A8702E4>
    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui
    ckTimeComponents
    0x92ca2000 - 0x92d89ff7  libxml2.2.dylib (22.3)
    <56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
    0x92d8a000 - 0x92da8ff3  com.apple.openscripting (1.3.6 - 148.3)
    <F3422C02-5ACB-343A-987B-A2D58EA2F5A8>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri
    pting.framework/Versions/A/OpenScripting
    0x92da9000 - 0x92edcff3  com.apple.MediaControlSender (1.7 - 170.20)
    <7B1AC317-AFDB-394F-8026-9561930E696B>
    /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/
    MediaControlSender
    0x92edd000 - 0x92f0efff  com.apple.DictionaryServices (1.2 - 184.4)
    <CCB46C81-57C6-3F45-B77C-4D29E4CD6BA6>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Di
    ctionaryServices.framework/Versions/A/DictionaryServices
    0x92f0f000 - 0x93126fff  com.apple.CoreData (106.1 - 407.7)
    <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93127000 - 0x9313cfff  com.apple.ImageCapture (8.0 - 8.0)
    <F681CA5B-2871-32CF-8E9F-9220EB387407>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap
    ture.framework/Versions/A/ImageCapture
    0x9313d000 - 0x9313efff  libsystem_sandbox.dylib (220.2)
    <61A79095-1978-3AAA-B0E0-658BC8E5F045>
    /usr/lib/system/libsystem_sandbox.dylib
    0x9313f000 - 0x93297ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8)
    <0D36953C-9897-3E9B-8C70-847E90B203A2>
    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93298000 - 0x932b1fff  com.apple.Kerberos (2.0 - 1)
    <8413EDD3-7E01-3D47-83FD-C14A5235DCD2>
    /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x932b2000 - 0x93309ff7  com.apple.ScalableUserInterface (1.0 - 1)
    <4B538E02-4F41-37FF-81F6-ED43DE0E78CC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Scal
    ableUserInterface.framework/Versions/A/ScalableUserInterface
    0x9330a000 - 0x93ec6ff7  com.apple.AppKit (6.8 - 1187.37)
    <6FBB3467-04F9-395F-8EA8-C84347C5BE43>
    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ec7000 - 0x93eceffe  com.apple.agl (3.2.1 - AGL-3.2.1)
    <48407521-A4A3-3D28-8784-29E36AA04804>
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93ecf000 - 0x93ed8fff  com.apple.DiskArbitration (2.5.2 - 2.5.2)
    <89822A83-B450-3363-8E9C-9B80CB4450B1>
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr
    ation
    0x93ed9000 - 0x93f20ff3  com.apple.CoreMedia (1.0 - 926.87)
    <713B7213-D695-3162-9852-DBC114C26178>
    /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93f21000 - 0x93f45fff  com.apple.PerformanceAnalysis (1.16 - 16)
    <7B7EAA0B-5208-32DB-B083-D4B62F37EC46>
    /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A
    /PerformanceAnalysis
    0x93f46000 - 0x946e1ff3  libclh.dylib (4.0.3 - 4.0.3)
    <CF4CE94B-D0CE-3E84-9640-5ABFC54378A5>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dy
    lib
    0x946ee000 - 0x946fbff7  com.apple.AppleFSCompression (49 - 1.0)
    <9A066D13-6E85-36FC-8B58-FD46E51751CE>
    /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/
    AppleFSCompression
    0x946fc000 - 0x9473efff  libcurl.4.dylib (69.2)
    <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x9473f000 - 0x94ad2ff3  com.apple.MediaToolbox (1.0 - 926.87)
    <F3623474-03AD-3A7F-8BD1-46A44A12E74E>
    /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x94ad3000 - 0x94be3ff3  com.apple.QuickTimeImporters.component (7.7.1 -
    2599.24) <3DBEE5E4-4C40-3390-8405-0D9E271084B2>
    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/Quic
    kTimeImporters
    0x94be4000 - 0x94c25ff7  com.apple.framework.CoreWiFi (1.2.2 - 122.12)
    <D9479FFE-2D79-373C-9F73-E746664ACD5C>
    /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x94d1b000 - 0x94d1ffff  com.apple.IOSurface (86.0.4 - 86.0.4)
    <6431ACB6-561B-314F-9A2A-FAC1578FCC86>
    /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94d22000 - 0x94d25fff  com.apple.help (1.3.2 - 42)
    <2B727B38-0E18-3108-9735-F65958924A91>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra
    mework/Versions/A/Help
    0x94d26000 - 0x94d26fff  com.apple.Carbon (154 - 155)
    <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94d27000 - 0x94d27fff  libSystem.B.dylib (169.3)
    <B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
    0x94d28000 - 0x94d82ffb  com.apple.AE (645.6 - 645.6)
    <44556FF7-A869-399A-AEBB-F4E9263D9152>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE
    .framework/Versions/A/AE
    0x94d83000 - 0x94dfcffb  libType1Scaler.dylib (101.1)
    <C12C5169-4E91-3148-934F-8A9CAB8546C6>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94dfd000 - 0x94e3dfff  com.apple.MediaKit (14 - 687)
    <8735A76E-7766-33F5-B3D2-86630070A1BA>
    /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x94e3e000 - 0x94e44fff  com.apple.print.framework.Print (8.0 - 258)
    <3E10C488-C390-33BD-8A4F-568E3021811D>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr
    amework/Versions/A/Print
    0x94e45000 - 0x94fbdff5  com.apple.QuartzCore (1.8 - 304.2)
    <FB737C74-C460-32A3-9107-D2112BAE6EBC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94fbe000 - 0x94fbefff  com.apple.vecLib (3.8 - vecLib 3.8)
    <83160DD1-5614-3E34-80EB-97041016EF1F>
    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94fbf000 - 0x9507cfeb  libsystem_c.dylib (825.26)
    <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x9507d000 - 0x950d7fff  com.apple.Symbolication (1.3 - 93)
    <4A794D1C-DE02-3183-87BF-0008A602E4D3>
    /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbo
    lication
    0x950d8000 - 0x95364ffb  com.apple.RawCamera.bundle (4.04 - 680)
    <DD1D3CFC-1710-3186-A6C4-89B42F100117>
    /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95365000 - 0x95366ffd  libunc.dylib (25)
    <5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
    0x95367000 - 0x9537cfff  com.apple.speech.synthesis.framework (4.1.12 -
    4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9537d000 - 0x953aaffe  libsystem_m.dylib (3022.6)
    <93CEEC8C-FAB5-313C-B0BB-0F4E91E6B878> /usr/lib/system/libsystem_m.dylib
    0x95412000 - 0x95424fff  libbsm.0.dylib (32)
    <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x954c3000 - 0x9550dff7  com.apple.framework.CoreWLAN (3.0.2 - 302.12)
    <1D7CB11D-C28C-3A25-865A-4AD6EE40D493>
    /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9550e000 - 0x9550efff  com.apple.CoreServices (57 - 57)
    <83B793A6-720D-31F6-A76A-89EBB2644346>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95511000 - 0x95513ffc  com.apple.QuickTimeH264.component (7.7.1 -
    2599.24) <54598D54-DBFC-3EA1-9712-05F4052A79E2>
    /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTime
    H264
    0x95514000 - 0x95558ff7  libGLU.dylib (8.7.25)
    <0CC1A4D8-C095-3F2B-B55C-FDEBEA0E9CFE>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy
    lib
    0x95845000 - 0x95869fff  libJPEG.dylib (849)
    <CD42C17E-6B13-35BE-B585-9AE69CEA534F>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.
    dylib
    0x95904000 - 0x95930ff7  libsystem_info.dylib (406.17)
    <2731CC70-DF2E-3BD1-AE73-A3B83C531756>
    /usr/lib/system/libsystem_info.dylib
    0x95938000 - 0x959adff7  com.apple.ApplicationServices.ATS (332 - 341.1)
    <1D81B09C-98DB-3CDB-990B-459FAE3D8D7A>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/ATS
    0x959ae000 - 0x959b0fff  libdyld.dylib (210.2.3)
    <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x959b5000 - 0x95c75ff3  com.apple.security (7.0 - 55179.11)
    <165A3105-9ADF-329B-93FC-3C8EFAEDDD13>
    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95f11000 - 0x95f48ffa  com.apple.LDAPFramework (2.4.28 - 194.5)
    <B7BAC5B9-ABA9-3799-B8B5-D2DED9383C24>
    /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95f49000 - 0x96084ff7  libBLAS.dylib (1073.4)
    <FF74A147-05E1-37C4-BC10-7DEB57FE5326>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libBLAS.dylib
    0x96085000 - 0x960aaffb  com.apple.framework.familycontrols (4.1 - 410)
    <B1755756-BEA2-3205-ADAA-68FCC32E60BD>
    /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Fami
    lyControls
    0x960ab000 - 0x96142ff7  com.apple.ink.framework (10.8.2 - 150)
    <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram
    ework/Versions/A/Ink
    0x96143000 - 0x96291fff  com.apple.CFNetwork (596.3.3 - 596.3.3)
    <EC7EF37B-B00E-374D-9E8F-E4E22D741059>
    /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x962a2000 - 0x962a9ff3  com.apple.NetFS (5.0 - 4.0)
    <FD429432-6DA7-3B41-9889-0E8B4ECB8A4F>
    /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x962aa000 - 0x9632fff7  com.apple.SearchKit (1.4.0 - 1.4.0)
    <4E947DC1-7985-3111-A864-58EDD6D955DC>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se
    archKit.framework/Versions/A/SearchKit
    0x96330000 - 0x96355ff7  com.apple.CoreVideo (1.8 - 99.4)
    <A26DE896-32E0-3D5E-BA89-02AD23FA96B3>
    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96359000 - 0x96359fff  com.apple.ApplicationServices (45 - 45)
    <B23FD836-ECA1-3DF8-B043-9CA9779BE9DB>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic
    ationServices
    0x9635a000 - 0x9635dff7  com.apple.TCC (1.0 - 1)
    <ABE3CE50-C948-30B1-A343-837D8E7BA9F0>
    /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x96365000 - 0x96472057  libobjc.A.dylib (532.2)
    <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96477000 - 0x9658fff7  com.apple.coreavchd (5.6.0 - 5600.4.16)
    <D871D730-1D5C-34E7-98C7-0FF09964E618>
    /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x96590000 - 0x96948ffa  libLAPACK.dylib (1073.4)
    <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libLAPACK.dylib
    0x96949000 - 0x96950fff  libsystem_dnssd.dylib (379.37)
    <49A44FB3-559D-3C7E-AA40-23F5A8E612AC>
    /usr/lib/system/libsystem_dnssd.dylib
    0x96951000 - 0x9696dfff  libPng.dylib (849)
    <BF2CB6F5-A2F1-35A4-93F7-ACA6D7F02084>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.d
    ylib
    0x9696e000 - 0x9696effd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
    <D35BA73D-1E56-3A1D-9F9F-971F3BF8C136>
    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9696f000 - 0x96bc8ff8  com.apple.JavaScriptCore (8536 - 8536.28.10)
    <B02A662A-7DE6-3C9D-AB08-AA746D48FF2B>
    /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC
    ore
    0x96bc9000 - 0x96bfefff  libTrueTypeScaler.dylib (84.6)
    <B7DB746B-7A61-38EF-8CA7-408ED9C14A02>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x96bff000 - 0x96c00fff  libremovefile.dylib (23.2)
    <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x96c01000 - 0x96c3cfef  libGLImage.dylib (8.7.25)
    <6C0B2148-032A-3911-AB21-2E07606E3D9A>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag
    e.dylib
    0x96c3d000 - 0x96c94ff3  com.apple.HIServices (1.20 - 417)
    <561A770B-8523-3D09-A763-11F872779A4C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/HIServices.framework/Versions/A/HIServices
    0x96c95000 - 0x96c9fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
    <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
    /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceM
    anagement
    0x96da2000 - 0x96db5ff9  com.apple.MultitouchSupport.framework (235.29 -
    235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE>
    /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/M
    ultitouchSupport
    0x96db6000 - 0x96e1eff7  com.apple.framework.IOKit (2.0.1 - 755.22.5)
    <F9A70D23-1108-3616-9DE3-6C5730CA7AB2>
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96e1f000 - 0x96e35fff  com.apple.CFOpenDirectory (10.8 - 151.10)
    <3640B988-F915-3E0D-897C-CB04C95BA601>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/C
    FOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96e65000 - 0x96eb3ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2)
    <6E858B9F-337A-314E-88B7-24A274ACE568>
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System
    Configuration
    0x96eb4000 - 0x96ef6ff7  libauto.dylib (185.1)
    <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x96ef7000 - 0x96ff5ff7  libFontParser.dylib (84.6)
    <7D3EB3CC-527E-3A74-816A-59CAFD2260A4>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96ff6000 - 0x97004fff  com.apple.opengl (1.8.7 - 1.8.7)
    <0631EC1D-833B-39D2-A907-A9F7617E5504>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97056000 - 0x97473fff  FaceCoreLight (2.4.1)
    <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
    /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceC
    oreLight
    0x97474000 - 0x9747dfff  com.apple.CommerceCore (1.0 - 26.1)
    <8C28115C-6EC1-316D-9237-F4FBCBB778C5>
    /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Framewo
    rks/CommerceCore.framework/Versions/A/CommerceCore
    0x9747e000 - 0x97576ff9  libsqlite3.dylib (138.1)
    <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x975ad000 - 0x975b6ffd  com.apple.audio.SoundManager (4.0 - 4.0)
    <6A0B4A5D-6320-37E4-A1CA-91189777848C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo
    und.framework/Versions/A/CarbonSound
    0x975b7000 - 0x975c9ff7  libdispatch.dylib (228.23)
    <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x975ca000 - 0x97618ffb  libFontRegistry.dylib (100)
    <97D8F15F-F072-3AF0-8EF8-50C41781951C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97619000 - 0x97625ffa  com.apple.CrashReporterSupport (10.8.3 - 417)
    <A4A45B14-8992-3739-82BC-3C5E5C2686F9>
    /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/
    A/CrashReporterSupport
    0x97626000 - 0x976d5ff7  com.apple.CoreText (260.0 - 275.16)
    <7716C57B-E059-3B30-BBA8-AD7FF6EE3D35>
    /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x976d6000 - 0x97776ff7  com.apple.QD (3.42 - 285)
    <1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/QD.framework/Versions/A/QD
    0x97777000 - 0x977b9ffb  com.apple.RemoteViewServices (2.0 - 80.6)
    <AE962502-4539-3893-A2EB-9D384652AEAC>
    /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/
    RemoteViewServices
    0x977ba000 - 0x9781eff3  libstdc++.6.dylib (56)
    <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9781f000 - 0x97829fff  com.apple.speech.recognition.framework (4.1.5 -
    4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe
    cognition.framework/Versions/A/SpeechRecognition
    0x9782a000 - 0x97841ff4  com.apple.CoreMediaAuthoring (2.1 - 914)
    <8D71DE7D-7F53-3052-9FAF-132CB61BA9F5>
    /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/
    CoreMediaAuthoring
    0x97842000 - 0x978a6fff  com.apple.datadetectorscore (4.1 - 269.2)
    <B4D53047-C613-32F8-9E08-0154EA81B487>
    /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/D
    ataDetectorsCore
    0x978b2000 - 0x978faff5  com.apple.opencl (2.2.18 - 2.2.18)
    <004A1DE4-49C6-3938-8B54-CD1DC23BDBE5>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x978fb000 - 0x979affff  com.apple.coreui (2.0 - 181.1)
    <6BEEE83E-C878-3FE6-B521-8B32B3A35409>
    /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x979b0000 - 0x97a00ff7  com.apple.CoreMediaIO (307.0 - 4155)
    <49D36F54-D414-3745-8194-69FC3B632ED3>
    /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x97a01000 - 0x97a2aff7  libRIP.A.dylib (331.0.4)
    <FE496AFC-420A-3712-BC79-FC8C63ADB73D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97a2b000 - 0x97affff3  com.apple.backup.framework (1.4.2 - 1.4.2)
    <0473EB45-E9BF-3C10-B235-A6E2B960A88F>
    /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x97b00000 - 0x97b1dfff  libCRFSuite.dylib (33)
    <8E6E8815-406E-3A89-B96E-908FEFC27F0A> /usr/lib/libCRFSuite.dylib
    0x97b75000 - 0x97b79ffe  libcache.dylib (57)
    <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x97b7a000 - 0x97c12fff  com.apple.CoreServices.OSServices (557.6 -
    557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS
    Services.framework/Versions/A/OSServices
    0x97c13000 - 0x97d2fffb  com.apple.desktopservices (1.7.3 - 1.7.3)
    <7157C51D-C695-3C9E-B532-F551E7E55B56>
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A
    /DesktopServicesPriv
    0x97d61000 - 0x97d61fff  libsystem_blocks.dylib (59)
    <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
    /usr/lib/system/libsystem_blocks.dylib
    0x97d62000 - 0x97d69fff  liblaunch.dylib (442.26.2)
    <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x97d6a000 - 0x97d6affd  libOpenScriptingUtil.dylib (148.3)
    <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x97d6b000 - 0x97e78ff3  com.apple.ImageIO.framework (3.2.0 - 849)
    <B34C2380-51F6-38B1-BB6C-C2E5185D90EF>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x97ed1000 - 0x97f7bfff  com.apple.LaunchServices (539.7 - 539.7)
    <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/La
    unchServices.framework/Versions/A/LaunchServices
    0x97f80000 - 0x97f8afff  libsystem_notify.dylib (98.5)
    <7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
    /usr/lib/system/libsystem_notify.dylib
    0x97f9a000 - 0x97f9dffc  libCoreVMClient.dylib (32.3)
    <35B63A60-DF0A-3FB3-ABB8-164B246A43CC>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVM
    Client.dylib
    0x98317000 - 0x98372fff  com.apple.htmlrendering (77 - 1.1.4)
    <CD33B313-7E85-3AC0-9EFF-6B0C05F10135>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend
    ering.framework/Versions/A/HTMLRendering
    0x983a5000 - 0x98421ff3  com.apple.Metadata (10.7.0 - 707.5)
    <F2BC2AB4-A87A-3D37-A496-AC21EF3E1244>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me
    tadata.framework/Versions/A/Metadata
    0x98422000 - 0x98864ff3  com.apple.CoreGraphics (1.600.0 - 331.0.4)
    <BC041647-FB5A-3D07-A253-F3D34E25BF6C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x98865000 - 0x98869fff  com.apple.OpenDirectory (10.8 - 151.10)
    <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirector
    y
    0x9886a000 - 0x9886afff  com.apple.Accelerate (1.8 - Accelerate 1.8)
    <4EC0548E-3A3F-310D-A366-47B51D5B6398>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9886b000 - 0x9886bfff  libkeymgr.dylib (25)
    <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x988d8000 - 0x988e8ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
    <C6076983-A02E-389E-BFC6-008EECC4C896>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x98965000 - 0x98966fff  libDiagnosticMessagesClient.dylib (8)
    <39B3D25A-148A-3936-B800-0D393A00E64F>
    /usr/lib/libDiagnosticMessagesClient.dylib
    0x989f0000 - 0x98a3cfff  libcorecrypto.dylib (106.2)
    <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x992bb000 - 0x992c7ffe  libkxld.dylib (2050.22.13)
    <ED37AAAA-B1C0-3ADF-A897-3D580A845843> /usr/lib/system/libkxld.dylib
    0x992f8000 - 0x992f8fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8)
    <908B8D40-3FB5-3047-B482-3DF95025ECFC>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/vecLib
    0x992f9000 - 0x99575ff7  com.apple.QuickTime (7.7.1 - 2599.24)
    <5B1CA228-A6B3-39DF-A5CC-F981E59DAD1D>
    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99576000 - 0x995f0ff3  com.apple.securityfoundation (6.0 - 55115.4)
    <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC>
    /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit
    yFoundation
    0x995f1000 - 0x99640ff6  libTIFF.dylib (849)
    <229EBA67-A2D3-30B7-8177-3CA5503360EC>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.
    dylib
    0x99641000 - 0x99732ffc  libiconv.2.dylib (34)
    <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9973d000 - 0x99748fff  libcommonCrypto.dylib (60027)
    <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9>
    /usr/lib/system/libcommonCrypto.dylib
    0x99749000 - 0x99757ff3  libsystem_network.dylib (77.10)
    <11CAF6A8-17CF-3178-9348-57C5ED494BA8>
    /usr/lib/system/libsystem_network.dylib
    0x99758000 - 0x99781fff  libxslt.1.dylib (11.3)
    <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x99782000 - 0x99785ff7  libcompiler_rt.dylib (30)
    <CE5DBDB4-0124-3E2B-9105-989DF98DD108>
    /usr/lib/system/libcompiler_rt.dylib
    0x99786000 - 0x9978fff9  com.apple.CommonAuth (3.0 - 2.0)
    <34C4768C-EF8D-3DBA-AFB7-09148C8672DB>
    /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAu
    th
    0x99790000 - 0x99794ff7  libmacho.dylib (829)
    <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x99795000 - 0x99ab3ff3  com.apple.Foundation (6.8 - 945.16)
    <C4D95341-B4FF-30AC-815A-A23C019C57A3>
    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99ab4000 - 0x99abbffb  libunwind.dylib (35.1)
    <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x99abc000 - 0x99abfffc  libpam.2.dylib (20)
    <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x99ac0000 - 0x99adaffc  libsystem_kernel.dylib (2050.22.13)
    <70C520E8-0394-3DFB-823B-FE8C251C169A>
    /usr/lib/system/libsystem_kernel.dylib
    0x99adb000 - 0x99af8fff  libxpc.dylib (140.42)
    <1E419D55-C5C1-33FF-B52E-6C7FFBEA5E1F> /usr/lib/system/libxpc.dylib
    0x99af9000 - 0x99b5ffff  com.apple.print.framework.PrintCore (8.3 -
    387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/PrintCore.framework/Versions/A/PrintCore
    0x99b60000 - 0x99b70ff7  libsasl2.2.dylib (166)
    <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x99b71000 - 0x99f54fff  com.apple.HIToolbox (2.0 - 626.1)
    <ECC3F04F-C4B7-35BF-B10E-183B749DAB92>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo
    x.framework/Versions/A/HIToolbox
    0x99f55000 - 0x99f72ff7  libresolv.9.dylib (51)
    <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x99f73000 - 0x99f7fff8  libbz2.1.0.dylib (29)
    <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x99f80000 - 0x99fc2ff7  libcups.2.dylib (327.3)
    <C7A4A315-FA15-354B-8BC9-BE824C4EFF6D> /usr/lib/libcups.2.dylib
    0x9a01e000 - 0x9a080fff  libc++.1.dylib (65.1)
    <35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
    0x9a081000 - 0x9a083ffd  libCVMSPluginSupport.dylib (8.7.25)
    <C8FC6227-5209-3138-89CD-03CAD11F3EC3>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPl
    uginSupport.dylib
    0x9a084000 - 0x9a0a3ff3  com.apple.Ubiquity (1.2 - 243.15)
    <E10A2937-D671-3D14-AF8D-BA25E601F458>
    /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9a312000 - 0x9a3f3fff  libcrypto.0.9.8.dylib (47)
    <219227B4-75D2-3CCC-B241-4BE8F8E1D4AB> /usr/lib/libcrypto.0.9.8.dylib
    0x9a3f4000 - 0x9a427ff5  libssl.0.9.8.dylib (47)
    <84896B24-4941-3149-A4CF-2BAD0F621002> /usr/lib/libssl.0.9.8.dylib
    0x9a659000 - 0x9a683ff9  com.apple.framework.Apple80211 (8.3.2 -
    832.18.1) <69AD5C5E-14A2-3E2B-AE28-2C7A7E4F5D0A>
    /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802
    11
    0x9a684000 - 0x9a6c3ff7  com.apple.bom (12.0 - 192)
    <D245FA22-3B6C-3872-B485-BE84AD9098B2>
    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9a6c4000 - 0x9a6faffb  com.apple.DebugSymbols (98 - 98)
    <D0293694-C381-30DF-8DD9-D1B04CD0E5F0>
    /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugS
    ymbols
    0x9a6fb000 - 0x9a6fbfff  com.apple.Cocoa (6.7 - 19)
    <01AA482A-677A-31CA-9EC9-05C57FDDE427>
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9a6fc000 - 0x9a700fff  com.apple.CommonPanels (1.2.5 - 94)
    <7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa
    nels.framework/Versions/A/CommonPanels
    0x9a707000 - 0x9a762ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19)
    <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B>
    /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 5760
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=228.2M resident=144.2M(63%)
    swapped_out_or_unallocated=84.0M(37%)
    Writable regions: Total=603.0M written=205.9M(34%) resident=473.2M(78%)
    swapped_out=0K(0%) unallocated=129.8M(22%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    (null) (reserved)                    40K        reserved VM address space
    (unallocated)
    ATS (font support)                 33.0M
    ATS (font support) (reserved)         4K        reserved VM address space
    (unallocated)
    CG backing stores                  4336K
    CG image                              4K
    CG raster data                      116K
    CG shared images                   1216K
    CoreServices                       5420K
    IOKit                             257.9M
    IOKit (reserved)                      4K        reserved VM address space
    (unallocated)
    MALLOC                            269.4M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=249                      192K
    Memory tag=35                      3976K
    Stack                              67.6M
    VM_ALLOCATE                        16.5M
    __DATA                             30.5M
    __DATA/__OBJC                       208K
    __IMAGE                             528K
    __IMPORT                             72K
    __LINKEDIT                         44.1M
    __OBJC                             1932K
    __OBJC/__DATA                       256K
    __PAGEZERO                            4K
    __TEXT                            184.1M
    __UNICODE                           544K
    mapped file                        76.4M
    shared memory                       424K
    ===========                      =======
    TOTAL                             998.4M
    TOTAL, minus reserved VM space    998.3M

    Hi,
    here are some more informations about the problem.
    The root CA certificate is imported as trusted in the system keychain of the server and the client. A certificate evaluation returns "valid certificates, trusted ...".
    The client bind fails with this messages, e.g. Kerio Control is able the use LDAPS, so it seams just the problem with the trustability of the certificates. Keychain trusts the certificates, OD client bind not, this is not so consistent.
    Any idee?
    Thanks
    Henri
    2013-03-14 19:39:02.776804 CET - Trigger - notified opendirectoryd:nodes;lastServerChanged;/LDAPv3/ldaps://macpro....:636
    2013-03-14 19:39:02.793467 CET - 71825.330426.330427, Module: AppleODClientLDAP - unable to create connection to LDAP server - ldap_search_ext_s for the ro
    otDSE failed with error 'server connection failed' (-1) error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (self signed cert
    ificate in certificate chain)
    2013-03-14 19:39:02.793501 CE
    CONNECTED(00000003)
    depth=1 /C=DE/...
    Certificate chain
    0 s:/CN=macpro...
       i:/C=DE//OU=IT/CN=*.office.../emailAddress=admin@...
    verify error:num=19:self signed certificate in certificate chain
    verify return:0

Maybe you are looking for

  • How can I improve my FMS performance?

    Hi... I have two FMS 3.5 streaming servers... Both have Windows Server 2003 x64 with 16 GB of RAM... I'm streaming from a common storage and my Application.xml file is like this: <Application>   <StreamManager>     <VirtualDirectory>       <!-- Speci

  • Gf4MX440-VTP TV-Out doesnt work.

    I've just buyed a dual gf4 mx440 with 64Mb and TV-Out, TV-In. When I installed it I began working with two monitors witout problems, but when I've tried to connect de TV-Out, it doesnt word. I've checked a hundred times the cable connecting, and it's

  • Running xscreensaver in the background after resume from hibernate

    I'm using hibernate-script with my tuxonice kernel. One of the things that annoys me about xscreensaver is how when I resume its always running (because the requisite time has passed), so I have to type my password again, having just typed it at BIOS

  • Sequence numbering

    Hi, could someone please explain how i can insert sequence numbering in PDF. I would like the number to start at 0001 and when the next person opens it it will be 0002 and so forth. It will be opened by many people in reader. thanks in advance.

  • IDVD encoding issues from iMovie

    A movie previews fine in iMovie, but when I preview it in iDVD, the sound track gets out of sync and there are some random bursts of extra noise.  How do I fix this?