Mavericks - minor enhancement or total re-write ?

I'm confused. Moving from 10.8 to 10.9 would indicate a minor update, but the massive amount of problems being reported from BlueTooth through the Gmail Emails maked me wonder what on earth has been changed. I mean what was wrong with the old email.
As a developer myself I would have assumed that you take something which is tried and tested and working well and just extend it - but the reports I'm reading imply that huge swaiths of logic and functionality have been re-written from scratch - why ? Has someone lost the origin source code ? Are they trying to avoid a legal copyright issue - what gives. I've been with OSX for 4 years now and had no worries about the upgrade to Mavericks because of the excellent track record of quality control in the past. Now I"m shocked and loosing confidence in the apple infrastructure - this is a major disaster.
I spoke to Apple Care yesterday after the Apple Mail update as I was still having weird problems with the Mail application and my Gmail accounts and was very dissapointed that the person I was chatting to was completely unaware of the widely publicised problems. Eventually I had to paste links to their own website describing the problem and the update.
So - can anyone "in the know" describe what's going on here. Had I know the scope of the changes I would have definately not upgraded. For me to go back to Mountain Lion is a 2-3 day job as I have a complicated development enviroment and a number of non Apple Store installs to re-apply.
Today I also had a grey screen appear for no apparent reason. Thought the machine had crashed, but pressing the power button resulted in a pop-up dialog appearing and asking me if I would like to shutdown or reboot.
Sigh.....
So sad.
Problems I've had myself.
Finder crashing - usually during shutdown
Bluetooth for mouse and tethering - hopeless and unusable.
Grey screens
Lots of app updates for incompatibilites - including having to pay for OSX Server new version which was not publicised until it was too late
Gmail messages - well documented - for me I keep getting messages which have been read reappearing as unread.
Mailbox Behavoir preferences can't be saved (you click save but the changes dont keep)
Mailbox accounts duplicated across devices due to iCloud Sync
Event log full of crash and hang messages
I feel sorry for the people who have had their time machine backups wiped due to incompatibilies with external drives.
I use carbon copy to clone my disk, but I don't have an ML backup to restore from now.
In summary this comes across as a huge change rather than a minor tweak/enhancement.
I'd love to have access to an official know bug list to see what they are likely to work ok. You can read the forums yes - but given my disappointing conversation with Apple Care this is no guarantee that the problem has found it's way back to the people who can fix it.

DaveGarratt wrote:
I'm confused. Moving from 10.8 to 10.9 would indicate a minor update,
No. 10.8 to 10.8.1  would indicate a minor update as would 10.8.1 to 10.8.2. Mavericks was a completely upgraded system. Thus the diffent name and different OSX no. 10.9 It was clearly advertiised as a new operating system on the download site of the Ap Store. I have had no issues with it all on my 5 Macs. Most of what you are reading is caused by failing hardware or Incompatable third party Apps. If bugs arise in this first release, they will be addressed as they have always been.

