IPhoto 11 lost after Migration Assistant run

I just bought a MBP 13' which came pre-bundled with iPhoto 11. I wanted to import my existing user data & apps from my previous mac using Migration Assistant. Unfortunately, this appears to have replaced iPhoto 11 with iPhoto 08 from my previous mac.
My MBP didn't come with any install DVD. How can I get iPhoto '11 back?

To re-install iPhoto
1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
/var/db/receipts/
2c: on 10.7 they're at
/private/var/db/receipts
A Finder Window will open at that location and you can remove the iPhoto pkg files.
3. Re-install.
If you purchased an iLife Disk, then iPhoto is on it.
If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
If you purchased it on the App Store you can find it in your Purchases List.

Similar Messages

  • Login invalid on new MacBook after Migration Assistant

    Migration Assistant problem
    New computer: 15" MacBook Pro with Retina display (probably OS X Lion
    Old computer:  15"Macbook Pro running Mountain lion.
    My regular login password is invalid on the new computer after migration assistant - Not sure what to do.
    Any help is greatly appreciated.
    Thanks

    I managed to find a solution
    Here is the link:
    http://osxdaily.com/2010/08/10/forgot-mac-password-how-to-reset-mac-password/
    There are instructions to reset the mac password without a CD.  You set up a new admin account then you can reset the password to your original account.
    It solved the problem.

  • After Migration Assistant, Time Machine refuses to use old backups

    I've got to say I'm pretty disappointed with Time Machine.
    I just dropped $2,000 on my second-ever Mac, a 15" MBP (Core i7 2GHz, 4GB RAM, 500GB 5200rpm hard drive, the stock low-end 15" config).  From what I'd heard about Migration Assistant, I believed it would easily move my stuff over to my new Mac.  For the most part it did, but a few things didn't transfer.  Other posts on the topic detail them accurately - Desktop icon layouts, some settings, Growl, etc.
    I told Migration Assistant to use my Time Machine backups, which have been happening without incident for a long time.  My oldest backup is December 2010.
    Now that my new MBP is about 99% set up like my old MBP, I am having a problem with Time Machine.
    I get the error "Time Machine could not complete the backup.  This backup is too large for the backup disk.  The backup requires 355.61 GB but only 176.44 GB are available."
    Looking at the Time Machine drive in Finder, I found that Time Machine is trying to create a new folder for backups and do a full backup.  Where there was once one folder, "[My Name]'s MacBook Pro," there is now an additional folder, "[My Name]'s MacBook Pro 2."  Time Machine is trying to back up into that second directory.
    Now, I get it that this is a different computer.  But really, if I use Migration Assistant to restore my Time Machine backup, I think it would be safe for OSX to assume that I want to continue using those backups.  What is especially disappointing for me is, there were things that Migration Assistant did not restore properly.  I probably haven't found them all.  That makes it CRUCIAL that I have my Time Machine backups, but it seems that Apple thinks it's perfectly normal for me to want to FORMAT my Time Machine drive after Migration Assistant did a half-*** job of migrating my data.  I need those backups now more than ever.
    I do also have an online backup, but I still don't feel very comfortable destroying six months of local backups just to make Time Machine work again.  Both MBPs were running the same (latest) version of Snow Leopard, so it stands to reason all that needs to happen is a very small incremental backup.
    I have been Googling for hours.  All I've found is a procedure for 10.5 that doesn't work in 10.6 where I get down into the Terminal and change a MAC address in a file on the Time Machine volume.  But that's it.  In fact it seems like there's no answer.
    Come on Apple, you do everything else better than the competition.  Why do I have to nuke six months of backups or buy a new 2TB external drive to make Time Machine work again?  I assure you I want to continue making incremental backups against my old Time Machine backups, and promise to hold you not responsible should I screw something up by grabbing an old system file or something from February.
    Would appreciate any help anyone could offer.

    Did you use Setup Assistant when your new Mac first started up, or skip that, create a user account, then use the Migration Assistant app in your Applications/Utilties folder?
    If you used Setup Assistant, when you started your first backup you should have gotten the message in #B5 of Time Machine - Troubleshooting.  It sounds like you didn't (or chose Start New Backup).  And no, the Leopard procedure doesn't work on Snow Leopard.  That's what #B5 is for.
    Usually, if you use Setup Assistant, Time Machine will still say it's going to do a full backup, and make room for it, but actually do an incremental backup (very, very slowly).
    Either way, it usually deletes a lot of old backups.    We're hoping that will be fixed in Lion.
    Once it's decide to make a new backup, there's no known way to prevent it.

  • Data lost after several days running!

    data lost after several days running
    ENV:
    Service Pack 1 for Crystal Reports for Eclipse 2.0
    Tomcat5.5
    Problem:
    There is no problem to export the report as PDF files in the first few days after i upgraded the CR4E.
    But after several days running,the problem appeared : the exported PDF file was incomplete!
    It's supposed to 3 pages,but only 1 page(the first page) exported actually.
    When i restarted the tomcat,the problem disappeared.In several days running,
    the problem appeared again...
    Code:
    reportClientDoc = new ReportClientDocument();
    reportClientDoc.open(Messages.getString("tmpltPath")+tmplt_name, OpenReportOptions._discardSavedData);     
    RptHelp  rptHelp = new RptHelp();
    rptHelp.setDatabaseCtrl(reportClientDoc);
    rptHelp.addDiscreteParameterValue(reportClientDoc,"","userName","admin");
    rptHelp.addDiscreteParameterValue(reportClientDoc,"","start_date",start_date);
    rptHelp.addDiscreteParameterValue(reportClientDoc,"","end_date",end_date);
    for(int i=0;i<6;i++){
         if(!p_name<i>.equals("")){
              rptHelp.addDiscreteParameterValue(reportClientDoc,"",p_name<i>,p_value<i>);
    String exportPath = Messages.getString("reportExportPath");
    String exportName = "test";
    rptHelp.export(reportClientDoc, exportPath+exportName, file_extention);
    File file = new File(exportPathexportName"."+file_extention);
    FileInputStream in = new FileInputStream(file);
    int len = (int)file.length();
    byte[] data = new byte[len];
    int read = 0;
    while (read <len) {
        read += in.read(data, read, len-read);
    in.close();
    response.setContentType("application/x-msdownload");
    response.setHeader("Content-Disposition", "attachment; filename="+ URLEncoder.encode(exportName"."file_extention,"ISO-8859-1"));
    OutputStream ops = response.getOutputStream();
    ops.write(data);
    ops.flush();
    ops.close();
    out.clear();
    out = pageContext.pushBody();

    What is the data? What is displaying the data (graph or chart)? What does your code look like? Why did you post a 4M image to the forum?
    NaN in the data will appear as gaps in plots.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How do i merge my user accounts after migration assistant

    Hello,
    How do I merge my user accounts after migration assistant from a time machine back up?

    I wonder how to plan what account and rights to have where?
    I had my old original account on my iMac, and then I "migrated" the data to a user account, in order to have some advantages with that setup. So everything worked approximately ok in this setup.
    And yesterday, I tried migrating to a new Mac, and suddenly I get aware of the fact that the rights on these two earlier accounts were important.
    And especially, after doing the migration to the new machine twice, until I got the Mail working, I am now totaly bewildered what solution to aim for? How to merge the two migrated admin accounts - keeping the original admin account is also important, since my file system har special rights for that one.
    Could anyone give me more ideas about how to proceed? I think I have working Mail on one of the two migrated account (with 100 000 mails or so, it seems so...). The other account is the one I would like to have.
    Also I think I want to use a normal user account, not an admin account for my daily use. And I have to see if things still work if I turn off the admin rights...
    Thankful for any advice!
    /groundliner

  • IMovie and iPhoto won't run after Migration Assistant

    After I used Migration Assistant to transfer my PowerPC files and apps. to my new Intel Mac, iMovie and iPhoto won't open. Any ideas on how to fix it?
    Thanks!

    sorry, if you have a new mac it should come with the new version of iLife which is what you want to install. My bad. So, insert the istall DVD that came with your new Mac. On that DVD there should be a directory called Optional Installs which should contain a .mpkg file for installing iLife (I don't have an install disk handy so I don't remember the name of the file). double click on that file and it will guide you through the installation process.

  • Too many files and space used after Migration Assistant

    After running migration assistant to transfer my 2006 MacBook Pro (core duo) to my new 2010 MacBook Pro (i7), I noticed the amount of space used went from 87 gb to 144 gb. The number of files went from 816,834 to 981,311. Was this to be expected? That many new files and space used?
    One thing that happened on the first run was about an hour and half into the transfer it thinks it had lost the connection between the systems and would not restart. I had to quit the migration on the old system and reboot(power off and on) the new one. The re-run finished ok. It did think that the users on the old system were already on the new so I had it replace them. There were a few folders that indicated they were from the old mac and I deleted them.
    Also there were a lot of Disk Permission errors when I ran a Verify Disk Permissions which cleared up when I ran Repair Disk Permissions.
    Any thoughts/ideas on the disk space issue?
    running 10.6.3

    Solved.
    On the restart of the Migration Assistant, it duplicated my user directories and put them in a deleted users directory in /Users.
    I deleted that directory to free up the disk space.

  • New Mac is frozen after Migration Assistant finished!

    I just got a new 13 inch MacPro the other day (Lion) and used Migration Assistant to transfer everything from my old 09 Pro (10.5.8). I restarted the new one after the transfer was done but nothing loads! I just see the background image (from my old Mac, so clearly the transfer did work) and the colorwheel. I tried waiting - couple of hours, nada. After shutting down manually and restarting the same thing comes up. Help!

    10.7 doesn't run 10.5 software, so you should have only restored the user and nothing else.
    Hold the shift key down while booting and log into the Admin user of the machine, then delete the other user.
    Reboot normally twice and see if it works like it did before, if not.
    Then hold the command and r keys down and boot, this enters Lion Recovery, use Disk Utility to erase OS X Lion and then get online (fast reliable Internet, wired preferred) and redownload Lion from Apple's servers.
    If all this fails, simply take the machine back to Apple and let them do it.
    13" is not a good choice for 3D gaming as it's all integrated graphics (scores 11), no  powerful dedicated graphics card like the 15 and the 17" have (scores 30 and 45)
    Just thought I'd warn you, perhaps you may consider upgrading to a cooler 15" with anti-glare screen.
    https://www.youtube.com/watch?v=_X0wo6dIsMU
    If you have your files on a regular storage device, not TimeMachine, then use that to restore manually with.
    All you have to remmeber is to use the same user name as on the 10.5 machine and transfer files right into their same folders as before.
    When itunes and iPhoto runs, it will upgrade the older libraries.

  • IPhoto Not Responding after Migration to new MacBook

    Gang,
    I bought my wife a new White MacBook and I used the Migration Assistant to move her data from her old iBook. Everything went well except for iPhoto. When I opened it for the first time it started updating the photo library but it hangs at around 32 minutes remaining. In the activity monitor it goes red and says Not Responding. It has done this 4 time now even after reboots. Also, the photos did transfer over and can be seen in the Desktop/ScreenSaver Preference.
    Any ideas how to get past this?
    TIA,
    James

    Gang,
    I have deleted the iPhoto Library and replaced it several times but each time when I open iPhoto on the new MacBook it wants to update the library and then after about 3 minutes it will hang. In the Activity Monitor the process turns red and reads (not responding).
    This has been going on for two days now and it is the only thing I can not get working on her new MacBook.
    On the old iBook iPhoto works just fine.
    Any ideas???????
    TIA,
    James

  • Limited file access after migration assistant

    After migrating files from a TM to a new HD for my MBP, I needed help from the Apple Community just the find the things tucked away in a new user folder. Now I need help getting them to open.  Many folders have this little minus sign on them and say "You have no access" when I see their info. These are the most significant items and what I thought was the purpose of a backup. (Music, Pictures, Movies, Downloads, Deskstop, and my fav. "Silver Briefcase"), I have found the files on TM, so they do exist, but I am hesitant to click "Restore", as the files may already be on here somewhere. Please help make this "just work".

    geologyjoel wrote:
    Before getting this, I took it to a Mac-helper store. They had me make a new account and delete the two incomplete accounts so I could do a full restore and have only one account. They recommended restoring while in TM from that one account, shut down the computer, restart, open the restored account, and deleting this dumby-starter account. That didn't work: I got a "cannot complete this process. Error -8003".
    That should work if, instead of using Time Machine to restore the account in question, you use Migration Assistant to transfer it instead.  Restoring or copying the home folder from your backups won't work.
    Trying your method: Pressing Command (the apple) - R resutls in a "No" sign as in "No smoking", and then my computer shuts off.
    Do that after powering down. 
    Your profile says you're running Tiger (10.4.11).  We know that's outdated, since Time Machine doesn't work on Tiger, but we don't know what you are running:
    •  If you're running Leopard (10.5.x) or Snow Leopard (10.6.x), you need to insert the the OSX Install disc (per section (b) of #14 and hold the "C" key while starting up.
    •  If you're running Lion (10.7.x) or Mountain Lion (10.8.x), you need to start from your Recovery HD, per section (a) of #14.  Hold Cmd and the "R" keys while starting up (the Cmd keys are next to the spacebar on most keyboards).
    If that doesn't work, hold the Alt/Option key while starting up.  That will show all possible startup sources, something like this:
    If you're on Lion or Mountain Lion, you should see either "Recovery HD" or "Recovery 10-8" (the red arrow).
    If you're on 10.7.2 or later, your Time Machine drive may have a copy of the Recovery HD (the green arrow). 
    If there's an Install disc in your SuperDrive, it will be shown.
    Select the one you want (the gray arrow should move), then click the drive icon to start from it.
    EDIT:  please tell us what version of OSX your Mac is running. 
    It would also be a good idea to update your profile, by clicking "Your Stuff" at the top of this page, selecting "Profile," and editing the "My Products" section.
    Message was edited by: Pondini

  • Time Machine after Migration Assistant restore

    During vacation, my MacBook pro’s hard disk suffered directory corruption so bad that neither Disk Utility nor DiskWarrior could repair it. I knew I had a recent Time Machine backup at the office, so I just reformatted my hard disk, reinstalled, and was up in running again in a few hours.
    When I returned from my holidays, I used Migration Assistant to restore everything from the Time Machine backup, including users, applications, preferences, and other data.
    I experienced several problems:
    1. The Mac is bound to an Active Directory domain. After restoring users using Migration Assistant, domain users could no longer log in. I had to unbind and re-bind the Mac to the domain before domain logins worked again.
    2. The newly re-installed and restored Mac no longer recognized the Time Machine backup as being a backup of itself. This caused additional problems because when I enabled Time Machine again, it tried to make a full backup, saw that there wasn’t enough space on the disk, and deleted all but the most recent backup from the Time Machine volume.
    3. Migration Assistant failed to restore several very important files, including:
    a. Finder preferences and desktop layout
    b. Mail preferences, including accounts and signatures
    c. Keychains, including passwords to WiFi access points and web sites
    d. VPN settings
    e. The Stickies database
    f. Some Address Book contacts
    g. The iTerm.plist file (from ~/Library/Preferences)
    h. Lotus Notes Data (from ~/Library/Application Support)
    i. Other application preferences & data
    I was able to locate some of these files in the single remaining backup on my Time Machine volume. However, some were simply gone. The iTerm.plist file, for example, was nowhere to be found. This file contained several dozen customized iTerm commands that I will have to reconstruct from scratch.
    4. Ever since restoring from backup, Mail has exhibited a problem wherein it sometimes displays the wrong message. It doesn’t do this with all messages; only some. For example, if I select the most recent message in my inbox right now, a message received in June is displayed in the preview pane instead.
    Has anyone else observed problems like these? Is there any hope of recovering the backups that Time Machine saw fit to delete?

    Pondini wrote:
    Michael Lowry wrote:
    2. Time Machine does not recognize old backups as being from the same computer if the Migration Assistant method was used to restore the computer.
    Not exactly, but the result is nearly the same. When you erased the internal HD, it got a new UUID, so to OSX it's a different drive, and everything put back on it was considered as new, and Time Machine backed it up.
    Ah, ok. So if I understand correctly, it was the fact that I reformatted the drive, and not the particular method I used to restore, that led to Time Machine deleting most of the backups. Is that right? I still find it very odd that right after restoring from a backup, the system doesn’t recognize that very same backup.
    I suppose if I had investigated the matter more carefully and spent a few hours reading on the web, I might have learned about some properties file inside the backupdb where I could have manually tweaked the UUID after reformatting. But honestly, how would I have known this? I thought I did things according the proper procedure. When Disk Utility was unable to repair the drive, it displayed specific instructions to back up my files (done), reformat, reinstall, and then restore from backup. When I followed these instructions provided by Disk Utility, my Time Machine backup was rendered unrecognizable, and most of my backups were deleted without warning.
    Moreover, I wonder again: how would a less knowledgeable user experience this?
    I gotta say, this process could be made more user-friendly and the instructions & warnings clearer.
    The iTunes Library was not restored.
    Was it in the default location (the +<your home folder>/Music+ folder)?
    I found the original iTunes Library on the backup disk; I restored these files manually and that fixed iTunes. All of the music had already been restored successfully. And yes, my library was in the ~Music directory.
    Once I’d made iTunes happy, I was able to sync my iPhone. This brought back the missing Address Book contacts, because they were on the phone.
    The Mail database appears to be irretrievably corrupted. I have no confidence any more that clicking on an item in the list will actually display that item.
    Have you tried +Mailbox > Rebuild+ from the Mail menubar?
    I hadn’t seen that option. That fixed it. Thanks!
    This was my first time relying on my Time Machine backup, and I must say I am not satisfied. I work in IT and consider myself a power user; I hate to think how a less expert user would experience this situation. So much for “it just works.”
    Ordinarily it does; this is quite unusual.
    I'm a retired IT guy, and learned many years ago that all hardware fails, sooner or later, and no backup app is perfect, so I always recommend keeping (at least) secondary backups. It's not any help now, of course, but you might want to check out #27 in [Time Machine - Frequently Asked Questions|http://web.me.com/pondini/Time_Machine/FAQ.html] (or use the link in *User Tips* at the top of this forum) for some suggestions.
    I’m not sure I will continue using Time Machine. I like the advantages (multiple versions, integration into some apps, nice UI); but I don’t know if they’re worth much if the backup is not reliable as a system backup. I wonder if an incremental Carbon Copy Cloner backup wouldn’t be better for my needs. A CCC backup would also give me one additional benefit: it would be bootable, virtually eliminating downtime and facilitating quick repair and restoration.
    Thanks again for your suggestions. They have been informative and helpful.

  • Help!  Macbook Pro stuck with the spinning wheel after Migration Assistant froze.

    I have a Macbook Pro and a Mac Mini both running OSX (latest version).  I was trying to the do the Migration Assistant and it froze on the Macbook Pro and I can't even shut off my laptop.  Any tips would be wonderful!! 

    If it was purchased brand new then it's running a version of Lion, so to reinstall Lion:
    Reinstalling Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.

  • Cannot Access Apple Website After Migration Assistant [SOLVED]

    After using Migration Assistant, I was no longer able to access www.apple.com or download using Software Update on the new Mac from an account that was migrated. It turned out to be one or more obsolete Apple cookies.
    If you're having this problem, do the following:
    1) Run Safari.
    2) Choose Preferences from the Safari menu.
    3) Click Security.
    4) Click Show Cookies.
    5) Delete every cookie that starts with ".apple".

    Well, my issue was completely in my network - in fact my Broadband router.
    I have very simplistic acl's on my router that simply define timed access for the kid's devices (2 x laptops and 1 x iPod touch) - no blocking of websites by URL or anything fancy - just permit Internet access (by MAC address) between time A and Time B. And having realised that all 3 of these devices were suffering from various (and, strangely, different) connectivity issues (iPod Safari and 1 laptop couldn't get to Apple Website, whereas the other laptop could; 1 laptop could log into iTunes Apps Store, whereas other laptop could not; etc.), I decided to simply disable the deployed ACLs. And immediately the iPod Touch and 'associated' laptop could download iPod touch app updates (e.g. the reason for the original post), and also access websites that they couldn't previously, etc.
    Also seemed to solve the iTunes Store access issues with the other laptop, although that device still has other connectivity issues....
    So, anyone with a Belkin F7D3402 v1 running Firmware v1.00.51 (possibly UK only Belkin device - and which I have already reported to Belkin as having a buggy DHCP reservation implementation - i.e. it doesn't work!) - be warned: if you have ACL's defined, even without discrete/individual URL filtering, it might be affecting general Internet connectivity in a very random and weird way....
    P.
    Message was edited by: Paul Whelan
    Message was edited by: Paul Whelan

  • Windows on Parallel, on new MacbookPro not working after migration assistant

    After I did migration assistant from my old macbook pro to my new macbook pro and formatted the old laptop, when I opened the Parallel I had on my laptop it told me that Windows in no longer a genuine software although I've been working with it on my previous macbook pro and it is a genuine windows..What can I do?
    I tried to retype my licence to reactivate windows but it wouldn't work!!
    PLease help..

    Did you, by any chance, make a backup of your old MBP on which there is still a copy of the Windows virtual machine? If so, try copying that over to the new MBP to replace the VM giving you trouble.
    Windows periodically checks the hardware configuration it's running on and if too many factors have changed, it puts up the complaint you're seeing. That may have been aggravated by how Migration Assistant transferred the VM file. I use VMware Fusion rather than Parallels and when a VM is moved to a new Mac, Fusion senses that and asks if the VM was moved or copied; if you answer copied, Fusion assigns a new MAC address to avoid network conflicts if both instances of the VM are running at the same time. But the new MAC address also triggers Windows to complain, as yours has. Does Parallels ask that question too, or does it, perhaps, just assume it's been copied? A more complete discussion of what you're running up against can be found here.

  • Trackpad gestures not working after migration assistant

    I just got a new 13" macbook pro for my wife.  I initially created an admin account for myself and everything seemed fine.  Then I ran the migration assistant to import my wife's account from her old macbook (~3 years old, running snow leopard).  Now some trackpad gestures, like the 2 finger scroll, don't work in her account.  Some do, like pinching and unpinching to zoom.
    I've tried turning all the gestures off in preferences, then turning them back on again, but to no avail - 2 finger scroll doesn't want to work.
    It seems like it must be some old trackpad settings that are overriding the new - her old macbook had the button and did not do gestures.  But I don't know how to get rid of any imported trackpad settings so it will go back to default behavior.

    Same thing happen to me. Had to go into iTunes folder and use old iTL file to get iTunes to open again. But after I did that my iPhone now isn't being recognized by iTunes and it wants me to wipe it. I also can't update to iTunes 11...I'm stuck on 10. It says I should update when I manually check for update but the store says there is nothing for me to download. This is so frustrating.

Maybe you are looking for

  • PC00_m40_PFY

    HI, when i am executing PC00_m40_PFY standard report in production server i am getting the below mention Dump..It is not showing selection-screnn also. It directly goes to dump. But it is working in Development server. pls kindly help on this issue.

  • Why not  prompt to transport?

    Hi experts, When I update a data type name  in ECD, sap ask me to transport. that's ok but when I update the source code of a function module, it doesn't ask me to transport. I goto se09, and there is only one request (not released). I don't find the

  • One accountant process several company code

    Hi, Previously, our SAP server has only one company code,  so all accountants do not need to switch between company codes. Now, we will have another company code set up, but the accountant is same,  which means whey will do transaction in SAP for two

  • Illustrator cc won't upgrade to 17.1

    I trying to install the 17.1 and I have installed and re-installed it 3 times. I've tried the adobe cleaner and unistalled and reinstalled the creative cloud  app. Nothing is working. Please help.

  • J.Nack's blog:  Adobe looking vor volunteer testers of CS4 update

    Today's blog entry at http://blogs.adobe.com/jnack/: January 19, 2009 Photoshop CS4 update in development In the time since Photoshop CS4 shipped, we've heard from some customers about various things not working as designed. In particular, various Wi