Value getting truncated in display while using F4IF_INT_TABLE_VALUE_REQUEST

Hi.,
    I am using FM F4IF_INT_TABLE_VALUE_REQUEST to display F4 for a Particular field .
But while displaying a field(ISBN) with 13 characters is displayed only with value of 8 characters only. kindly advice.
IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'ESTNO'.
  APPEND IT_FT.
IT_FT-TABNAME = 'ZC001_ESTMAST_HD'.
IT_FT-FIELDNAME = 'VERSN'.
APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'VERSN'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'SIRNO'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'TITNR'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'KUNNR'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'NAME1'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'JBDVN'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'MAKTX'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'TPWRK'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'ISBNO'.
  APPEND IT_FT.
IT_FT-TABNAME = 'ZC002_ESTNOF4'.
IT_FT-FIELDNAME = 'ORDDAT'.
APPEND IT_FT.
  IT_DM-FLDNAME = 'ESTNO'.
  IT_DM-DYFLDNAME = 'IT_ESTMAS-ESTNO'.
  APPEND IT_DM.
  IT_DM-FLDNAME = 'VERSN'.
  IT_DM-DYFLDNAME = 'IT_ESTMAS-VERSN'.
  APPEND IT_DM.
  IT_DM-FLDNAME = 'SIRNO'.
  IT_DM-DYFLDNAME = 'IT_ESTMAS-SIRNO'.
  APPEND IT_DM.
IT_DM-FLDNAME = 'SERIS'.
IT_DM-DYFLDNAME = 'ZV001_TITLMAS_HD'.
APPEND IT_DM.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
  DDIC_STRUCTURE         = 'IT_VALUE'
   DDIC_STRUCTURE         = 'ZC002_ESTNOF4'
    RETFIELD               = 'ESTNO'
  PVALKEY                = ' '
    DYNPPROG               = SY-REPID
    DYNPNR                 = SY-DYNNR
    DYNPROFIELD            = 'IT_ESTMAS-ESTNO'
    VALUE_ORG   = 'S'
   STEPL                  = 0
    TABLES
       VALUE_TAB              = IT_MESTNO_F4
       FIELD_TAB              = IT_FT
      RETURN_TAB             = IT_RT
       DYNPFLD_MAPPING        = IT_DM
EXCEPTIONS
  PARAMETER_ERROR        = 1
  NO_VALUES_FOUND        = 2
  OTHERS                 = 3
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
Regards.,
S.Sivakumar

Hi.,
    i think i confused u all . i will paste the entire code here .
DATA : BEGIN OF IT_MESTNO_F4 OCCURS 0,
       MANDT LIKE ZC001_ESTMAST_HD-MANDT,
        ESTNO LIKE ZC001_ESTMAST_HD-ESTNO,
        VERSN LIKE ZC001_ESTMAST_HD-VERSN,
        SIRNO LIKE ZC001_ESTMAST_HD-SIRNO,
        TITNR LIKE ZV001_TITLMAS_HD-TITNR,
        TPWRK LIKE ZV001_TITLMAS_HD-TPWRK,
        KUNNR LIKE ZC001_ESTMAST_HD-KUNNR,
        NAME1 LIKE KNA1-NAME1,
        JBDVN LIKE ZC001_ESTMAST_HD-JBDVN,
        MAKTX LIKE ZV001_TITLMAS_HD-MAKTX,
        ISBNO TYPE ZV001_TITLMAS_HD-ISBNO,
       END OF IT_MESTNO_F4.
  CLEAR: IT_MESTNO_F4[], IT_MESTNO_F4,
           IT_FT[], IT_FT,
           IT_DM[], IT_DM,
           IT_RT[], IT_RT.
*ORDDAT
SELECT DISTINCT  ESTNO VERSN SIRNO FROM ZC001_BUDMAS_MAT INTO CORRESPONDING FIELDS OF TABLE IT_MESTNO_F4.
SELECT ESTNO VERSN SIRNO FROM ZC001_ESTMAST_HD INTO CORRESPONDING FIELDS OF TABLE IT_MESTNO_F4  WHERE ZSAVE EQ 'X'..
  SELECT  DISTINCT A~ESTNO A~VERSN A~SIRNO A~TITNR A~TPWRK A~KUNNR D~NAME1 JBDVN   B~MAKTX   ISBNO
   FROM ZC001_ESTMAST_HD AS A INNER JOIN  ZV001_TITLMAS_HD AS B
  ON A~TITNR = B~TITNR
    INNER JOIN  ZC001_BUDMAS_MAT AS C
  ON A~ESTNO = C~ESTNO AND A~VERSN = C~VERSN AND A~SIRNO = C~SIRNO
    INNER JOIN  KNA1 AS D
  ON A~KUNNR = D~KUNNR
   INTO CORRESPONDING FIELDS OF TABLE IT_MESTNO_F4
   WHERE ZSAVE EQ SPACE AND ZLOCK EQ SPACE.
  SORT IT_MESTNO_F4 BY ESTNO DESCENDING.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'ESTNO'.
  APPEND IT_FT.
IT_FT-TABNAME = 'ZC001_ESTMAST_HD'.
IT_FT-FIELDNAME = 'VERSN'.
APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'VERSN'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'SIRNO'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'TITNR'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'KUNNR'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'NAME1'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'JBDVN'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'MAKTX'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'TPWRK'.
  APPEND IT_FT.
  IT_FT-TABNAME = 'ZC002_ESTNOF4'.
  IT_FT-FIELDNAME = 'ISBNO'.
  APPEND IT_FT.
IT_FT-TABNAME = 'ZC002_ESTNOF4'.
IT_FT-FIELDNAME = 'ORDDAT'.
APPEND IT_FT.
  IT_DM-FLDNAME = 'ESTNO'.
  IT_DM-DYFLDNAME = 'IT_ESTMAS-ESTNO'.
  APPEND IT_DM.
  IT_DM-FLDNAME = 'VERSN'.
  IT_DM-DYFLDNAME = 'IT_ESTMAS-VERSN'.
  APPEND IT_DM.
  IT_DM-FLDNAME = 'SIRNO'.
  IT_DM-DYFLDNAME = 'IT_ESTMAS-SIRNO'.
  APPEND IT_DM.
IT_DM-FLDNAME = 'SERIS'.
IT_DM-DYFLDNAME = 'ZV001_TITLMAS_HD'.
APPEND IT_DM.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
  DDIC_STRUCTURE         = 'IT_VALUE'
   DDIC_STRUCTURE         = 'ZC002_ESTNOF4'
    RETFIELD               = 'ESTNO'
  PVALKEY                = ' '
    DYNPPROG               = SY-REPID
    DYNPNR                 = SY-DYNNR
    DYNPROFIELD            = 'IT_ESTMAS-ESTNO'
    VALUE_ORG   = 'S'
   STEPL                  = 0
    TABLES
       VALUE_TAB              = IT_MESTNO_F4
       FIELD_TAB              = IT_FT
      RETURN_TAB             = IT_RT
       DYNPFLD_MAPPING        = IT_DM
EXCEPTIONS
  PARAMETER_ERROR        = 1
  NO_VALUES_FOUND        = 2
  OTHERS                 = 3
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
Regards.,
S.Sivakumar