Similar Messages

  • AW01N- Total of write up not matching with total of indivudual transaction

    Hi,
    While viewing any Asset via AW01N, the total of Write up  transaction is not matching with the total of individual transactions displayed in same screen.(It displays only last transaction value in total of write up transcation)
    We applied OSS note No. 762128 still the problem exists.
    Please inform me if anybody has resolved this before.
    Thanks
    Prasad

    Hi,
    Please note that the determination of the costs behaves differently in
    the itemization and in the cost component split.
    In the itemization, each item is rounded separately, while in the cost
    component split first the individual items will be added up and then the
    value will be rounded. The differences can be avoided by increasing the
    lot sizes.
    Please review sap note 168238, which explains the systems behaviour
    and check the solution.
    To avoid the occurrance of this problem you should
    - always cost the header material again if an ingoing component with
      changed values is being costed.
    - also cost all materials again following a price calculation for a
      particular period.
    Please do not forget:
    The itemization view only displayed the itemization on that level,
    while the cost component view will display the cost component split
    from all levels.
    Please review sap note 889474. Sap note 66900 also explain why
    small differences arise between the itemization and the cost component
    split.
    I hope helps,
    Regards,
    MLM

  • [svn] 2366: Minor Enhancement SDK-15573: Locale sorting.

    Revision: 2366
    Author: [email protected]
    Date: 2008-07-03 16:16:15 -0700 (Thu, 03 Jul 2008)
    Log Message:
    Minor Enhancement SDK-15573: Locale sorting.
    Applied and modified the patch that was provided. Thank you, Romania team!
    This enhancement affects the default localeChain at startup when you don't specify it in an HTML wrapper. The localeChain is now sorted based on the system's preferred locales, as determined from the Capabilities.languages and Capabilities.language APIs.
    For example, suppose an app has been compiled with -locale=en_US,fr_FR,de_DE. Before this enhancement, the default localeChain would be [ "en_US", "fr_FR", "de_DE" ] regardless of the system you were running on. But now, if Capabilities.languages reports that the system's preferred locales are [ "fr-CA", "de" ], the localeChain will be [ "fr_FR", "de_DE", "en_US" ], with the result that the French resources are used rather than the English ones.
    The module factory classes SystemManager and FlexModuleFactory, which initialize the localeChain if it hasn't been set by the HTML wrapper, used to simply set the localeChain to the list of compiled locales. They now use a new IResourceManager method, initializeLocaleChain() to set the localeChain in a more intelligent way, passing the list of compiled locales to this method. It in turn determines the list of the system's preferred locales and passes the two lists to a new utility method, LocaleSorter.sortLocalesByPreference(). This returns the first list sorted according to the second list, and the result gets assigned as the localeChain. (Note: The LocaleSorter class will not be documented.)
    In addition, IResourceManager has a new getPreferredLocaleChain() method. It is similar to getLocales() but sorts the locale list based on the system's preferred localse. After loading resource modules or adding ResourceBundles into the ResourceManager, you can do
    resourceManager.localeChain = resourceManager.getPreferredLocaleChain()
    to set the localeChain to an intelligently-sorted list (the locales for which resources are available, sorted by what the user prefers to see).
    Bugs: SDK-15573
    QA: Yes!
    Doc: Yes
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15573
    http://bugs.adobe.com/jira/browse/SDK-15573
    Modified Paths:
    flex/sdk/branches/3.1.0/frameworks/projects/framework/src/mx/core/FlexModuleFactory.as
    flex/sdk/branches/3.1.0/frameworks/projects/framework/src/mx/managers/SystemManager.as
    flex/sdk/branches/3.1.0/frameworks/projects/framework/src/mx/resources/IResourceManager.a s
    flex/sdk/branches/3.1.0/frameworks/projects/framework/src/mx/resources/ResourceManagerImp l.as
    Added Paths:
    flex/sdk/branches/3.1.0/frameworks/projects/framework/src/mx/resources/LocaleSorter.as

  • I have just installed os x mavericks. Before that, I usually writes gmail notes using the App Mail since they're always shown from the column under "Gmail". However, I couldn't find it now. Anyone knows how to do with it, please?

    Thanks a lot.

    Howdy BubbleRabbit,
    It sounds like you want to continue using the Notes function of your Gmail account but cannot find the option in the Mail application. In Mac OS X 10.9 there is a separate app called Notes that you can add your Gmail account to. This article will help you get that account setup:
    iOS: Syncing Notes
    http://support.apple.com/kb/HT4191?viewlocale=en_US
    Notes are associated with an IMAP email account or iCloud account. To sync Notes, enable Notes for each account in Settings > Mail, Contacts, Calendars or Settings > iCloud.
    Thank you for using Apple Support Communities!
    Regards,
    Sterling

  • Need N82 in E61i Format & minor enhancements

    I have been enjoying the N82 with 8GB since over 8 months now.
    Over the days I found out that it would be nice to have a N Series phone that has all features in Mono Block (Candy bar format / Classic format) with a full QWERTY keyboard example E61i and a good battery, again E61i as an example
    But with 2.8 screen size, I would be looking at 640 x 480 screen. as well as a VGA secondary camera or still better 1.3 MP secondary camera as against the existing QCIF secondary camera.
    Here are my QWERTY N-Series Specificaitons
    1) Size & Shape - E61i -- Keyboard, laid in natural keyboard format (as against the existing QAZ keys in line left aligned)
    2) Battery - E61i (1500 mAH of pure power) A batter battery would be even nicer...
    3) 2.8 or 2.9 inch 640 x 480 VGA Screen with 16 M Colors.
    4) A Scroll Wheel (mouse like) (similar to BB 8310)
    5) 64/32 GB internal memory with 2 additional MicroSD card slots (watchful iPhone 2)
    6) existing camera of N82 with flash is SUPERB, but 7 or 8 MP with optical zoom will be a dream
    7) This is basicallly over and above what all is offered by N82 .. so what ever N82 has... is already included in.
    NO... Dont point me to E71 ... I am not impressed by that phone yet... I need a PROPER Super N Series phone with QWERTY
    Message Edited by user6300 on 09-Jun-2008 10:39 AM
    24 Nokias purchased in 13 Years (since 1998)
    1 x X6, 1 x N97, 3 x E52, 2 x 5800XM, 1 x N82, 1 x 6300, 1 x 6670, 2 x 7250i, 1 x 2100, 1 x 3560, 2 x 6610, 1 x 7210, 1 x 8310, 1 x 3330, 3 x 3310, 1 x 8210, 1 x 5110

    Did Nokia just use my thoughts / idea to release E6 Phone....
    I deserve a free E6
    http://europe.nokia.com/find-products/devices/nokia-e6-00
    Nokia.... Where is my E6 ?
    24 Nokias purchased in 13 Years (since 1998)
    1 x X6, 1 x N97, 3 x E52, 2 x 5800XM, 1 x N82, 1 x 6300, 1 x 6670, 2 x 7250i, 1 x 2100, 1 x 3560, 2 x 6610, 1 x 7210, 1 x 8310, 1 x 3330, 3 x 3310, 1 x 8210, 1 x 5110

  • Mountin Lion or Mavericks on Mid 2010

    Hello,
    I have a MacBook Pro,
    13-inch Mid 2010
    Processor 2.66  GHz Intel Core 2 Duo
    Memory 4 GB 1067 MHz DDR3
    Graphics NVIDIA GeForce 320M 256 MB
    I recently installed the latest update OS X 10.9.3, I'm curious is there perhaps by any chance that having Mavericks installed enhances my MAC to slow down? I've experienced slight lags with my MAC while running on 10.9.2 and my HD wasn't full, and I basically just use my MAC for photoshop, and play games occasionally. Which brings me back to my question is it advisable to run Mountin Lion on MacBook Pro Mid 2010 instead of Mavericks?
    I haven't been using Apple for a long duration, so please bear with me.
    Your prompt response would be apppreciated

    Arthur - I'm jumping in here because I am having similar issues with my mid-2010 MBP running SO slowly.  Here is my EtreCheck report.  Any thoughts?  I keep wondering if I need to do erase & install everything seems so screwed up.
    EtreCheck version: 1.9.11 (43) - report generated May 22, 2014 at 8:48:37 PM CDT
    Hardware Information:
              MacBook Pro (15-inch, Mid 2010)
              MacBook Pro - model: MacBookPro6,2
              1 2.4 GHz Intel Core i5 CPU: 2 cores
              4 GB RAM
    Video Information:
              Intel HD Graphics - VRAM: 288 MB
              NVIDIA GeForce GT 330M - VRAM: 256 MB
    System Software:
              OS X 10.9.3 (13D65) - Uptime: 0 days 21:26:43
    Disk Information:
              ST9500420ASG disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 499.25 GB (76.71 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Computer, Inc. IR Receiver
              HGST G-DRIVE mobile with Thunderbolt 1 TB
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        G-DRIVE mobile with Thunderbolt (disk1s2) <not mounted>: 999.86 GB
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Internal Memory Card Reader
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [not loaded] com.leapfrog.codeless.kext (2) Support
              [not loaded] com.leapfrog.driver.LfConnectDriver (1.8.0 - SDK 10.7) Support
    Problem System Launch Daemons:
              [failed] com.apple.installd.plist
              [failed] com.apple.softwareupdated.plist
              [failed] com.apple.wdhelper.plist
    Launch Daemons:
              [failed] com.adobe.fpsaud.plist Support
              [loaded] com.leapfrog.connect.shell.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [running] com.trusteer.rooks.rooksd.plist Support
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.hp.messagecenter.launcher.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
              [running] com.trusteer.rapport.rapportd.plist Support
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] ws.agile.1PasswordAgent.plist Support
    User Login Items:
              ChronoSyncBackgrounder
              Dropbox
              HP Product Research
    Internet Plug-ins:
              iPhotoPhotocast: Version: 7.0 - SDK 10.8
              FlashPlayer-10.6: Version: 12.0.0.77 - SDK 10.6 Support
              Default Browser: Version: 537 - SDK 10.9
              AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 Support
              AdobePDFViewer: Version: 11.0.06 - SDK 10.6 Support
              Flash Player: Version: 12.0.0.77 - SDK 10.6 Outdated! Update
              NP_2020Player_IKEA: Version: 5.0.94.0 - SDK 10.6 Support
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.0.2 Support
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
              JavaAppletPlugin: Version: Java 7 Update 45 Check version
    Safari Extensions:
              1Password: Version: 4.1.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              Picasa: Version: 1.0 Support
              Google Earth Web Plug-in: Version: 7.1 Support
    3rd Party Preference Panes:
              Flash Player  Support
              Java  Support
              Trusteer Endpoint Protection  Support
    Time Machine:
              Skip System Files: NO
              Mobile backups: ON
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 464.96 GB Disk used: 393.52 GB
              Destinations:
                        LaCie [Local] (Last used)
                        Total size: 465.64 GB
                        Total number of backups: 3
                        Oldest backup: 2014-05-14 13:46:44 +0000
                        Last backup: 2014-05-21 17:02:18 +0000
                        Size of backup disk: Too small
                                  Backup size 465.64 GB < (Disk used 393.52 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   5%          mtmd
                   3%          WindowServer
                   2%          Mail
                   1%          Dropbox
                   1%          mds
    Top Processes by Memory:
              618 MB          Safari
              86 MB          Mail
              53 MB          WindowServer
              45 MB          mds_stores
              25 MB          mds
    Virtual Memory Information:
              128 MB          Free RAM
              655 MB          Active RAM
              536 MB          Inactive RAM
              870 MB          Wired RAM
              4.84 GB          Page-ins
              319 MB          Page-outs

  • ABAP Program enhancement

    Hi Experts,
    As i am not familiar with data types please update me...
    I am using the below logic to calculacte years & months between 2 dates and save the result in YY.MM format.
    The FM i am using will give years & months between 2 given dates.
    My requirment is to save result in YY.MM format.
    The code is working correctly...i need a minor enhancement to code
    Currently if years are 8 and months are 8 the out put will be 8.08 but i want it in YY.MM format which is 08.08
    I want to add a leading 0 if years <10
    Please update
    DATA: years TYPE tfmatage,
              months TYPE tfmatage.
        DATA: l_res TYPE p decimals 2 .
        IF NOT SOURCE_FIELDS-/bic/zdob IS INITIAL.
        CALL FUNCTION 'FIMA_DAYS_AND_MONTHS_AND_YEARS'
            EXPORTING
              I_DATE_FROM          = SOURCE_FIELDS-/bic/zdob
              I_DATE_TO            = sy-datum
              I_FLG_SEPARATE       = 'X'
            IMPORTING
            E_DAYS               =
              E_MONTHS             = months
              E_YEARS              = years.
    l_res = years + months / 100.
    WRITE l_res TO RESULT.
    ENDIF.
    WRITE / RESULT.

    Hi,
    you could do like this:
    REPORT  zhabitest4.
    PARAMETER:
      p_datum LIKE sy-datum.
    DATA:
      result(20).
    DATA: years TYPE tfmatage,
    months TYPE tfmatage,
    y_num(4) TYPE n,
    m_num(2) TYPE n.
    DATA: l_res TYPE p DECIMALS 2 .
    IF NOT p_datum IS INITIAL.
      CALL FUNCTION 'FIMA_DAYS_AND_MONTHS_AND_YEARS'
        EXPORTING
          i_date_from    = p_datum
          i_date_to      = sy-datum
          i_flg_separate = 'X'
        IMPORTING
         e_days         =
          e_months       = months
          e_years        = years.
    l_res = years + months / 100.
    WRITE l_res TO result.
      y_num = years.
      m_num = months.
      CONCATENATE y_num+2(2) '.' m_num INTO result.
    ENDIF.
    WRITE / result.
    regards
    Walter Habich

  • Total Problem in scripts

    Hi,
    I'm facing one big issue in scripts.ie: in printing totals.
      for totals i write a subroutine in scripts.
      it's working fine.it's displaying totals well.here my problem is first i see the print preview.at that time total is correct.but when i came back and see the print preview again it displaying wrong.ie if first time the total is 'A'.Then second time it displaying like (A+A).
      other problem is when i see the print preview and displays it and go back and took the print at that time also it displaying (A+A).
    My code is like :
    *&      Form  GET_EXTPR_TOT
        this routine will get the LINE ITEM EXTENDED PRICE TOTALS When
        there is no PROMO CODE.
    form get_extpr_tot tables it_input structure itcsy it_output structure itcsy.
      data: v_vbeln2(10) type n.
      clear it_input.
      clear v_vbeln2.
      read table it_input index 1.
      move it_input-value to v_vbeln2.
      read table it_input index 2.
      move it_input-value to v_extpr_tot.
      v_extpr_tot1 = v_extpr_tot1 + v_extpr_tot.
      read table it_output index 1.
      write v_extpr_tot1 to it_output-value left-justified.
      modify it_output index 1.
      clear it_output.
    endform.                    "GET_EXTPR_TOT
    Please Send ur valuable answers.
    Thanks,
    Srinivas.

    Hi Srinivas,
    In your script you can define the total variable in one of the header related elements that will be called. for exaple you can define it in the element
    /E HEADER_TARGET_VALUE
    /: DEFINE &V_EXTPR_TOT1& = ' '
    and change your code in ITEM_LINE_PRICE_QUANTITY element as follows
    /E ITEM_LINE_PRICE_QUANTITY
    /* Begin of modification (RICEF/Issue Number:F-SD-04) by sbhavanam
    /: PERFORM GET_EXTPR_TOT IN PROGRAM ZSP_SD_ORDCM.
    /: USING &VBDKA-VBELN&
    /: USING &V_PRICE&
    /: CHANGING &V_EXTPR_TOT1&
    /: ENDPERFORM
    your abap should look like this.
    FORM get_extpr_tot TABLES it_input STRUCTURE itcsy it_output STRUCTURE itcsy.
    DATA: v_vbeln2(10) TYPE n
    * CLEAR it_input.
    CLEAR v_vbeln2.
    CLEAR v_extpr_tot.
    READ TABLE it_input INDEX 1.
    MOVE it_input-value TO v_vbeln2.
    READ TABLE it_input INDEX 2.
    MOVE it_input-value TO v_extpr_tot.
    read table it_input index 3.
    move it_input-value to v_extpr_tot1.
    v_extpr_tot1 = v_extpr_tot1 + v_extpr_tot.
    * v_extpr_tot_tst = v_extpr_tot_
    READ TABLE it_output INDEX 1.
    WRITE v_extpr_tot1 TO it_output-value LEFT-JUSTIFIED.
    MODIFY it_output INDEX 1.
    CLEAR it_output.
    ENDFORM. "GET_EXTPR_TOT
    that should solve your issues.
    -Kalyan

  • LO Enhancement

    Hi Experts,
                       Please let me know what precautions do I need to take while enhancing LO data source which is in Production. Iam adding one new field available in one of the coomunication structure to Extract structure.

    HI Raj,
    Here is one example how to enhance.
    Goto RSA6- select the 0Material.- Click on Enhance extract structure-> it will take u to the next screen there u need to create the field material group1. and append it to 0Material.
    Goback to RSA6-- RC on 0material-- it will take you to customer version edit screen- here unchk the Hide and Field only known in exit options n save it.
    Next Go back to RSA6-- 0material- click on Function enhancement it will take you to CMOD Screen( here we need to enter the project name and click create if not created on click display)
    In the next screen we find the function exits Like EXIT_SAPLRSAP_001 FOR T DATA AND EXIT_SAPLRSAP_002 FRO Master Data,_003 for Text n _004 for Hierarchies.
    select the appropriate function exit and double clikc on it. It will take you to Function builder screen.
    D Click on defn of Include ZXRSAU01. it will take you to abap editor screen.
    here u need to include the code for the enhanced fields n also write the code to populate the dat for that particular field.
    save it and avtivate the code.
    Hope this Is helpfulll
    send me ur mail id i'll send u screen shots how to do Enhancement.
    *****************Asign Points if Helpfull***************
    regards
    KP

  • Mavericks running slow

    I have a early 2011 MacBook Pro 17", 2.2 GHz i7, 16gb RAM, and I have installed Mavericks OS.
    After the upgrade, I find that my Mac is running pretty sluggish and slow, definitely not your typical Apple product. While view my photos through Finder, I find that each photo I select in sequence, the preview is getting slower and slower to open. And, eventually, when I select another folder in Finder, Finder will lock up for a few seconds to at least a minute (maybe even longer) and I get the little rainbow wheel (rollie pollie). And this has been getting worse every day.
    I went to the disk utility (command-r) and performed a disk repair, and there were several issues that it repaired, but it didn't make any difference when I went back to view my photos. I ran EtreCheck and it gave me this:
    Hardware Information:
              MacBook Pro (17-inch, Early 2011)
              MacBook Pro - model: MacBookPro8,3
              1 2.2 GHz Intel Core i7 CPU: 4 cores
              16 GB RAM
    Video Information:
              Intel HD Graphics 3000 - VRAM: 512 MB
              AMD Radeon HD 6750M - VRAM: 1024 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    Startup Items:
              Jaksta - Path: /Library/StartupItems/Jaksta
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 0:45:17
    Disk Information:
              TOSHIBA MK7559GSXF disk0 : (750.16 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 749.3 GB (378.77 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-8A8 
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Logitech USB Receiver
              Apple Computer, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              com.parallels.virtualsound          (1.0
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [loaded] com.parallels.mobile.dispatcher.launchdaemon.plist
              [loaded] com.parallels.mobile.kextloader.launchdaemon.plist
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.brother.LOGINserver.plist
              [loaded] com.parallels.mobile.prl_deskctl_agent.launchagent.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.adobe.ARM.[...].plist
              [failed] [email protected]list
              [loaded] com.divx.agent.postinstall.plist
              [loaded] com.google.keystone.agent.plist
              [loaded] com.parallels.mobile.startgui.launchagent.plist
    User Login Items:
              iTunesHelper
              TomTomHOMERunner
              AdobeResourceSynchronizer
              SpeechSynthesisServer
    3rd Party Preference Panes:
              Flash Player
              Flip4Mac WMV
    Internet Plug-ins:
              AdobeAAMDetect.plugin
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              iPhotoPhotocast.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
              Unity Web Player.plugin
    User Internet Plug-ins:
              CitrixOnlineWebDeploymentPlugin.plugin
    Bad Fonts:
              None
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: NO
              Volumes being backed up:
                        Macintosh HD: Disk size: 749.3 GB Disk used: 370.53 GB
              Destinations:
                        External Drive A [Network] (Last used)
                        Total size: 997.71 GB
                        Total number of backups: 4
                        Oldest backup: 2012-08-13 09:51:21 +0000
                        Last backup: 2012-09-22 08:17:44 +0000
                        Size of backup disk: Too small
                                  Backup size 997.71 GB < (Disk used 370.53 GB X 3)
    Top Processes by CPU:
                   3%          WindowServer
                   1%          EtreCheck
                   1%          fontd
                   0%          com.apple.WebKit.Networking
                   0%          aosnotifyd
    Top Processes by Memory:
              147 MB             Finder
              147 MB             com.apple.IconServicesAgent
              98 MB              com.apple.WebKit.WebContent
              82 MB              mds_stores
              66 MB              WindowServer
              66 MB              Dock
              49 MB              Safari
              33 MB              prl_deskctl_agent
              33 MB              prl_deskctl_wizard
              33 MB              PluginProcess
    Virtual Memory Statistics:
              12.70 GB           Free RAM
              1.40 GB            Active RAM
              494 MB             Inactive RAM
              1.42 GB            Wired RAM
              486 MB             Page-ins
              0 B                Page-outs
    Not sure of what the problem could be, third-party software, or something else. I am thinking about doing a clean install, (i.e, erasing HD and re-installing Mavericks) but I would totally hate to do that since it will take all day to back-up my stuff and than do the re-install. (BTW, what format should I chose when I erase my HD?!?)
    Any and all help/suggestions will be greatly appreciated. Thanks in advance!!

    The official name for the rollie pollie is the SBBOD (the spinning beach ball of death).
    I don't see a lot that is suspicious from the EtreCheck report, except for
    [failed] [email protected]list
    I would suspect that the problem is either that or with one or another of the third party items you have.
    The trouble with just doing a clean reinstall, is that you don't know what is causing the problem, and if it's one of those third party items you could just be reinstalling the problem again.
    Here's what I'd try:
    I'd try and find that .plist file and delete it. It wasn't on my mac so it sounds like it's from something you've installed. Mavericks has changed the way .plist files are handled and some of them are cached. Usually if there'a a plist file problem you can just delete it and restart and a new, uncorrupted plist file is generated; but this is not the case any more. I've been looking for answers for this and so far I have not found any definitive answers for this general problem (errant .plist removal).
    a safe boot would confirm your suspicions about a third party app causing the problem. Mac OS X: What is Safe Boot, Safe Mode?
    then trial and error to find the one causing the problem.
    before a clean reinstall, I'd just try a reinstallation over your current install, which can often fix the problem.

  • Enhancing Standard webdynpro component

    Hi friends,
    I have never worked on enhancing standard web dynpro components,
    Now i have got  requirement, In SRM webdynpro component  i have to place Custom Label and  Custom Hyper Link, when i click on that hyperlink, one pop up window shud be open, can any please guid how to enahnce this standard webdynpro component
    Thnx
    Kumar Srini

    Hi,
    To Enhance any standard compoenent, and specially a "VIEW" just follow the below steps:
    1. Go to SE80, Give the Component Name and press Enter
    2. Go to the Desired "View"
    3. Click enhance button (ICON Like spiral,6th from left to right of Application toolbar)
    4. A Pop up will appear asking your Coposite Enhancement name  and Enhancement Implementation name. Create "NEW" on both the occasion.
    Now for UI Enhancements:
    a) Click the "ROOT UI Element container" , right click add the custom UI elements and assign Property values as per your requirement( like binding,text,action etc.,). It is just like adding UI elements in Z-Compoent.
    b) Create actions wherevr required
    For Coding Level enhancements:
    Here, for all the methods which are in the standard compoenent will have "PRE" and "POST" Exits. The difference is "PRE" Exits will render before calling the actual code and "POST" Exit will render after rendering the actual code.
    Note: Till Enhancement Pack (EHP3) we had only PRE & POST Exits. And Now on from EHP 4 and More we do have an option "OVER WRITE" Exit.
    Apart from Exits, we can create our own Events/event Handlers. These Event Handlers will work only for the enhancements.
    We Can write our own logic in the newly created event/event handler.
    Regards,
    S.Meganadhan

  • Enhancing a transaction datasource!

    Hi all,
    Can anyone please tell me where I can find documentation on writing User exits/enhancing transaction datasources.  Is the procedure for enhancing transaction datasource same for all extraction methods like LO-Cockpit, LIS, COPA, Generic Datasource and FISL or are they dependent on the extraction method.
    I need to enhance LIS datasource and write code to populate value for couple of new fields.
    I appreciate your help.
    thanks.

    Your question has been already answered !
    https://websmp205.sap-ag.de/bi -> BI InfoIndex -> Exits
    Bye,
    Roberto
    Anyway, try to do a search inside these forums...you will try a lot of very useful material and sample...

  • Mavericks won't install

    Hello
    I have a problem with my Macbook Pro Retina from 2012. I downloaded Mavericks yesterday and installed it immediately. It ran smoothly but when I shut the Mac down it took approximately 1 minute before it was turned of. Approximately 5-10 times slower than on Os x ML. I was recommended to try format my drive and reinstall it again. I followed the instructions from apple.com where I formated the drive and after that reinstalled Mavericks. Now it runs throug like it normally do when installation but when the time remaining gets down to about 2-5 minutes the installation shuts down and I am directed back to the main menu where I can choose between Time Machine, Reinstall Mavericks, Help through Safariand Disk Utility.
    Does anybody have any suggestions on what I can do about it? Because of the formation I cannot log into the system. When I start my Mac it starts up in installation/repair mode.

    If this is any help I have archivated a log file with some errors. I am not a hardcore computer user so I need a little help to understand what it mens. So far I haven't been able to succesfully reinstall Mac OS X Mavericks all though I got a new message last time I tried saying something about Apple Store connection.
    It would be much appreciated if someone could help me get OS X back on my Macbook - if possible.
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: @(#)PROGRAM:Install  PROJECT:Install-845
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: @(#)PROGRAM:IA  PROJECT:InstallAssistant-467.1
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Hardware: MacBookPro10,2 @ 2.50 GHz (x 4), 8192 MB RAM
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Running OS Build: Mac OS X 10.9 (13A603)
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: DYLD_NO_FIX_PREBINDING=1
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: __CF_USER_TEXT_ENCODING=0x0:0:0
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: PWD=/
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: SHLVL=1
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: __OSINSTALL_ENVIRONMENT=1
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: CI_DEFAULT_OPENCL_USAGE=0
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: OS_INSTALL=1
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: _=/System/Library/CoreServices/Language Chooser.app/Contents/MacOS/Language Chooser
    Oct 23 10:32:25 philips-mbp Install OS X Mavericks[799]: Env: __CHECKFIX1436934=1
    Oct 23 10:32:26 philips-mbp Install OS X Mavericks[799]: OSInstallChunkedDownload loaded...
    Oct 23 10:32:26 philips-mbp Install OS X Mavericks[799]: OSInstallChunkedDownload loaded...
    Oct 23 10:32:26 philips-mbp Install OS X Mavericks[799]: LSExceptions [0x7f8233e41ca0] loaded
    Oct 23 10:32:26 philips-mbp Install OS X Mavericks[799]: Checking Software Update catalog URL https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-sn owleopard-leopard.merged-1.sucatalog.gz
    Oct 23 10:32:26 philips-mbp Install OS X Mavericks[799]: Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Oct 23 10:32:27 philips-mbp Install OS X Mavericks[799]: Could not add SWU product
    Oct 23 10:32:30 philips-mbp Unknown[357]: 2013-10-23 10:32:30.913 Install OS X Mavericks[799:9903] Couldn't find app store version, falling back to hardcoded
    Oct 23 10:32:32 philips-mbp Install OS X Mavericks[799]: Using product <IAPisaSource: 0x7f8233d13e20> at distance 25
    Oct 23 10:32:32 philips-mbp Install OS X Mavericks[799]: Using product <OSInstallESDProduct> based on distribution at /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/OSInstall_AppStore.mpkg at distance 5
    Oct 23 10:32:32 philips-mbp Install OS X Mavericks[799]: JS: installCheckScript threw exception TypeError: 'null' is not an object (evaluating 'my.target.systemVersion')
    Oct 23 10:32:32 philips-mbp Install OS X Mavericks[799]: No available package ref for compatibility update. Ignoring.
    Oct 23 10:32:36 philips-mbp Install OS X Mavericks[799]: LSExceptions [0x7f8233e41ca0] unloaded
    Oct 23 10:32:36 philips-mbp Unknown[357]: 2013-10-23 10:32:36.339 Install OS X Mavericks[799:2103] ERROR: write-response is unable to open the file /var/root/Library/Caches/com.apple.InstallAssistant.Mavericks/fsCachedData/8529 AA7E-5538-4020-AAEF-90BEB78CB523.  Errno: 28
    Oct 23 10:32:36 philips-mbp Unknown[357]: 2013-10-23 10:32:36.340 Install OS X Mavericks[799:2103] ERROR: failed to write cached response to /var/root/Library/Caches/com.apple.InstallAssistant.Mavericks. Falling back to old persistent store mechanism.
    Oct 23 10:32:36 philips-mbp Unknown[357]: 2013-10-23 10:32:36.343 Install OS X Mavericks[799:2103] ERROR: write-response is unable to open the file /var/root/Library/Caches/com.apple.InstallAssistant.Mavericks/fsCachedData/5497 5E10-29DD-4190-A10C-C7CD3F25CF46.  Errno: 28
    Oct 23 10:32:36 philips-mbp Unknown[357]: 2013-10-23 10:32:36.343 Install OS X Mavericks[799:2103] ERROR: failed to write cached response to /var/root/Library/Caches/com.apple.InstallAssistant.Mavericks. Falling back to old persistent store mechanism.
    Oct 23 10:32:48 philips-mbp Install OS X Mavericks[799]: Created IATool object:365ee5e0
    Oct 23 10:32:48 philips-mbp Unknown[357]: 2013-10-23 10:32:48.727 Install OS X Mavericks[799:1003] Persistent UI failed to open file file:///var/root/Library/Saved%20Application%20State/com.apple.InstallAssistant .Mavericks.savedState/window_3.data: No such file or directory (2)
    Oct 23 10:32:49 philips-mbp Install OS X Mavericks[799]: No available package ref for compatibility update. Ignoring.
    Oct 23 10:32:49 philips-mbp Install OS X Mavericks[799]: Preventing machine sleep.
    Oct 23 10:32:49 philips-mbp Install OS X Mavericks[799]: Using product IA_PKSecureNetEnabledProduct <file:///Volumes/Macintosh%20HD/OS%20X%20Install%20Data/> at distance 5
    Oct 23 10:32:49 philips-mbp Install OS X Mavericks[799]: Using mutable product path: /Volumes/Macintosh HD/OS X Install Data
    Oct 23 10:32:49 philips-mbp Install OS X Mavericks[799]: No available package ref for compatibility update. Ignoring.
    Oct 23 10:32:49 philips-mbp Install OS X Mavericks[799]: No available package ref for compatibility update. Ignoring.
    Oct 23 10:32:49 philips-mbp Install OS X Mavericks[799]: No available package ref for compatibility update. Ignoring.
    Oct 23 10:32:49 philips-mbp Install OS X Mavericks[799]: Retrieving 1 packages (5.291 GB)
    Oct 23 10:42:55 philips-mbp Unknown[357]: 2013-10-23 10:42:55.725 Install OS X Mavericks[799:303] *** WARNING: Method userSpaceScaleFactor in class NSWindow is deprecated on 10.7 and later. It should not be used in new applications. Use convertRectToBacking: instead.
    Oct 23 10:43:34 philips-mbp Unknown[357]: 2013-10-23 10:43 Install OS X Mavericks[799] (CarbonCore.framework) FSEventStreamStart: ERROR: FSEvents_connect() => Unknown service name (1102)
    Oct 23 10:43:34 philips-mbp Install OS X Mavericks[799]: Connection to sharingd became invalid
    Oct 23 10:43:34 philips-mbp Install OS X Mavericks[799]: Connection to sharingd became invalid
    Oct 23 10:43:34 philips-mbp Install OS X Mavericks[799]: Connection to sharingd became invalid
    Oct 23 10:43:34 philips-mbp Unknown[357]: 2013-10-23 10:43:34.563 Install OS X Mavericks[799:892f] Metadata.framework [Error]: couldn't get the client port
    Oct 23 10:43:34 philips-mbp Install OS X Mavericks[799]: Folder Manager is being asked to create a folder (docs) while running as uid 0
    Oct 23 10:43:35 philips-mbp Install OS X Mavericks[799]: CoreServices logging is enabled,
    Oct 23 10:43:35 philips-mbp Install OS X Mavericks[799]: SFL Favorites initialized.

  • Page Component View - Enhancement Request

    Minor enhancement request:
    Add a link directly to the Javascript section of the Page attributes, similar to HTML Header, Template etc.
    This would also have the benefit of being able to determine if functions were declared in this section w/out having to drill into the page.
    Thanks!
    Jeff

    Hi plantm,
    After testing the issue in my environment, I can reproduce it. After we change a column name which is used in a Power View chart, Power view will render the message that” The external data connection has been disabled for this Power View report. Please enable
    the connection.” when we reopen the file.
    To fix this issue, we can click Refresh button under POWER VIEW menu, then it would prompt us that” Power View was not able to complete the action due to a query failure. This can happen if the structure of your data has changed, in which case closing and
    re-opening the application will resolve the problem.”
    According to the error message, we should try to reopen the file to fix this issue. Power view will render the message that” Please refresh to see the data for this Power View Sheet. You can set properties in the Connection Properties dialog so that the
    data refreshes automatically when you open the file.” when we reopen the file. Then we can refresh it again, the report will be displayed without that field.
    Based on my research, inherently what the message means is that Power View cannot be used as a tool for snapshot reporting. With an Excel PivotTable, we can see the data last saved in the PivotTable. Power View, however, does not behave the same way – it
    won’t render the last saved state. If we want to avoid this message when we reopen the file, there are two methods:
    When we create the Power View report, we can select the checkbox that “Refresh data when opening the file”.
    After it’s been set up, go to Connections on the Data menu, then choose Properties.
    For more details about the settings, we can refer to the following blog:
    http://www.sqlchick.com/entries/2013/3/30/creating-a-power-view-report-in-excel-2013-which-uses-an-ext.html
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Mavericks iMessage restore messages

    I just did a clean-installation of OSX Maverick's on my late-2009 iMac after installing a new SSD drive.  Everything works fine.  The only one problem I'm having is restoring my old iMessage chats.  In addition to Time Machine, I also manually backed-up the (360MB) ~/folder/messages directory.
    When I start iMessages, none of the old chats display.  Only the chats that I've had since I re-installed OSX Mavericks.  Working on a theory, I wiped out the current ~/library/messages folder so it was completely empty.  When I started iMessage I expected nothing to appear in the window.  To my surprise, the "new" chats were still showing up even though the ~/library/messages folder is empty.
    Has something changed in OSX Maverick's that it no longer writes to the ~/library/messages folder?  Does anyone know how I can located the new folder where messages are stored?
    Any advice would be greatly appreciated!

    You can only restore the whole message database, not individual messages or conversations. This procedure will replace the database with an earlier version, so you'll lose all later changes.
    Quit Messages. Hold down the option key and select
    Go ▹ Library
    from the Finder menu bar. A folder window will open.
    If you're running OS X 10.8, restore the subfolder named "Messages" from a backup that predates the unwanted changes, then log out and log back in.
    If you're running OS X 10.9 or later, restore the subfolder Containers/com.apple.iChat.
    If you don't have a backup, the archive can't be restored.

Maybe you are looking for

  • Return/exchange policies?

    I find the potential for problems with the new MB overwhelming. I don't think I could live with a MB with problems. What happens if you get a MB that you think has something wrong with it? What can you do? What if you have one that makes a noise and

  • One PC, Multiple Apple ID's, how to integrate?

    Im not sure if this problem of mine is as a result of the latest iTunes update, but suddenly Im getting told that I can't download my purchases as for some reason my son's apple id is now the only one that can be associated with the pc (for 90 days..

  • Why is Messages no longer showing up under my iCloud account in the "Internet Accounts" window?

    Why is Messages no longer showing up under my iCloud account in the "Internet Accounts" window?  I recently deleted it and added it back, but then Messages went away.  On my iPhone, it shows me logged in under my iCloud account and my cell phone numb

  • Best Option (if any) for Load Balancing Distribution Point(s) on Same LAN

    Hey Guys -  I've got a simple question this time.  We use SCCM 2012 R2, manage ~800 systems at 3 locations, but perform most work at our main office where this scenario takes place.  Here, we have a single DP on-site which is a separate VM than our P

  • Unable to Extract Marketing Plan Elements in SAP BI

    Hi All, I am having an issue of Marketing Plan Elements not being pulled into BW. We are extracting CRM Marketing Elements using 0CRM_MKTELM5_ATTR & 0CRM_MKTELM_TEXT Data Source into BW. It is a full load that we are doing. Few of the Marketing Plan