Executing workflow after import

Hello all,
I’m trying to automatically launch a workflow which contains only one assignment. It is active and configured with the ‘Record Import’ Trigger Action on Data Manager. On Import Manager, I have selected it on the ‘Checkout/Workflow’ option. It imports the data correctly (I’m only updating one field on main table), and a job appears as ‘Completed’ on the Tasks Pane on DM. But it doesn’t appear that the assignment was run. There’s no sign on the log too.
Any idea what could be going on?
Thanks and let me know if you don’t understand.

Hello Vijay,
Both workflow and assignment run correctly standalone indeed. The Error status also happenned to me but, instead of Import, it was when I tried to launch it via the 'Record Update' option, after I updated the record on Data Manager itself.
I am running SP05 too. Haven't tried with a previous version.
I should also add that there are a couple of notes in purple font in the SP04 Data Manager manual, regarding both:
- an Autolaunch property for the Workflows table (page 220
- the Error status (page 235)
But thanks for the response anyway, since it might be a harder evidence that it can be a bug. I will get back to SAP for them to have a closer look.
Message was edited by:
        Marcos Nagato

Similar Messages

  • No records for the workflow after Import

    Hello all,
    I created a workflow which is triggered after an import I have no records in the workflow.
    For sure I added the worflow in the configuration of the Import Manager. I also added in the workflow the trigger action "after import". Nevertheless, the records have been imported but they haven`t been added to the workflow.
    The strange thing i sometimes works and sometimes just not.
    Kind regards and thanks for any help,
    Peter

    Hi Peter,
    If you are trying to work with workflow on automatic importing there are a couple of configuration you need to set up before it works fine
    1) As you said you have given the workflow name in the import manager config options that means you are trying  for automatic import in this case check to see that you MDIS is configured properly or not.
    2) In the workflow table you need to set the properties correctly such as, set the trigger action to Record Import this will run your workflow each time a record is imported.
    3)Set the Worflow as Active
    4)Set the launching to immediate this will launch th eworkflow immediately as your rrecord gets into Data manager.
    If all these options are set right then I dont think there is any reason your workflow for Record import should not work
    Hope it helps
    Reward points if found useful
    Thanks & Regards
    Simona Pinto

  • How to generate the User-Input XML Body for executing workflows via REST APIs: The Solution

    I see that executing a workflow via REST APIs requires lot of work to be done just to prepare the right User-input XML body. Any mistake and you have some major debugging to do. Larger the number of User-Inputs, the bigger is the problem.Life is so much easier at the WFA GUI with Display names and tooltip help for User Inputs which are very easy for reading and providing the right values. I don't have any such privileges when manually preparing the User-Input XML body.It’s been asked numerous times how to provide User-Input values for type table, or Query (Multi-Select) etc. These are complex User-Input types and has lots of scope for user mistakes.I can have User-input dependency at WFA GUI which allows me to make the right selection, but while preparing my XML body I need to take care of it myself.An operator is allowed to execute workflows, but the same Display names which help him make the right user-inputs, makes it impossible for him to prepare the user-input body xml. Display names can't be used in in XML body and he can't know the exact parameter names by looking at the Display names. So he need to always contact the Admins/Architects for this. And Architects/Admins can't be expected to keep providing User-Input XML body to operators every operator. How about if I could enter all the User-Input values in my workflow execution at WFA GUI, I can do a preview which passed to my satisfaction and then I can magically get the XML body for it which I can use to execute my workflow from REST APIs from any client. It could be so very much easy for me than building my User-Input XML body manually. This is exactly what I'm going to give you right now. You open the WFA in browser, Go to your workflow, Start execution, you input values from GUI reading carefully the display names, preview it to your satisfaction and then get the XML body. Assume your workflow is called “Workflow to Print a given Message”. It’s a simple workflow with only 1 user-input Displayed as "Message to Print" Prerequisites:  The following are the one-time prerequisites. You need PowerShell 3.0 on your WFA server.Import the attached Generate_Workflow_User_Input_Body_in_XML.dar in your WFA. It’s our magical command called "Generate Workflow User Input Body in XML"Add credentials of a WFA Admin/Architect in you WFA itself with Name/IP: localhostMatch: ExactType: OtherName/IP: localhostUsername: <WFA Admin/Architect Username>Password: <User Password>   Steps: Suppose you have a workflow called "Workflow to Print a given Message". You want to execute it from REST apis and need to prepare the user input XML body.  Select this workflow and clone it. The workflow clone is the exact copy of your original workflow word by word, input-by-input. It will open in Edit mode with name "Workflow to Print a given Message - copy".Add the command "Generate Workflow User Input Body in XML" at the beginning of your workflow. This is a must. This command need to be the first command in your cloned workflow.This command requires no input. So for its Parameters just press okay and save the workflow.You are done.Now Execute the clone workflow. You'll see all the user-inputs available to you. Make your choices as you wish. Preview it to confirm that planning is passed and u have no errors.Execute it now.You'll see that the our magical command "Generate Workflow User Input Body in XML" has failed in our clone workflow execution. Don't worry, its fate was decided to be so. But it didn't fail before giving me what I really wanted. i.e. my XML body for my real workflow. It displayed it in the GUI as well as saved it in your WFA server @ C:\temp\<workflow_name_dd_MM_yyyy_hh_mm_ss_.xmlIt also deleted all the reservations of this particular failed job. So NO major residue left to be cleaned.To summarize: Clone Your workflow and Add the command "Generate Workflow User Input Body in XML" as your first command.    Start Execution, provide your User-inputs and preview it. Be satisfied and Press Okay.   Now Execute it.  After a few scconds this cloned workflow will fail with Error "All done. The Workflow will fail now."     See the command execution logs for this command. You'll see the User-Input XML body. It has also saved the XML file at C:\temp in your WFA server.   Have fun. sinhaa  

    Providing a new version 1.1.0 of the command "WFA Schedular" Changes made: Added conditional String Representation based on the Scheduling parameter provided. Provided check for the right number of parameters passed into the command.Added a new parameter "Expiry Date" to automatically stop the recurring execution upon expiry.Check for Posh3.0 version in code.Have Fun!! sinhaa Below example for:Schedule a workflow for recurring execution every alternate day i.e. once in 2 days at 10:30 PM starting 06-Jul-2015 (Today's date is 02-Jul-2015) . The recurring workflow execution  should expire on 31-Dec-2015 and stop.  

  • Problem on CLOB datatype after import

    I got problem and call to Oracle support and they use DUL for extract data from datafile to dump file and I import everything is done and no error but when I check in CLOB datatype that have space(blank character) separate each character see below
    Original
    Oracle
    After Import
    O R A C L E
    So the application cannot execute those data.
    Anyone have solution how to fix this problem?
    Thanks,
    Taohiko

    if you use a direct insert you are restricted to 4000 characters.
    You can put your value in a varchar2 variable and that allows you to insert up to 32767 characters.
    declare
    my_clob_variable := rpad('x','X',25000);
    begin
    insert into my_table(my_clob_column)
    values(my_clob_variable);
    end;

  • Help using workflow for import manager

    hi all,
    assumes import server is used for automation creation/update of records,
    i need to design a workflow to verify existing record  that:
    if a validation pass: update all fields + update mapping key
    if a validation fail : update mapping key only
    can anyone provide good suggestion on how it can be done via workflow?
    MDM API is out of scope...
    thanks,
    Shanti

    Hello Shanti
    Import manager and import server  launch workflow after data loading is finished.
    You cannot manage loading rules from workflow.
    You can create two inbound ports:
    one for keys loading
    another one for keys+fileds loading
    Regards
    Kanstantsin Chernichenka

  • Error in executing workflow.

    Hi All.
    I am executing a workflow task individually for Change document. ( CV02N)
    But after executing workflow if i check in workflow log i am getting following error.
    Error: subdocs could not be aligned (009)
    Could any one advise me why this is happening and what to do...?
    Thanks ,

    I've never had this problem, so here's just an educated guess: Are you changing one part in a multipart document?
    In any case you should provide a lot more information to make it easier for everyone to help. Just a few examples:
    - Is the workflow a SAP standard one, or a custom one?
    - Is the object (BOR or class) a SAP standard one, or a custom one?
    - Do you get this error every time (for all documents) or not?
    - What is your SAP release?

  • IPhoto 7.1.5 - Disappearing Photos After Import of New Photos

    This is a revisit of an earlier problem that has been addressed in several discussions. The problem is reproducible.
    Background: Running 10.6.7 and iPhoto 7.1.5
    I have a 14 GB Photo Library with > 10 thousand photographs. After importing another 100 photos, iPhoto AGAIN showed ONLY the latest event photos. Closing iPhoto and reopening iPhoto shows all of the events for ~1 sec and then "poof" the photo library says that there are 0 photos. I have followed the instructions in numerous discussions including my earlier post. Nothing works permanently.
    SUMMARY: Repeated rebuilds of the photo library with iPhoto Library Manager (iPLM) bring the events/photos back until the next photo import. Then I am back where I started.
    I have done the following:
    1. Booted on the startup CD and checked and repaired all disk permissions (many) and other disk errors (none).
    2. Made a backup of the photo library.
    3. Rebuild photo library in iPhoto.  No joy. This NEVER helps anything.
    4. Deleted pLists and opened iPhoto. No help.
    5. Ran BatChmod to check on all of the permissions to RW. No permission problems are seen now.
    6. Ran iPhoto Library Manager and confirmed permissions set there are OK. It is important to make sure that the permissions are  set correctly to RW in iPLM.
    7. Ran iPLM and I can access ALL of the events and photos. (This is where the last discussion ended.)
    8. Imported more photos from my iPhone and  “poof” no more photos seen in iPhoto. I Go back to step 7 and wait 1.5 hours for a rebuild in iPLM.
    Any further suggestions would be helpful. This is occurring after EVERY import of new photos. As long as I do not import more photos I can access all events and photos.

    Tony:
    It could be that the card has been compromised and iPhoto doesn't recognize it. Open Image Capture and see if you can upload the photos to a folder on the desktop. If that can be done reformat the card with the camera, take a couple of test shots and try again.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Appset not appearing after import

    Hi Friends,
    We are on bpc75nw sp04.
    Custom appset(A) is correctly imported into target system. I'm able to see in backend(BW), but in fron-end(BPC admin/BPC excel) not appearing. Could any one suggest, what might be reason? How to know install user id of BPC system?
    Basis consultant, tried with different user ids like install user, & other users, but he couldn't see at server level as well client level.
    I checked uje_user table, it shows appset(A) avialable to  USER1.
    I hope with USER1 id only, we are able to see appset (A).
    Regards,
    Naresh

    Log:  import ended with warning.
       Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Activation Mode)
       Start After Import for AppSet XXXX in Client 500 for RFC MDX PARSER
       Import Step UPDPTAB completed without errors
       Import Step ADMIN_DEF_UPD completed without errors
       Import Step APPS_ADD completed without errors
       After Import method for AppSet XXXX finished successfully
       Start of data checker messages
       The file service structure is correct.
    Dimension ACCOUNT's master is empty!
    Dimension ACCT's master is empty!
    Dimension CATEGORY's master is empty!
    Dimension CHANNEL's master is empty!
    Dimension COST_COMP's master is empty!
    Dimension C_ACCT's master is empty!
    Dimension C_CATEGORY's master is empty!
    Dimension TIME's master is empty!
       BPF: Validation error; No template access is defined for template "Sales Flow"
       BPF: Validation error; member item "REGION 2" is not in drive dimension "LOCATION"
       BPF: Validation error; hierarchy "PARENTH1" is not in drive dimension "LOCATION"
       BPF: Validation error; member item "REGION 1" is not in drive dimension "LOCATION"
       BPF: Validation error; hierarchy "PARENTH1" is not in drive dimension "LOCATION"
       BPF: Validation error; member item "REGION 2" is not in drive dimension "LOCATION"
       BPF: Validation error; hierarchy "PARENTH1" is not in drive dimension "LOCATION"
       BPF: Validation error; member item "REGION 1" is not in drive dimension "LOCATION"
       BPF: Validation error; hierarchy "PARENTH1" is not in drive dimension "LOCATION"
       BPF: Validation error; member item "INDIA" is not in drive dimension "LOCATION"
       BPF: Validation error; No template access is defined for template "SALES_PLANNING FLOW"
    End of data checker messages
       End of after import methode RS_APPS_AFTER_IMPORT (Activation Mode) - runtime: 00:19:35
       Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Delete Mode)
       Nothing to delete.
       End of after import methode RS_APPS_AFTER_IMPORT (Delete Mode) - runtime: 00:00:00
       Post-import method RS_AFTER_IMPORT completed for APPS L, date and time: 20110207110512
       Post-import methods of change/transport request BQ1K900069 completed
            Start of subsequent processing ... 20110207104537
            End of subsequent processing... 20110207110512
       Execute reports for change/transport request: BQ1K900069
          on the application server: sparbdb
        Ended with return code:  ===> 4 <===

  • Pics missing after import

    I was importing pictures from my camera to iPhoto, the import finished....the pics were erased from my camera. Then iPhoto quit unexpectedly. When I go back into iPhoto my pictures that were just imported were no where to be found. Sad sad story.....can anyone think of a way to find them.....are they placed in any other location???
    Thanks for the help

    Katie:
    Welcome to the Apple Discussions. Open the iPhoto Library package and see if there's a folder in there titled "Import" or "Importing". If there is look in side and see if there are any files in it. If so move to the desktop, launch iPhoto and import the contents of that photo. If those are your missing file you're done.
    If not you may have to get a 3rd party file recovery application like MediaRECOVER to recover the deleted files from the camera's memory card. If your camera does not mount on the desktop you'll need to get a card reader. IMO using a card reader and not having iPhoto delete after import is the best way to go. I always let the camera reformat the memory card after uploading.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Getting errors in LR 6 after importing MOV files

    Hi,
    LR 6 newbie here after using Apple's Aperture. It seems that none of my MOV files are working after importing them from Aperture.
    Any suggestions what should I do? I've tried purging the cache in Preferences->File handling but no luck so far.
    Really clueless why LR doesn't work.
    Thanks for any light you could shine on my problem.

    Hi,
    Could you please have a share about what KB you moved?
    From the posted message, it seems to be this VMWindow.exe is not working well.
    VMWindow.exe is the executable that is used for the standard “work with the virtual machine desktop” experience.  If you just start this executable by itself it will open the “Virtual Machines” folder. See: Windows
    Virtual PC Executables
    To have it a quick fix, please take a try to reinstall Windows Virtual PC(uninstall via View installed updates Windows Virtual PC (KB958559), restart and then download/install from
    here), then mount the Windows XP VHD file,
    Virtual Hard Disks (VHDs) in Windows Virtual PC.
    Best regards
    Michael Shao
    TechNet Community Support

  • How to triger SAP workflow after save in t-code RMWB

    Dear friends,
    After execute t-code RMWB, I could click save button to save it. but my requirement is to triger the SAP workflow to send an email.
    My question is, how to triger this SAP workflow after clicking save in t-code RMWB?
    Thanks a lot!

    Use this function module in a Exit or BADI or Enhancement spot during SAVE
    SAP_WAPI_START_WORKFLOW
    I THINK IT CAN BE DONE BY CREATING A SPOT IN "CALL METHOD GO_APPL->MO_RMWB->SAVE" IN PROGRAM OF RMWB

  • Duplicates after import

    Hi,
    New to iphoto. I did an import from cd of my images, and they all showed up in last import. I created a new folder called flowers, and copied about 500 pics from the 'last import' into my flowers folder.
    Now I did a spotlight search to see where the images were stored.
    Surprisingly I saw:
    /users/Craig/Pictures/iPhoto Library/Originals/2008/Feb 16,2008/*.jpg
    /users/Craig/Pictures/iPhoto Library/Data/2008/Feb 16,2008/*.jpg
    It appears (doesn't seem to be symbolic links) that the images are duplicated, no editing done after import on these pics. In the Data directory , all pictures have rw-r--r--@ (note the @ sign afterwards), while in the Originals , some of the images have the @ sign but most of them don't.
    I'm unclear why this is happening , what the @ sign means. I know not to modify the iPhoto database, but I certainly don't want duplicates of every photo I put in.
    Appreciate any feedback and comments on this.
    Thank you.
    Craig

    Craig:
    I use PhotoPresenter for some of my slideshows. It has over 20 animated themes that you can use. Here are just two: Apple TV Intro - Reflection. It integrates with iPhoto so you can make slideshows of albums or events. You can run it in demo mode to see if it fits your needs.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Image Corrupted After Import into LR4?

    Several times now I've imported images into LR4 from my External HD and and a few the files are corrupted. (See attached image)
    I realize that LR is not suppose to do anything to the files on the disk when importing... but I've checked the RAW images from back-ups and they are not corrupted prior to import into LR. AFTER import into LR the actual file (on the external HD) IS corrupted in both LR and then on the External HD.
    My workflow has been to copy files from my CF  Card to the External HD (Western Digital 3 TB) ino the appropriate file... then go to LR4 and import.
    Can anyone suggest what the problem is?  I replaced the Card Reader... same problem occurs.  I've checked numerous RAW files in Bridge... none are shown as corrupted (prior to LR4 import)

    The corruption may or may not be “sudden”.  If things look ok in Library then it happened sometime between initial preview building during import and you’re viewing the image in Develop.   If the last place things looked ok was in the Import thumbnail grid, then that is only showing the camera-embedded previews, so the images may be corrupted on the card, already. 
    The most important thing is to determine what the problem is, where the corruption comes from, so you can fix it.  It could be the camera, the card, the camera-to-computer USB cable, the card-reader, the usb-slot, the computer-memory, the computer hard-drive, the USB-drivers, LR, itself, or some other software, like Microsoft Security Essentials has caused problems for some people in the past, although why is not really understood. 
    If the corruption is still occurring with the latest images, then you can experiment by changing one or more of the components mention above, and see if things are ok or still corrupted.
    As far as recovery, if part of the image data is missing or zeroed out overwritten with random junk, there’s no way to get that bad data, back, from the existing file because the files, themselves, only have one copy of the data.
    The three things I can think of to suggest are:
    1)      If the preview in Library doesn’t show the corruption then there are ways to retrieve the previews from the LR preview cache as JPGs.  This isn’t the same as the RAW data, but is better than nothing.
    2)      If the camera-embedded preview has not been damaged—it is typically stored in front of the raw data so depending on where the damage is, it could be intact, then there are ways to extract the camera-embedded preview from the raw file, which again is better than nothing.
    3)      The best thing is if you have a backup of the images that don’t show the corruption, either because the images are still on the card, or because you made a backup during import and the corruption happened sometime after import, then you could copy those over the top of the corrupted files and be ok.
    These things may or may not be possible depending on your situation, though.  If you don’t have any backups that are ok, and LR’s previews are bad, and the in-camera preview is tiny or also damaged, then you’ll entirely out of luck for those images.  And things maybe really bad if it’s the hard-drive that’s failing and you have no backups of your images, there, either.  It is important to determine what is wrong, and with the least effect on the images that are still good.

  • Premiere HDV Workflow (After Effects CS3 too)

    I'm working with a Sony HDR-FX1 and Premiere Pro CS3 to capture my HDV clips - in mpeg format.
    1. I'm looking for the best way to edit these HDV clips in Premiere. I have heard of CineForm's Neo Scene and I was wondering if I NEED this to edit the HDV clips in Premiere or not. If I don't need CineForm, are there any alternatives to editing the footage in Premiere or tips on speeding up the process?
    2. Please note that I will be working between Premiere Pro & After Effects (both CS3) and back to Premiere so I'm also wondering what type of file I can export from After Effects to get back to Premiere. Will I need the CineForm codec for this step as well? I'd like to export to a file where I won't lose any quality or compress my video when bringing it back into Premiere for editing.
    3. I noticed after importing one of my HDV clips into After Effects it's separated by Upper field first. Will I need to export with Upper field no matter what format I use when rendering from After Effects?
    Any tips, links or tutorials on the subject would be greatly appreciated.
    Foochuck

    Although not absolutely necessary
    Cineform prospect HD & adobe cs3 ( premiere & after effects) works very well together. The CFHD format gives You a fluent workflow and is cleraly recommended.
    ( and this codec should have been implemented as part of "the adobe package" - just like native drivers for P2 and EX1 - but thats another discussion)
    ( btw : anything less than 2.1 - 2.4 core_2_duo will be a pain without CF as I see it)

  • File size changes after importing photos

    Quick question here. I've been using iphoto (now using iphoto 8)for a couple years and just noticed that after importing photos (I use a variety of original formats, usually jpeg or raw) the file size in iphoto is a lot smaller than the original (roughly half). First of all, why is this? Is there any way for iphoto to retain the original size? If I try copying a photo out of iphoto, say onto my desktop, the file size remains the same as it was in iphoto. In other words, it doesn't revert back to the original.
    Any idea as to why it would do this?
    Some help would be much appreciated.
    Ads

    Welcome to the Apple Discussions. When a raw file is imported iPhoto creates a jpg version so if you're looking at that and comparing to the size of the raw file, yes it will be smaller.
    If you edit a photo the resulting file will be slightly smaller since there will be one level of jpeg compression added to the file. All subsequent edits will not cause any more compression because the edit instructions are saved in the database file and applied to the file for viewing, printing and exporting. That's why iPhoto calls it nondestructive editing.
    If the photo is portrait oriented and comes from a camera which has the auto-rotate feature iPhoto will create a rotated version and that will contain some jpeg compression.
    Dragging the photo to the desktop will bring the edited version which will be smaller. To get the original file export using the Format=Original setting as Larry has already pointed out.
    If you're worried about image quality unless you will be printing a very large photo you'll be hard pressed to see any degradation in the image.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: iPhoto 8's new option in it's rebuild library window, "Rebuild the iPhoto Library Database from automatic backup" may make this tip obsolete. We'll know when users have occasion to use it and see if that's the case.

Maybe you are looking for

  • No text showing in Pages '09

    The text is there apparently - but I can't see it. No matter what I try, it does not show any text in the document. It's like, the same colour as the background - even though I set it to a dark colour, what ever. I just installed this brand new - and

  • Labview 2011 with TruckSim 8.01 Automated Runs

    Hello, I have been using Labview on and off for a few months so I am still fairly new.  I skimmed through the help files and various support and could not find the answer, but sorry if this is an obvious and basic question. I am running TruckSim with

  • Jumpy USB Mouse

    I've been using a USB mouse since I've had my laptop, and it's always worked fine until a week or so ago. When I turn my computer on the mouse will work just fine, but after a while it starts jumping around the screen whenever I move the mouse. I'm u

  • TextEdit not working the way it used to

    I am now running the new Leopard 10.5.2 on a brand new MBP 17" and noticed that TextEdit does not have a check-off box in Preferences to print Page Numbers... is this a bug that can be fixed or it it someplace else now? TIA,

  • Could oracle provid https or ftp download?

    As we know,http download is unsafety,it's easy to redirected to another download place by  add a http 302 "Moved Temporarily" response code.So,could oracle java download site provide https download,just like chrome and firefox download site? Or provi