Similar Messages

  • Photoshop file gets deleted in network while using on IMAC

    photoshop file gets deleted in network while using on IMAC. I have tried on different server also. How to reslove the issue. Please help me ?

    This is the boilerplate text often used in connection to saving to a network (please NOTE the part where it explains that normally, it does work, but that it is impossible to troubleshoot someone else's network remotely, and that's why it's not supported by Adobe):
    If you are opening files over a network or saving them to a network server, please cease and desist immediately in the event you are currently experiencing problems with one or more files. Working across a network is not supported.
    See: 
    http://kb2.adobe.com/cps/406/kb406793.html
      Copy the CLOSED file from your server to your local hard disk, work on it, save it again to your local hard disk, close it, and copy the closed file back to the server.
         Of course, the fact that Adobe does not support working across a network does not necessarily mean it won't work.   It should.
        Adobe's position is that there are too many variables in a network environment for them to guarantee that everything will work correctly in every network, especially given the fact that if something does not work properly, it's probably the network's fault, and Adobe has no way of troubleshooting your network.
      If you can't work locally, you are on your own, and if something happens, you're on your own. If you must work from a server, make sure your network administrator is a competent professional.
    When problems arise, a lot of valuable work can be lost.

  • Full text not getting displayed while using RSRT

    Hi,
    I am facing issue while downloading data using RSRT in BI system.
    When I go to RSRT and execute a report the output doesn't display full text for a characteristic. i.e. the characteristic has a size of 60 characters, but only 30 chars ( approx) are being displayed as report output in RSRT.
    COuld anyone here please help me in getting the full text using RSRT transaction?
    I am not using Bex here for the reason that the output has more than 1.8 lac records and hence I get an error while using Bex
    WHen I try to execute this report using Bex for a small selection I could see full text there.
    And there is no text master data maintained for this characteristic.
    Thanks in advance for your replies.

    Hi,
    As you said you have 1.8 Lac records, There is no point in increasing the size to maximum number possible i.e 65K .
    You have following three options to satisfy your requirement.:
    1.    Usage of  web reporting for export of more than 65k rows. According the note: 1127156 - Safety belt: Result set is too large, in BW version 7.x it I possible to set parameters that would allow such a massive export of data.
    2.    Functionality of OpenHubs. Data can be placed directly into the files (e.g. in CSV format) on application server. Be careful here OpenHubs are specially licensed and by using it there are additional fees.
    3.    Coding of custom ABAP report which runs BW query and gets all its output and saves it in the flat files.
    Please let me know if this info is helpful.
    Regards,
    Krishna Tangudu

  • Decimal Values getting truncated

    Hi,
    In my query results, the decimal values are getting truncated.  e.g.
    0.30 + 0.44 = 0.70  (expected result = 0.74)
    0.30 + 0.45 = 0.80  (expected result = 0.75)
    0.40 + 0.48 = 0.80  (expected result = 0.78)
    What am I supposed to do to make sure that the second decimal point is not truncted.
    Thanks,

    Hi,
    I do not have any conditions.  Except that I am just using the function NODIM to get the decimal values in my report.
    I did tried using the decimal places in the Key Figure properties.
    Are there any other possibilities to solve this?
    Thanks,

  • Application server file values getting truncated

    Hi,
    I'm sending a file to Application server with minimun 1800 characters in a singlw row. The file is getting uploaded into the server but with only 255 chars in the same row. All others are getting truncated.
    Can anyone please suggest on this?
    Thanks
    Itishree.

    Hi,
    You can download your file from application server using CG3Y.
    And upload your file to application server using CG3Z.
    I think just a typo mistake by the one who answered before me.
    Regards,
    Bharati Singh

  • Keep getting "finder quit unexpectedly while using PackageKit Plug-In" intermittently after install of 10.9.2 Mavericks, what should i do?

    When i restart, reboot, power down or power up i keep getting (intermittently) an error window pop up saying - "finder quit unexpectedly while using PackageKit Plug-In" - this has only been occuring since after install of 10.9.2 Mavericks. Also powering down or restarting in anyway now takes much longer than normal despite not having any 3rd party apps scheduled to open at startup! - note i also upgraded the memory of my early (2011) 13 inch macbook pro from 4GB to 8GB, but hadnt caused any issues prior to install of Mavericks 10.9.2.
    What should i do, can anyone help with a fix other than suggesting i take it into an apple store (as i'm out of warranty) or without having to do a software re-install from the recovery discs? Thanks.  

    Hello vajrabairava,
    This may be the result of a damaged system component. I would recommend reinstalling Mavericks in order to replace any damaged components. This should not affect any data on the system, but I do strongly suggest ensuring that you have a good backup in place prior to reinstalling Mavericks.
    Mac Basics: Time Machine backs up your Mac
    http://support.apple.com/kb/HT1427
    OS X Mavericks: Reinstall OS X
    http://support.apple.com/kb/PH13871
    Cheers,
    Allen

  • HELP - all words are getting underlined in red while using yahoo mail. How to fix this?

    I am using Firefox browser and already upgraded to the latest 5.0. While using my yahoo mail all words are underlined in red(it is happening as I write this note). How do I stop this from happening and have just he mispelled words underlined? When the email is sent the underline goes away.

    Do you have a dictionary installed and selected?
    *You can see which dictionary is selected if you right-click in a text area and open the Languages submenu.
    * Open the "Add Dictionaries" link to install a dictionary if you do not have one.
    * Make sure that [X] "Check Spelling" in the right-click context menu is check-marked.
    You can enable or disable spell checking globally:
    * Tools > Options > Advanced : General: Browsing: "Check my spelling as I type"
    You can look here for dictionaries:
    * https://addons.mozilla.org/firefox/language-tools/
    See also:
    * http://kb.mozillazine.org/Spell_checking
    * http://kb.mozillazine.org/Dictionaries
    * https://support.mozilla.com/kb/Using+the+spell+checker

  • How can i get ProgressMonitor to display while task is going on.

    hi can anybody tell me what i'm doing wrong.. I don't understand threads that well. I'm writing ftp client that uploads user files to our ftp.server. My problem is ProgressMonitor hangs until ftp transfer is done before displaying message of the job status... I try to give it it's own thread. but it seems like the process for ftp upload takes higher priority so ProgressMonitor does not get attention til all ftp process is done...
    import java.io.*;
    import java.util.List;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import sun.net.ftp.*;
    import sun.net.*;
    * An application that displays a ProgressMonitor
    * when the 'Upload' button is pressed. A complex
    * 'operation' to upload files and update the monitor
    * @author
    public class ProgressTestApp extends JApplet {
    private JPanel actionPanel;
    private String names[] = { "browse..","Upload" };
    private JButton choices[];
    private JLabel label;
    private JTextField FolderpathText;
    private JPanel reportPanel;
    private String newline = "\n";
    private JTextArea taskOutput;
    private File pwFile;
    private ProgressMonitor monitor;
    private String fullpath;
    private List mylist;
    Thread thread = new Thread();
    JFrame frame = new JFrame( "Progress-Monitor" );
    private int mini=0;
    public int maxi=100;
    public int boo=0;
    private Runnable runnable;
    /** a lable for the lient info text **/
    private JLabel getclientLabel()
         if ( label == null )
         label = new JLabel("Directory to upload: ") ;
         return label;
    /** a text to show client info */
    private JTextField getFolderpathText()
    if ( FolderpathText == null)
         FolderpathText = new JTextField (100);
         FolderpathText.setText( " " );
         return FolderpathText;
    /** a text to show client info */
    private JTextArea gettaskOutput()
    if ( taskOutput == null)
         taskOutput = new JTextArea(5, 20);
    taskOutput.setMargin(new Insets(5,5,5,5));
    taskOutput.setEditable(false);
         return taskOutput;
    private JPanel getreportPanel()
    if (reportPanel == null)
         reportPanel = new JPanel(new BorderLayout());
         reportPanel.add(getclientLabel(),BorderLayout.WEST);
         reportPanel.add(getFolderpathText(),BorderLayout.CENTER);
    return reportPanel;
    * Application entry point.
    * Create the splash window, and display it.
    * @param args Command line parameter. Not used.
    public void init() {
    // Create a frame with a single button in it.
    // When the button is pressed, a thread is spawned
    // to run out sample operation.
    //JFrame frame = new JFrame( "ProgressMonitor Test" );
    //create array of buttons
    choices = new JButton[names.length];
    //set up panel for buttons
    actionPanel = new JPanel();
    actionPanel.setLayout( new GridLayout(1,choices.length));
    //set up buttons and register their listeners
    for ( int count = 0; count < choices.length; count++ )
    choices[count]=new JButton(names[count]);
         actionPanel.add(choices[count]);
    Container container = getContentPane();
    container.setBackground(Color.gray);
    container.add( getreportPanel(), BorderLayout.NORTH);
    container.add( actionPanel, BorderLayout.CENTER);
    // Create a ProgressMonitor. This will be started
    // when the Upload button is pressed.
    int min = mini;
    int max = maxi;
    String[] message = new String[2];
    message[0] = "Performing Operation.";
    message[1] = "This may take some time...";
    final ProgressMonitor monitor = new ProgressMonitor( frame,
         message,
         " of ",
         min,
         max );
    // This is our sample operation.
    final Runnable runnable = new Runnable() {
    public void run() {
    if( boo == 1 )
    maxi=file_utility(pwFile);
    int sleepTime = 1000;
    for( int i = 1; i < maxi; i++ ) {
    try {
    monitor.setNote( i + " of " + maxi );
    monitor.setProgress( i );                              monitor.setMinimum( i );                              monitor.setMaximum( maxi );
    if( monitor.isCanceled() ) {
    monitor.setProgress( maxi );
    break;
    Thread.sleep( sleepTime );
    catch( InterruptedException dontcare ) {
    monitor.close();
    choices[0].addActionListener( new ActionListener() {
    public void actionPerformed( ActionEvent event ) {
    // Run the operation in its own thread.
    pwFile=findfile();
         FolderpathText.setText(pwFile.getAbsolutePath());
         boo=1;
    choices[1].addActionListener( new ActionListener() {
    public void actionPerformed( ActionEvent event ) {
    // Run the operation in its own thread.
              Thread thread = new Thread( runnable );
              thread.start();
              ftp_utility(pwFile);
    } // main
    /*** Folder locater to find local file to upload ***/
    File findfile()
         JFileChooser myFC = new JFileChooser();
         myFC.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
         int returnVal = myFC.showOpenDialog(new JFrame());
         if(returnVal == JFileChooser.APPROVE_OPTION)
         //JOptionPane.showMessageDialog( null, myFC.getSelectedFile());
         File file = myFC.getSelectedFile();
         //String fullpath=c.getSelectedFile().getName();
         return file;
    /***Fi_l_e_s to upload ***/
    public int file_utility (File uploadFile)
         int files=0;
         FtpClient fcMyFtp = new FtpClient();
         try
         int ch;
         fcMyFtp.openServer("ftp.abc.com");
         fcMyFtp.login("Anonymous","[email protected]");
         fcMyFtp.binary();
         fcMyFtp.cd("incoming40");
         if( uploadFile.isDirectory())
         if( mylist == null )
              mylist= Arrays.asList(uploadFile.list());
         catch (Exception exception)
         JOptionPane.showMessageDialog(null,exception);
         return mylist.size();
    /***FT_P _ ***/
    public void ftp_utility (File uploadFile)
    FtpClient fcMyFtp = new FtpClient();
         try
         int ch;
         fcMyFtp.openServer("ftp.abc.com");
         fcMyFtp.login("Anonymous","[email protected]");
         fcMyFtp.binary();
         fcMyFtp.cd("incoming40");
         if( uploadFile.isDirectory())
         if( mylist == null )
         mylist= Arrays.asList(uploadFile.list());
         for(int count=0; count < mylist.size(); count++)
         fullpath=uploadFile.getAbsolutePath()+"\\"+mylist.get(count);
         File file = new File(fullpath);
         if( file.isDirectory())
         //file.mkdir();
         //ftp_utility(file);
         else
         TelnetOutputStream out = fcMyFtp.put(file.getName());
         FileInputStream in = new FileInputStream(file);
         int c = 0;
         while ((c = in.read()) != -1 )
              out.write(c);
         in.close();
         out.close();
         fcMyFtp.closeServer();
         //JOptionPane.showMessageDialog( null, "Upload completed...");
         catch (Exception exception)
         JOptionPane.showMessageDialog(null,exception);
    } // ProgressTest

    First of all, please use the code tags when posting code, especially that much code. http://forum.java.sun.com/faq.jsp#messageformat
    The problem is that you need to switch the threads, so you should spawn the ftp process in a new thread, and let the monitor run in the main thread (actually the UI thread). I don't think that's really documented anywhere. I had the same problem the first time.

  • How to retrieve values from Dynamic Selection screen while using LDB  - PSJ

    I am having problem in PSJ Logical database. In a custom report which is using PSJ LDB, we are using PROJ and PRPS_R tables.
    When I run program it displays one dynamic selection screen, there we are giving selection criteria for PRPS (Master data WBS element) - Created on (giving some range like 2011/01/01 to 2011/01/31).
    So I want to display all WBS element which are created during the period (2011/01/01 - 2011/01/31).
    How do I retrieve the select-option low and high value of the field Created on Of WBS element if we Select data from any table based on this condition.
               Please help me.
    Thanks.

    in fact you don't have to get the values, you only need to tell to the program to take them into account :
    GET PRPS.
      CHECK SELECT-OPTIONS.

  • Getting an ntvdm error while using single sign-on

    HI!
    When I run GssExample from the tutorial, I get an ntvdm error in a requester, saying "Error while setting up environment for the application. Choose 'Close' to terminate the application.".
    Then I can klick on "Close" or "Ignore". Either way, it takes some seconds and then GssExample is working as expected. But this requester is of course annoying. I get it every time I start GssExample.
    This only happens with single sign-on (useTicketCache=true).
    Using JDK 1.4.0 on Windows 2000 SP2.
    Any ideas?
    Thanks!
    Regards,
    Thomas

    OK.. the error goes away when using jdk1.4.1 but still the system is unable to get the user credentials from the cache :-(

  • Getting Error in Infoview while using Date Range Filter in SAP BW Universe

    Hi,
    I have created a date range Filter in My Universe
    <FILTER KEY= "@Select(Debit Memo Date\L01 Debit Memo Date)">
    <CONDITION OPERATORCONDITION= "Between">    
    <CONSTANT CAPTION= "[ZFDAY_MTH].[LEVEL01]"/>
    <CONSTANT CAPTION= "[ZCBDATE].[LEVEL01]"/> </CONDITION></FILTER>
    It was Parsed "OK" without any errors.
    When I used this filter in my report it does not return any records, while there are some records which I had verified earlier. When I include the two fields "[ZFDAY_MTH].[LEVEL01] and "[ZCBDATE].[LEVEL01] in My Report with the filter I am getting the following error -
    A database error occured. The database error text is: A pointer intended for use is NULL. pConstantOperand is NULL in SAPSQLExpressionEvaluator::getOperandsFromCondition, exception raised at line 125 of file source/sofasqlexpressionevaluatorbase.cpp. (WIS 10901)
    If I remove the filter and run the report , it gives me the expected results.
    Please help me if anyone has faced this issue earlier.
    Thanks ,
    Pankaj Goswami

    Hi,
    How about using this code.
    I have not tested but I think if we follow this syntax pattern, it might work
    <FILTER KEY="[Debit Memo Date\L01 Debit Memo Date].[LEVEL01].[TECH_NAME]"><CONDITION OPERATORCONDITION="Between"><CONSTANT TECH_NAME="@select(ZFDAY_MTH.LEVEL01','D',,mono,free)"/><CONSTANT TECH_NAME="@select(ZCBDATE.LEVEL01','D',,mono,free)"/></CONDITION></FILTER>
    Regards,

  • KM Doc Iviews do not display while using the FQDN

    Hi All,
    We have recently migrated the data from EP 6.0 server to EP 7.0 server. We have External Facing Portal sites in Arabic, English and French. When I use the FQDN to access the arabic sites it fails to display the KM doc Iviews.
    This works fine in English and French. Also this works fine in EP 6.0 server. While I try to access the site using just the server name (without the FQDN) it works fine as well.
    The site fails only in one condition i.e using FQDN of the server while accessing the arabic websites.
    What could be the reason for this??? Please help.
    Regards,
    Noufal

    The issue is resolved. The page was having a fixed height and the iviews within them had the height set to automatic. I just changed the height type to fixed and this has solved the issue.
    No idea if this is how it is supposed to work... and am puzzled how it was working when the server name was given without the FQDN...
    Anyways 10 points to me... 
    Regards,
    Noufal

  • I am Getting the classcast error while using the webservice client

    Hi ,
    Iam getting classcast exception while trying to get the connection Object throurh the webservice client.
    The details are:
    the ra.xml
    &lt;resourceadapter-version&gt;1.6&lt;/resourceadapter-version&gt;
    &lt;resourceadapter&gt;
    &lt;resourceadapter-class&gt;oracle.apps.contactCenter.mct.model.connector.CCAResAdapterImpl&lt;/resourceadapter-class&gt;
    &lt;outbound-resourceadapter&gt;
    &lt;connection-definition&gt;
    &lt;managedconnectionfactory-class&gt;oracle.apps.contactCenter.mct.model.connector.CCAMangConnFactImpl&lt;/managedconnectionfactory-class&gt;
    &lt;connectionfactory-interface&gt;oracle.apps.contactCenter.mct.publicModel.connector.MCTConnectionFactIF&lt;/connectionfactory-interface&gt;
    &lt;connectionfactory-impl-class&gt;oracle.apps.contactCenter.mct.model.connector.CCAConnectionFactImpl&lt;/connectionfactory-impl-class&gt;
    &lt;connection-interface&gt;oracle.apps.contactCenter.mct.publicModel.connector.MCTConnectionIF&lt;/connection-interface&gt;
    &lt;connection-impl-class&gt;oracle.apps.contactCenter.mct.model.connector.CCAConnectionImpl&lt;/connection-impl-class&gt;
    &lt;/connection-definition&gt;
    &lt;transaction-support&gt;NoTransaction&lt;/transaction-support&gt;
    &lt;reauthentication-support&gt;false&lt;/reauthentication-support&gt;
    &lt;/outbound-resourceadapter&gt;
    &lt;/resourceadapter&gt;
    The weblogic-ra.xml
    &lt;enable-access-outside-app&gt;true&lt;/enable-access-outside-app&gt;
    &lt;outbound-resource-adapter&gt;
    &lt;connection-definition-group&gt;
    &lt;connection-factory-interface&gt;oracle.apps.contactCenter.mct.publicModel.connector.MCTConnectionFactIF&lt;/connection-factory-interface&gt;
    &lt;connection-instance&gt;
    &lt;jndi-name&gt;MctEIS11/connFctryCCA&lt;/jndi-name&gt;
    &lt;connection-properties&gt;
    &lt;pool-params&gt;
    &lt;initial-capacity&gt;5&lt;/initial-capacity&gt;
    &lt;max-capacity&gt;10&lt;/max-capacity&gt;
    &lt;capacity-increment&gt;1&lt;/capacity-increment&gt;
    &lt;/pool-params&gt;
    &lt;/connection-properties&gt;
    &lt;/connection-instance&gt;
    &lt;/connection-definition-group&gt;
    &lt;/outbound-resource-adapter&gt;
    &lt;/weblogic-connector&gt;
    The web.xml
    &lt;servlet&gt;
    &lt;servlet-name&gt;MyWebService1SoapHttpPort&lt;/servlet-name&gt;
    &lt;servlet-class&gt;myapp.Class1JCA&lt;/servlet-class&gt;
    &lt;load-on-startup&gt;1&lt;/load-on-startup&gt;
    &lt;/servlet&gt;
    &lt;servlet-mapping&gt;
    &lt;servlet-name&gt;MyWebService1SoapHttpPort&lt;/servlet-name&gt;
    &lt;url-pattern&gt;/MyWebService1SoapHttpPort&lt;/url-pattern&gt;
    &lt;/servlet-mapping&gt;
    &lt;session-config&gt;
    &lt;session-timeout&gt;35&lt;/session-timeout&gt;
    &lt;/session-config&gt;
    &lt;mime-mapping&gt;
    &lt;extension&gt;html&lt;/extension&gt;
    &lt;mime-type&gt;text/html&lt;/mime-type&gt;
    &lt;/mime-mapping&gt;
    &lt;mime-mapping&gt;
    &lt;extension&gt;txt&lt;/extension&gt;
    &lt;mime-type&gt;text/plain&lt;/mime-type&gt;
    &lt;/mime-mapping&gt;
    &lt;/web-app&gt;
    The client is
    Context m_context;
    MCTConnectionIF m_connection = null;
    Hashtable env = new Hashtable();
    env.put( Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory" );
    env.put(Context.PROVIDER_URL, "t3://localhost:7101");
    try {
    m_context = new InitialContext(env);
    System.out.println("Got the context objNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN");
    MCTConnectionFactIF m_cxFactory = null;
    Object objFactory = null;
    objFactory = m_context.lookup("MctEIS11/connFctryCCA");
    System.out.println(objFactory.toString());
    m_cxFactory = (MCTConnectionFactIF)objFactory;
    System.out.println(m_cxFactory.toString());
    m_connection = (MCTConnectionIF)m_cxFactory.getConnection(); //
    When i run this i am getting the exception as
    Entering!!!!!!!!!!!!!!!!!!!!!
    Got the context objNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN
    [oracle.apps.contactCenter.mct.model.connector.CCAConnectionFactImpl@14bc17f|mailto:oracle.apps.contactCenter.mct.model.connector.CCAConnectionFactImpl@14bc17f]
    java.lang.ClassCastException: oracle.apps.contactCenter.mct.model.connector.CCAConnectionFactImpl cannot be cast to oracle.apps.contactCenter.mct.publicModel.connector.MCTConnectionFactIF
    at myapp.Class1JCA.GetConnection(Class1JCA.java:47)
    I have checked that the jar files are matching in both client an connector side
    Please help me on this

    Is that ever running ? Where/how did you installed tuxedo ? Which OS user was used for tuxedo install ?
    Nicolas.

  • IPhoto always get logout from application while using it.

    Hi!
    Anyone encounter this before that iphoto automatically exit itself while you are using it?

    Process: iPhoto [3219]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 8.1.2 (8.1.2)
    Build Info: iPhotoProject-4240000~8
    Code Type: X86 (Native)
    Parent Process: launchd [91]
    Date/Time: 2010-08-26 23:16:13.270 +0800
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 187739 sec
    Crashes Since Last Report: 8
    Per-App Interval Since Last Report: 174396 sec
    Per-App Crashes Since Last Report: 7
    Anonymous UUID: 0E0FEAFC-43BF-4BEA-B8EB-F1C570AF1791
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 ??? 0000000000 0 + 0
    1 ??? 0x00000002 0 + 2
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x96a6f942 kevent + 10
    1 libSystem.B.dylib 0x96a7005c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x96a6f519 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x96a6f2be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x96a6ed41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x96a6eb86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x96a4915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96a76ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x96aa5848 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x94493a80 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x9444c7f1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x9444c6d4 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x00f6c201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x00f5a363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    9 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    11 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x96a4915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96a76ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x96aa5848 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x94493a80 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x9444c7f1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x9444c6d4 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x00f6c201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x00f5a363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    9 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    11 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x96a490fa machmsgtrap + 10
    1 libSystem.B.dylib 0x96a49867 mach_msg + 68
    2 com.apple.CoreFoundation 0x93c45faf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x93c45094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x93c44ec1 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x94491378 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6 com.apple.proxtcore 0x00f5b8a5 -[XTRunLoopThread run:] + 421
    7 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    8 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    9 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    10 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x96a68086 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x93c8580d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    3 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x00506841 0x1000 + 5265473
    4 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x00506841 0x1000 + 5265473
    4 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x96a490fa machmsgtrap + 10
    1 libSystem.B.dylib 0x96a49867 mach_msg + 68
    2 com.apple.CoreFoundation 0x93c45faf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x93c45094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x93c44ec1 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x9449042c +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    7 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    9 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.Foundation 0x9447faeb -[NSCondition wait] + 316
    4 com.apple.iPhoto 0x0051242a 0x1000 + 5313578
    5 com.apple.iPhoto 0x00511c48 0x1000 + 5311560
    6 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    7 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    9 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.Foundation 0x9447faeb -[NSCondition wait] + 316
    4 com.apple.iPhoto 0x0051242a 0x1000 + 5313578
    5 com.apple.iPhoto 0x00511c48 0x1000 + 5311560
    6 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    7 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    9 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x96a4915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96a76ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x96aa5848 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x9583e3b5 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x9583e0f3 TSWaitOnSemaphoreCommon + 511
    5 ...ickTimeComponents.component 0x9736a8bd ReadSchedulerThreadEntryPoint + 4698
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x96a49142 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96a76cbc pthread_condwait + 1089
    2 libSystem.B.dylib 0x96abf203 pthreadcondwait + 48
    3 ...ickTimeComponents.component 0x974d8f75 jpegdecompress_MPLoop + 79
    4 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    5 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x00506841 0x1000 + 5265473
    4 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x004a4bec 0x1000 + 4865004
    4 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x96a6e9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x96a6ef68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x96a6eb86 start_wqthread + 30
    Thread 16:
    0 libSystem.B.dylib 0x96a6e9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x96a6ef68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x96a6eb86 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x00004000 ecx: 0x96a4f442 edx: 0xffffffff
    edi: 0xffffffff esi: 0xfffff000 ebp: 0xcf644118 esp: 0xbfffdb1c
    ss: 0x0000001f efl: 0x00210246 eip: 0x00000000 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x9fbfee com.apple.iPhoto 8.1.2 (8.1.2) <436E886C-E26D-2C7D-9745-252829318EFE> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0xb31000 - 0xb5cfff com.apple.DiscRecordingUI 5.0.5 (5050.4.3) <D8435BFF-0FD0-BCDA-8E22-AF466FDAD5FC> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0xb74000 - 0xc29fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0xc6f000 - 0xc79fff com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0xc83000 - 0xd1fffc com.apple.MobileMe 8 (1.0) <47DF6C20-78C5-1AA2-1D64-274EAE522D93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0xd81000 - 0xd81fff +eOkaoCom.dylib ??? (???) <17ADB0F4-BF83-0B0B-5293-F843F1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
    0xd85000 - 0xdb8fe7 +eOkaoDt.dylib ??? (???) <673BD0C5-FAC4-ABB7-B55E-FD8A75E4759D> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
    0xdbe000 - 0xf24fff +eOkaoFr.dylib ??? (???) <684982FE-55E4-174D-9CF3-DA4319BD57F9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
    0xf28000 - 0xf4cff2 +eOkaoPt.dylib ??? (???) <E2ED8DE8-7A2D-8309-3CB5-2E87F135A8A8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
    0xf53000 - 0xf9aff7 com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0xfde000 - 0xfdeff8 com.apple.iLifeSlideshow 1.1 (452) <65FE31A8-C4C3-2069-9B2C-CB00BB168CFE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
    0xfe2000 - 0x1062fef com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x10c4000 - 0x10c4ff7 com.apple.AppleAppSupport 1.5 (1.5) <9FD82212-62A9-A388-940B-2343D69889C3> /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x10c8000 - 0x10f0fff com.apple.iLifeSlideshowCore 1.1 (134) <6B3AA83C-6198-9C49-7AFB-619E5DC2C756> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x110a000 - 0x121afe3 com.apple.iLifeSlideshowProducer 1.1 (382) <BBC8AFE4-95A6-4993-C10C-FF8AAC006928> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x128d000 - 0x1396ff3 com.apple.iLifeSlideshowRenderer 1.1 (375) <F8723883-3C5C-734F-CD08-709E4079B2C5> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x140a000 - 0x1415fff com.apple.iLifeSlideshowExporter 1.1 (159) <A378AE26-9698-2327-CDAA-D2AF255DE5BE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x141e000 - 0x1447fe3 com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1458000 - 0x1460fe7 com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x146c000 - 0x146ffff com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x14f8000 - 0x14faff3 com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x17a0000 - 0x17a3ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x17a8000 - 0x17eeffb com.apple.motion.component 1.0 (726) <E31AF6AE-6E05-B6E9-3533-9A8955D6D27C> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x17f4000 - 0x17f6ff7 Motion 726.0.0 (compatibility 1.0.0) <4377AE39-7E6B-D0E0-356E-6F3C92EBE405> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x365a000 - 0x36befe2 com.apple.LiveType.framework 2.1.4 (2.1.4) <7AABA687-4323-E5B9-BA04-8F61C217E6FD> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x36de000 - 0x3733fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3761000 - 0x37feff8 com.apple.procore.framework 4.0.2 (757) <D3146F1E-F86D-F2A2-509B-E3F9640CBE40> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0x16080000 - 0x16080ff7 libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x160a8000 - 0x160b9fe7 com.apple.FCP Uncompressed 422.component 1.6.1 (1.6.1) <62C290FB-2735-60C4-CE88-7ECB0DE6EDB3> /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x1617b000 - 0x1617fff7 com.apple.qldisplay.Generic 2.2 (327.4) <FFAE5FA3-DFAD-3906-E575-5C342F3D034E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/DisplayBundles/Generic.qldisplay/Contents/MacOS/Ge neric
    0x163fa000 - 0x163fbff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x19f66000 - 0x1a0d9ff7 GLEngine ??? (???) <5EB664AC-6395-A161-ED9D-12219745A887> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1a10b000 - 0x1a510fe7 libclh.dylib 3.1.1 C (3.1.1) <50390561-2363-6DB1-407B-FD807F375466> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x1a5dc000 - 0x1a5fffe7 GLRendererFloat ??? (???) <4F847096-3DBD-AE90-90FF-5AE12E15D3C9> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1a607000 - 0x1a617ff3 com.apple.iPhoto.FlickrPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x1a697000 - 0x1a6b1ffb com.apple.AppleIntermediateCodec 1.3.1 (152) <D9F7038D-87B0-9F80-3AC2-3C7624D464AE> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1a6c3000 - 0x1a6c4fff com.apple.iLMBAppDefPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x1a985000 - 0x1a991fff com.apple.FinalCutPro.iChatTheaterPreview 1.0 (195) <C8965C94-63DD-F9B0-BA40-E79194ED6391> /Library/QuickTime/iChatTheaterPreview.component/Contents/MacOS/iChatTheaterPre view
    0x1a9a1000 - 0x1a9acfff com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x1a9b6000 - 0x1a9c0fff com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x1a9ca000 - 0x1a9d4fff com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x1a9de000 - 0x1a9e9fff com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x1a9f3000 - 0x1a9fafff com.apple.iLMBAperturePlugin 2.1.5 (127) <64F3D109-E8AC-7ABB-31E0-73DA26832360> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x1aa02000 - 0x1aa03fff com.apple.iLMBFolderPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x1aa09000 - 0x1aa0dfff com.apple.iLMBGarageBandPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x1aa14000 - 0x1aa1ffff com.apple.iLMBiMoviePlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x1aa27000 - 0x1aa38fff com.apple.iLMBiPhoto8Plugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x1aa42000 - 0x1aa4afff com.apple.iLMBiPhotoPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x1aa52000 - 0x1aa5afff com.apple.iLMBiTunesPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x1aa62000 - 0x1aa64fff com.apple.iLMBMoviesFolderPlugin 2.1.5 (127) <A6AE59EF-4E40-840B-36A8-F4DC6B697A5B> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x1aa6b000 - 0x1aa6dfff com.apple.iLMBPhotoBoothPlugin 2.1.5 (127) <86FE0230-8B70-E1CD-F280-5654F999EC70> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x1abd9000 - 0x1abf2fe7 com.apple.applepixletvideo 1.2.19 (1.2d19) <4A68731C-8071-6CF5-012C-40F00CD1333A> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1abf9000 - 0x1ac0efff com.apple.iPhoto.FacebookPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x1ac1b000 - 0x1ac1ffff com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x1b10e000 - 0x1b13fff7 com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x1b1d0000 - 0x1b1f4ff7 com.apple.AppleAVCIntraCodec 1.0 (16) <8A1A4CEE-1610-EECE-74DA-D2AF42825E6D> /Library/QuickTime/AppleAVCIntraCodec.component/Contents/MacOS/AppleAVCIntraCod ec
    0x1bab0000 - 0x1baecfe3 com.apple.QuickTimeFireWireDV.component 7.6.6 (1742) <1FFC5B3D-78E8-4902-7886-7EC84B574481> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1c500000 - 0x1c56dfe7 com.apple.AppleProResCodec 2.0 (224) <B7A79FF2-9C32-5554-A3C3-BE91F9B89419> /Library/QuickTime/AppleProResCodec.component/Contents/MacOS/AppleProResCodec
    0x1c5ba000 - 0x1c5cdfe3 com.apple.IMXCodec 1.4 (155) <B7A1514F-1A2B-EC3E-719D-B8BB25016A05> /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x1c900000 - 0x1c9e1ff3 com.apple.iTunesAccess 9.2.1 (9.2.1) <AA5ACB37-2AA4-F426-AB28-755F58F2CB19> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x1ca09000 - 0x1ca40fe7 com.apple.DVCPROHDCodec 1.5 (237) <5BA42205-5AEE-73BB-A7DE-5417EF028D5B> /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x1cf40000 - 0x1cfeffe3 com.apple.AppleHDVCodec 1.5 (228) <8D2121A0-BA53-28A2-C9A5-3BED137701DA> /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x1d074000 - 0x1d0c0ff7 unorm8_argb.dylib 1.4.1 (compatibility 1.0.0) <82389195-06EA-B276-3AC5-DDDF94C2A82E> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
    0x1d1e2000 - 0x1d22bff7 float_rgba.dylib 1.4.1 (compatibility 1.0.0) <1411D7AC-D509-3401-3D59-733AA271D5E5> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/float_rgba.d ylib
    0x1d5a8000 - 0x1d665fe2 com.apple.DesktopVideoOut 1.2.7 (1.2.7) <7959538F-2A96-F2BB-EEC3-0718A326C152> /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x20c00000 - 0x20e95ffb +org.perian.Perian 1.2.1 (1.2.1) <7FBFA9CD-68D1-DFB5-6296-A11B06B62B37> /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x211e0000 - 0x21259fe7 com.apple.AppleVAH264HW.component 2.0 (1.0) <4FD6FDD7-8791-CEA2-9E5A-1628492A98B2> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x22d9a000 - 0x23007ff7 +com.yourcompany.XviD_Codec ??? (1.0) /Library/QuickTime/XviD_Codec 1.0 alpha.component/Contents/MacOS/XviD_Codec
    0x23665000 - 0x2366afff +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 18) (1.1.2) <271B9402-59DA-B4F5-4554-0356099BD7BB> /Users/keef/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x243c0000 - 0x243c2ff7 libclparser.dylib ??? (???) <3B34FEB5-BBFA-CC65-5D04-A4777CF60990> /System/Library/Frameworks/OpenCL.framework/Libraries/libclparser.dylib
    0x24aad000 - 0x24ab1fef com.apple.EffectsPlugin 8.0 (8.0) /Applications/iPhoto.app/Contents/PlugIns/EffectsPlugin.plugin/Contents/MacOS/E ffectsPlugin
    0x24b80000 - 0x24b84ff7 libcldcpuengine.dylib 1.4.1 (compatibility 1.0.0) <214E573A-5880-324B-3F74-7F131CFBBF9B> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x2da40000 - 0x2da5bfff com.apple.AdjustmentsPlugin 8.0 (8.0) /Applications/iPhoto.app/Contents/PlugIns/AdjustmentsPlugin.plugin/Contents/Mac OS/AdjustmentsPlugin
    0x32708000 - 0x3277aff7 half_rgba.dylib 1.4.1 (compatibility 1.0.0) <BB252DDB-F720-1831-CB75-39486B112589> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/half_rgba.dy lib
    0x8f050000 - 0x8f711fef com.apple.GeForceGLDriver 1.6.16 (6.1.6) <564FA254-348F-D753-74D9-85F91F64B805> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90072ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90073000 - 0x90150ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90151000 - 0x901b5ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x901b6000 - 0x9020cff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9020d000 - 0x90531fef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90532000 - 0x9058dff7 com.apple.framework.IOKit 2.0 (???) <A013B850-6ECB-594A-CBD6-DB156B11871B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x905c7000 - 0x905dfff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x905e0000 - 0x905e0ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x905e1000 - 0x90629fff com.apple.iCalendar 1.0.3 (54) <1FF7C991-491D-6708-51C2-08FF8916BD84> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x9062a000 - 0x9062aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9062b000 - 0x9062dff7 libRadiance.dylib ??? (???) <AB06F616-E3EA-5966-029A-8AA44BBE5B28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90633000 - 0x906fdfef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x906fe000 - 0x90702ff7 IOSurface ??? (???) <66E11D8E-CF4B-EFD0-37F9-20177C647021> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90703000 - 0x90721ff7 com.apple.iChat.IMFoundation 5.0.4 (746) <427B0732-581D-C741-0BFD-A8E4D3AD6F9B> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0x90744000 - 0x90759fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9075a000 - 0x909bdfef com.apple.security 6.1.1 (37594) <8AE73F5F-936C-80F6-B05B-A50C3082569C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x909be000 - 0x90a01ff7 libGLU.dylib ??? (???) <B50572FF-3EAC-FD98-1A01-6B718D98F67F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90a02000 - 0x90a20ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90a21000 - 0x90a8fff7 com.apple.ISSupport 1.9.3 (51) <9BB37FBA-E379-8D12-11C6-B9C5C9683D27> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90a90000 - 0x90a90ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90a91000 - 0x90ad2ff7 libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <8BAE1FC1-A478-F151-17C7-2D5DE470AC4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90ad3000 - 0x90b04ff3 libTrueTypeScaler.dylib ??? (???) <7601D717-236D-8F4E-91F5-E69BB2920478> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90b05000 - 0x90b07ff7 com.apple.QuickTimeH264.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x90b08000 - 0x90b46ff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90ba8000 - 0x90beaff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90bfb000 - 0x90c1dfef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90c1e000 - 0x90e13fe3 com.apple.JavaScriptCore 6533 (6533.13) <56902210-5DA2-D2F4-9166-089BDDEDB091> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90e14000 - 0x90e64ff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x90fe6000 - 0x90ff6ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90ff7000 - 0x90ffcff7 com.apple.AOSNotification 1.1.0 (123.3) <0386E48C-4095-1D2A-629A-83B7711550F3> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x90ffd000 - 0x9104afeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x910fb000 - 0x91131fff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x91132000 - 0x91b7aff7 com.apple.WebCore 6533 (6533.16) <8A07755B-3390-5E14-60A5-071A48DEBFF4> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91b9d000 - 0x91bd0ff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91bd1000 - 0x91c17ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x91c18000 - 0x91d44ffb com.apple.MediaToolbox 0.484.11 (484.11) <B93B175A-2039-2FD2-FBE4-22C9F8C9E223> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x91d45000 - 0x91d89fe7 com.apple.Metadata 10.6.3 (507.10) <630494FA-3BB3-EDD3-E10B-8DAAF4831E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91d8a000 - 0x91dc2ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <76C02F5C-98FD-BD64-B5FB-C698FB76EA25> /usr/lib/libcups.2.dylib
    0x91dee000 - 0x92223ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92224000 - 0x92258ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0B900F26-51C1-7639-346F-24B080AEDAF3> /usr/lib/libssl.0.9.8.dylib
    0x92259000 - 0x922a9ff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x922aa000 - 0x922b1ff7 com.apple.iChat.IMUtils 5.0.4 (746) <B2060317-610E-0D77-C602-D331FC0F4D82> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0x922b2000 - 0x922b5fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x922b6000 - 0x922d7fe7 com.apple.opencl 12.1 (12.1) <DA2AC3FA-ED11-2D10-21E9-7BDF4778B228> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x922d8000 - 0x92388fe3 com.apple.QuickTimeImporters.component 7.6.6 (1742) <76B0E668-214A-AB71-AAB8-E39E7F227C9B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x92389000 - 0x9238aff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9238b000 - 0x9239cff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9239d000 - 0x92c7dff7 com.apple.AppKit 6.6.6 (1038.29) <6F28C335-6DC2-AE0E-B79A-F256DBD0BB45> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92c7e000 - 0x92d79ffb com.apple.PubSub 1.0.5 (65.19) <AD511C1B-9FC7-E0C6-2550-8EA55137D14F> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92d7a000 - 0x92e56ff3 com.apple.DiscRecording 5.0.5 (5050.4.3) <7BFF81A5-BBFA-5D2F-FFEE-65BEA7697134> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x92e5c000 - 0x93272ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93275000 - 0x93280ff7 com.apple.CrashReporterSupport 10.6.3 (250) <981124CA-6E89-94C5-C7E9-4E0D6CA06F1D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93281000 - 0x93288ff7 com.apple.KerberosHelper 2.1 (1.0) <2E28DB03-60AF-1C7B-28B0-2768DFBF44EB> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x93289000 - 0x9328bff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9328c000 - 0x9329eff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <F91A4E32-01AA-49DB-2205-3DBE1FEFFC43> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9329f000 - 0x93758ffb com.apple.VideoToolbox 0.484.11 (484.11) <6AB58081-F7C4-46F9-2C05-CFED9E38F0A0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9376c000 - 0x9389afe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9389b000 - 0x938a6ff7 libGL.dylib ??? (???) <B87E0676-F5EF-8DA3-6DEE-13C43B3832A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x938a7000 - 0x93ad2ff3 com.apple.QuartzComposer 4.1 (156.16) <578A1842-8B62-00BF-B2E8-4C0AA8E6A938> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93b7d000 - 0x93bdefe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x93c09000 - 0x93d83fe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93d84000 - 0x93e31fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x93e32000 - 0x93ec4fe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93ec5000 - 0x93f40fe7 com.apple.audio.CoreAudio 3.2.2 (3.2.2) <51D0E2DC-B15F-AF6C-70D8-026DDAD4E2A5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93f41000 - 0x93fafff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <132A7CF8-D073-0F35-E9A4-777E5EBAC1EE> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x93fb0000 - 0x93fbaff7 com.apple.NSServerNotificationCenter 2.1 (2.1) <27830081-A412-54C8-0FB0-CEA823826F5E> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x93fbb000 - 0x94004fe7 libTIFF.dylib ??? (???) <9CFF48CC-4852-4D06-17AC-3C947C824159> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94005000 - 0x9436dff7 com.apple.QuartzCore 1.6.2 (227.22) <4288F0D2-0C87-F054-C372-8764B44DE024> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9436e000 - 0x9436fff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x94370000 - 0x9437aff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9437b000 - 0x943effef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x943f0000 - 0x943f9ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94441000 - 0x946b1ffb com.apple.Foundation 6.6.3 (751.29) <E77D3906-99F4-FEF4-FBB0-86FB3C94073E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x946b2000 - 0x946c0ff7 com.apple.opengl 1.6.8 (1.6.8) <EBB7B411-60DD-DB9D-20C0-3E6258762EF0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x946cc000 - 0x946d7ff7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <4FA0CE4A-BDE5-0E3D-37F0-03B41F0C2637> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946d8000 - 0x94710ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94711000 - 0x94762ff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94763000 - 0x9493efe7 com.apple.CalendarStore 4.0.3 (991) <9A51F65A-5B76-C96D-23DE-BE6B00822731> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x9493f000 - 0x9512e557 com.apple.CoreGraphics 1.543.50 (???) <74533178-5C90-0F54-1B06-2E1C5251ED5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9512f000 - 0x9512fff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95130000 - 0x95426fe7 com.apple.MessageFramework 4.3 (1081) <643469D1-15F3-FEAE-03A0-11776D613421> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x95427000 - 0x95429fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x95443000 - 0x9545ffe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95460000 - 0x954adff7 com.apple.ExchangeWebServices 1.2 (60) <AA36F562-FBA8-8D9A-D4E7-1E6B0657467F> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x954ae000 - 0x954b2ff7 libGIF.dylib ??? (???) <3ECD4D2C-40FE-E9A0-A2D2-E36D1C00D3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x954b3000 - 0x955bfff7 libGLProgrammability.dylib ??? (???) <23AB2443-1DB3-3BFE-38A6-11F0BE453989> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x955c0000 - 0x955e6fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x955e7000 - 0x9565afff com.apple.iLifeMediaBrowser 2.1.5 (368) <30261504-7533-5424-DD15-32739DED6FB0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x95672000 - 0x9571bff7 com.apple.CFNetwork 454.9.7 (454.9.7) <B740E1BD-01B7-34C2-2A9A-6DBC68B1EA5B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9571c000 - 0x95726ff7 com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x95727000 - 0x95744fe7 com.apple.DotMacSyncManager 2.0.3 (446.9) <11FAEB92-AA44-CFA4-F2D3-73687984BAFD> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x95745000 - 0x957f5ff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x957f6000 - 0x957f6ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x957f7000 - 0x95b17feb com.apple.CoreServices.CarbonCore 861.13 (861.13) <52803668-3669-36BD-57DD-078FBA835081> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95b18000 - 0x95b1eff7 libCGXCoreImage.A.dylib 543.50.0 (compatibility 64.0.0) <94F66BA6-A4E8-63A4-1B70-EFAA4C75D668> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x95b1f000 - 0x95b20ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95b21000 - 0x95b61ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95b62000 - 0x95b89ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95bed000 - 0x95c57fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x95c71000 - 0x95cb0ff7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <18E338B0-D82E-2ADC-FB9E-8909E765C41B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x95cb1000 - 0x95e8cff3 libType1Scaler.dylib ??? (???) <3CCADAB2-FBBF-15C9-C70C-4D26746B309E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x95e8d000 - 0x95ee7fe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x95ee8000 - 0x95eefff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95ef0000 - 0x95ef4ff7 libGFXShared.dylib ??? (???) <B6028E64-3F3B-C637-DA04-D0CD528F6E1F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x95ef5000 - 0x95f30fe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x95f31000 - 0x95f34ff7 libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <3B49AED9-0DBA-9D21-F9AC-8784363AD762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95f35000 - 0x95febffb libFontParser.dylib ??? (???) <067DC1A2-764B-41EA-B07E-4205472749B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x95fec000 - 0x960eefef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x961ce000 - 0x963b0fff com.apple.imageKit 2.0.3 (1.0) <BF2ECA4D-FCD8-AD5D-E100-22370F2C7EE0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x963b1000 - 0x963b8ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x963b9000 - 0x963eaff7 libGLImage.dylib ??? (???) <B45EA17E-03EF-3575-0843-A1205F29E71E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x963eb000 - 0x96499ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9649a000 - 0x9649dffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9649e000 - 0x964dbff7 com.apple.CoreMedia 0.484.11 (484.11) <0346F9E5-AEFE-B751-7D85-88D156C01385> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x964dc000 - 0x9655effb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9655f000 - 0x96765feb com.apple.AddressBook.framework 5.0.2 (870) <3E9D6CF3-6C41-245D-5343-941A185C8384> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96766000 - 0x96892fff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96893000 - 0x9690aff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9690b000 - 0x96933ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x96934000 - 0x96942fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x96943000 - 0x96943ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96944000 - 0x96954ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96955000 - 0x96967ff7 com.apple.syncservices.syncservicesui 5.2 (578.3) <D3B86149-3466-B202-DBC1-06C575D451EB> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x969aa000 - 0x96a47fe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96a48000 - 0x96beefeb libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    0x96bef000 - 0x96befff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96bf0000 - 0x96ccbfe7 com.apple.DesktopServices 1.5.7 (1.5.7) <A69072AD-C47E-A00D-4A69-6E46A7FB2119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96ccc000 - 0x96d67ff7 com.apple.ApplicationServices.ATS 4.3 (???) <7ECA252B-5F67-2816-A4F0-73E1DC833728> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96d68000 - 0x96da3feb libFontRegistry.dylib ??? (???) <A102F61F-25D5-001A-20C3-56304C585072> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96db1000 - 0x97d01fe3 com.apple.QuickTimeComponents.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x97d02000 - 0x97d3bfe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x97d3c000 - 0x97d94fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97d95000 - 0x97da9fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x97daa000 - 0x97db7ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97db8000 - 0x97de8ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x97de9000 - 0x97e26ff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <398BB007-41FD-1A30-26D8-CB86ED5E467E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97e27000 - 0x97e31ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97e32000 - 0x97edaffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97edb000 - 0x98095fe3 com.apple.ImageIO.framework 3.0.3 (3.0.3) <A93A514B-C1BF-21D0-FB03-CB775DE4FFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x98096000 - 0x9814ffe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x98150000 - 0x98164ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x98165000 - 0x98257ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D2C86308-F998-C83D-F49B-CD484D4EFE6A> /usr/lib/libcrypto.0.9.8.dylib
    0x98258000 - 0x98366fe7 com.apple.WebKit 6533 (6533.16) <DA6B3A05-22A9-C28C-F520-8CA5A2B88334> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x98367000 - 0x98387fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x98388000 - 0x9838efff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9838f000 - 0x98408ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x98442000 - 0x98513fe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <8FDB4C40-D453-DA53-2A66-9A53998AB23C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x98514000 - 0x98521fe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x98522000 - 0x98528ff7 com.apple.DisplayServicesFW 2.2.2 (251) <6E4020F6-4DD0-F137-F226-F396807E3C3B> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98529000 - 0x98569fe7 com.apple.IMCore 5.0.4 (746) <9B1CF5CD-7C0D-F29E-2D74-68D79B36789D> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0x9856a000 - 0x9858eff7 libJPEG.dylib ??? (???) <5CE96981-6B2A-D15B-4A17-E7BD329095B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9858f000 - 0x985cffe7 com.apple.DAVKit 4.0.3 (732) <BE678EDA-B46C-6733-C0DD-447012450C9A> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x985d0000 - 0x985faff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x985fb000 - 0x985fbff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x985fc000 - 0x98608ff7 libkxld.dylib ??? (???) <322A4B52-8305-3081-6B74-813C3A87A56D> /usr/lib/system/libkxld.dylib
    0x98635000 - 0x98778fef com.apple.QTKit 7.6.6 (1742) <98ECA8E3-73F0-D21B-8B7E-8FE651E29A7F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x98779000 - 0x987bfffb com.apple.CoreMediaIOServices 130.0 (1035) <F5E6F93D-6844-9FD7-8769-44503DFD5363> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x987f3000 - 0x987fdfe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98812000 - 0x98856ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98857000 - 0x9889aff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x989df000 - 0x98a4dff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x98a4e000 - 0x98a63ff7 com.apple.iChat.InstantMessage 5.0.4 (746) <E2F51B36-EFB1-5ACC-4188-A02B81AC056D> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x98a64000 - 0x98a69ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98a6a000 - 0x98bacff7 com.apple.syncservices 5.2 (578.3) <16A29689-1A80-3065-C4E7-AEC6A3C05C2E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x98c2c000 - 0x98f25fef com.apple.QuickTime 7.6.6 (1742) <89720F2A-F33B-FF09-3D81-F9F25A99F3EB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x98f26000 - 0x992a5fe3 com.apple.RawCamera.bundle 3.0.3 (529) <68958A8F-F1AC-A73C-3172-BC17F18EC5FC> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x992a6000 - 0x992c1ff7 libPng.dylib ??? (???) <36A3D75E-5178-4358-7F02-444E276D61AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x992c2000 - 0x9935afe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9935b000 - 0x993d3fef com.apple.AppleVAFramework 4.9.20 (4.9.20) <D8B544CB-9E32-81C2-59BD-C5DDB66DA621> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x993d4000 - 0x9950bff7 com.apple.CoreAUC 6.04.01 (6.04.01) <B6E035A9-8DA2-82FC-9C2F-F57B9B62BE5F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9950c000 - 0x9950fff7 libCoreVMClient.dylib ??? (???) <420D9D10-B00E-202D-AA98-026996AB97DD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x99510000 - 0x99590feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x99686000 - 0x99808fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2314BD12-0821-75BB-F3BC-98D324CFD30A> /usr/lib/libicucore.A.dylib
    0x99809000 - 0x9990afe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9990b000 - 0x9990bff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9990c000 - 0x99932fe3 com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <EB422111-E732-2AE0-0CFD-1D8B713B2EC9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x99933000 - 0x99940ff7 com.apple.AppleFSCompression 24.3 (1.0) <49782434-8CEE-CD5C-A953-E5EAD5765B48> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,1, BootROM MBP51.007E.B05, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.33f8
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.27)
    Bluetooth: Version 2.3.3f8, 2 service, 12 devices, 1 incoming serial ports
    Network Service: PPP Interface, PPP (PPPSerial), ppp0
    Serial ATA Device: Hitachi HTS543232L9SA02, 298.09 GB
    Serial ATA Device: MATSHITADVD-R UJ-868
    USB Device: USB-SATA Bridge, 0x0411 (BUFFALO INC.), 0x0177, 0x26200000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: Generic USB Hub, 0x058f (Alcor Micro, Corp.), 0x9254, 0x04100000
    USB Device: HUAWEI Mobile, 0x12d1, 0x1001, 0x04140000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000

  • Disable my MB display while using an extenal LCD?

    Hi, when i have a dual display on my macbook, and i close the display on the macbook, the computer goes to sleep, autimatically,
    yeah, that's normal.
    now, if i click on the BT mighty mouse, the computer wakes up, and since the internal display is closed, my MB goes into a single display mode on the external display.
    so i am wondering if its possible to toggle that single external display without going to sleep, because i beleave it wont be a good thing for my mb.?
    thanks!!

    you can open the lid
    after the external screen comes on and the internal
    screen will stay off.
    exactly, that's the final result i want have, use only my lcd while the internal display is off(lid stays open). but i wish i could do that without going to sleep and then wake it up.
    i thought if i put MB to sleep then wake it to quickly, it will eventually break the HD.

Maybe you are looking for

  • Customer open item line wise details

    Hi , I have customer open item for 240 days. Now he has made payment today for part amount only. I have cleared this amount against the outstanding amount. Now in FBL5N open item is only for balance amount. BUt when I  CHECK REPORT- S_ALR_87012178 da

  • How to configure SFTP Adapter in XI?

    Hi All, How to configure SFTP adapter in XI?, It would be great if anyone sends a step-by-step documentation on the same. Thanks in advance

  • Reg scores 40 setting for variation % in configuration of vendor evaluatio

    Hi thanks for the input but i want to know, in price level for the variation of 0% why 40 rating is given why not hundred Regards, Saurav

  • 5.1 Audio via HDMI

    Does the Apple TV support 5.1 audio out via HDMI (either bitstream or PCM)? I have it connected to my Receiver via HDMI (which passes the video to the receivers HDMI out) and I have a few movies from the iTunes store that have 5.1 audio - but the sou

  • CRM Middleware Installation

    Hi, Is it possible to Install CRM Middleware in cProjects System itself without complete installation of CRM. Is there any Prerequistes for the Installation. Regards, Boobalan.