Outline agrrement

can any1 plz tell me diff  between outline agrrement and schedule arrement
i am wrg on master contract whr the path for outlineaggr
is losgistic-s&d-sales----outline aggre
but i am not able see outline aggrement
Regards
Vinit

hi vineet,
         The scheduling agreement is the agreement between company and customer to supply the goods on particular dates. the scheduling agreement contain delivery dates and delivery quantity. it is relevent for pricing and will have schedulelines because items are relevent for delivery.
        Outline agreement is a contract between company and the customer about either to purchase a certain quantity of material or to purchase a particular value of items. it doesn't contain any delivery dates.
so you need not to maintain the scheduleline categories. But it contain a release order. you will create a sales order with reference to this outline agreement where as Scheduling agreement is itself a order.

Similar Messages

  • Release orders for value contract

    Hi Folks,
    I have question on value contract.
    Customer contract is fullfilled by issuing orders against the contract. When a release order is created for the contract, the system automatically updates the released values in the contract. The release order value is calculated from the total of the open order and delivery values, plus the value that has already been billed to the value contract. System checks this value with "Outline agreement target value" in value contract and issues warning or error message depends on configuration settings in value contract item catagory.
    We have business scenario where system has to check net value of value contract rather than checking "Outline agrrement target value" in value contract. Because we offer some discounts to customer in value contract thus net value of the contract differs from agreement value. So that system will issue error message when release order value exceeds net value of value contract.
    Is there any customizing settings available to meet the requirement?
    Awaiting for your inputs.
    Regards,
    Prabhaharan

    Hi,
    In transcation VTAA at item level have your own cory requirment code which will calcullate net value of the doc, hope this works out
    regards
    sriky

  • Purchase Info record unable to find from ME57

    Hi All,
    I created Purchase info record(ME13) and Source list(ME03). But when I run MRP then purchase requisition is creating ,But
    when I check in ME57,Purchase requisition unable to find the purchase info record for that material.
    Please advise.
    Pranitha

    Hi
    In source list you are only entering the vendor not the info record, if you are entering an outline agrrement either contract or sched.agreement in the source list (in the agreement column) ,then yu will get the agreement number in the p.req.
    But you are entering just vendor mane in the source list so yu will get the vendor name only in the p.r
    create a sourcelist for the material ,in that enter any agreement name and save ,then run MRP you will get the agreement number in the screen
    Check it out
    It is std.sap procedure, if you are creating a p.req manually you will get the info record number in the item detail.
    Bur via MRP you can only get the fixed vendor because in the source list you are entering only the vendor name ,you are not menttioning the info record number.
    But incase of outline agreement you are entering the agreement number in the sourcelist.
    MRP is ceated purely based on what you have entered in the source list. hope you clear.
    Let me know if you have any clarification on this.
    Thanks

  • Difference - Outline Agreement , Scheduling Agrrement , Contract

    Hi all...
    Can anyone of you please explain whats the main difference between Outline Agreement , Scheduling Agrrement and  Contract and when & where are these used.
    Thanks
    Balaji

    Hi
    Contracts and SA...both are called as Outline Agreements...
    the main Diff.bet Contracts and SA..
    1)The Conditions maintained in Contracts are always Time Dependent....where as you can maintain floating conditions in SA.(Controled by Doc.Type)
    2)Based on contract you cannot do GR Directly....ie)you have to separately send Release Order by referring Contracts and based on these release orders only you can do GR....
       whereas in SA, after releasing SA...you can do GR based on these SA...
    3)The Individual delivery lines of the Release orders of the Contracts will not be effective.....where as Individual Delivery lines of the SA are Effective...
    Reward if useful
    Regards
    S.Baskaran

  • InternalFrame.setNorthPane(null) and JDesktopPane outline drag mode

    package components;
    import javax.swing.JDesktopPane;
    import javax.swing.JMenu;
    import javax.swing.JMenuItem;
    import javax.swing.JMenuBar;
    import javax.swing.JFrame;
    import javax.swing.KeyStroke;
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.plaf.basic.BasicInternalFrameUI;
    * InternalFrameDemo.java requires:
    *   MyInternalFrame.java
    public class InternalFrameDemo extends JFrame
                                   implements ActionListener {
        JDesktopPane desktop;
        Point mouseCoord, windowCoord = new Point();
        public InternalFrameDemo() {
            super("InternalFrameDemo");
            //Make the big window be indented 50 pixels from each edge
            //of the screen.
            int inset = 50;
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            setBounds(inset, inset,
                      screenSize.width  - inset*2,
                      screenSize.height - inset*2);
            //Set up the GUI.
            desktop = new JDesktopPane(); //a specialized layered pane
            createFrame(); //create first "window"
            setContentPane(desktop);
            setJMenuBar(createMenuBar());
            //Make dragging a little faster but perhaps uglier.
            desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
        protected JMenuBar createMenuBar() {
            JMenuBar menuBar = new JMenuBar();
            //Set up the lone menu.
            JMenu menu = new JMenu("Document");
            menu.setMnemonic(KeyEvent.VK_D);
            menuBar.add(menu);
            //Set up the first menu item.
            JMenuItem menuItem = new JMenuItem("New");
            menuItem.setMnemonic(KeyEvent.VK_N);
            menuItem.setAccelerator(KeyStroke.getKeyStroke(
                    KeyEvent.VK_N, ActionEvent.ALT_MASK));
            menuItem.setActionCommand("new");
            menuItem.addActionListener(this);
            menu.add(menuItem);
            //Set up the second menu item.
            menuItem = new JMenuItem("Quit");
            menuItem.setMnemonic(KeyEvent.VK_Q);
            menuItem.setAccelerator(KeyStroke.getKeyStroke(
                    KeyEvent.VK_Q, ActionEvent.ALT_MASK));
            menuItem.setActionCommand("quit");
            menuItem.addActionListener(this);
            menu.add(menuItem);
            return menuBar;
        //React to menu selections.
        public void actionPerformed(ActionEvent e) {
            if ("new".equals(e.getActionCommand())) { //new
                createFrame();
            } else { //quit
                quit();
        //Create a new internal frame.
        protected void createFrame() {
            final MyInternalFrame frame = new MyInternalFrame();
            ((BasicInternalFrameUI) frame.getUI()).setNorthPane(null);   
            frame.setCursor(Cursor.getPredefinedCursor(Cursor.MOVE_CURSOR));   
            frame.addMouseMotionListener(new MouseMotionAdapter() {
                public void mouseDragged(MouseEvent e) {  
                    isMouse2Move(frame, e);               
            frame.addMouseListener(new MouseAdapter() {          
                public void mousePressed(MouseEvent e) {                                                 
                    setWindowDragPoint(e);              
            frame.setVisible(true); //necessary as of 1.3
            desktop.add(frame);
            try {
                frame.setSelected(true);
            } catch (java.beans.PropertyVetoException e) {}
        private void isMouse2Move(Component frame, MouseEvent e) {
            int cur_type = frame.getCursor().getType();   
            if (cur_type >= Cursor.DEFAULT_CURSOR) {
                if (cur_type == Cursor.MOVE_CURSOR) {
                    moveWindow(frame, e);                       
        private void moveWindow(Component frame, MouseEvent e) {
            int deltaX, deltaY;
            Point newMouseCoord = e.getPoint();
            deltaX = (int) (newMouseCoord.getX() - mouseCoord.getX());
            deltaY = (int) (newMouseCoord.getY() - mouseCoord.getY());
            frame.getLocation(windowCoord);
            windowCoord.translate(deltaX, deltaY);
            frame.setLocation(windowCoord);
        private void setWindowDragPoint(MouseEvent e) {
            mouseCoord = e.getPoint();
        //Quit the application.
        protected void quit() {
            System.exit(0);
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            InternalFrameDemo frame = new InternalFrameDemo();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Display the window.
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    package components;
    import javax.swing.JInternalFrame;
    import java.awt.event.*;
    import java.awt.*;
    /* Used by InternalFrameDemo.java. */
    public class MyInternalFrame extends JInternalFrame {
        static int openFrameCount = 0;
        static final int xOffset = 30, yOffset = 30;
        public MyInternalFrame() {
            super("Document #" + (++openFrameCount),
                  true, //resizable
                  true, //closable
                  true, //maximizable
                  true);//iconifiable
            //...Create the GUI and put it in the window...
            //...Then set the window size or call pack...
            setSize(300,300);
            //Set the window's location.
            setLocation(xOffset*openFrameCount, yOffset*openFrameCount);
    }how to move frame (JDesktopPane) <desktop> can not enable drag outline mode..
    help me please!
    thank you.

    yes i want all the decorations.Then I have no idea what you are tying to do. Why are you getting rid of the title bar?
    Dragging is supported automatically by clicking on and then dragging the title bar. If you want to customize the behaviour then you would need to look at the UI. Good luck.

  • Problem with duplicate and/or outlined fonts in Macintosh

    If you are using Frame for Macintosh and you find you have duplicate Arial and/or Times New Roman fonts, or, if these fonts show up on the screen as outlines, the problem may be that you have the 2.9x versions of these fonts, the latest as of this writing (31 August).
    You can find older 2.60 versions on the Apple OS 9.2 Install CD, deep in a Microsoft Internet Explore install folder (a Sherlock search will find them).
    DEAD LINK, LEFT HERE FOR HISTORICAL PURPOSES: In case you're interested, you can find the 2.9x versions at http://www.microsoft.com/mac/download/office2001/fontsupdate.asp. The page says "New Apple Macintosh versions of Times New Roman (2.91) and Arial (2.90) This update includes a fix for a problem that prevented certain characters from being printed on PostScript level 3 printers", so I'm hesitant to say that you should not use these newer fonts at all.

    i had been running the program inside Netbeans.
    Running the jar using the command line outside
    Netbeans i have no more problems... Does Netbeans use
    it's own JVM?Depends how you set it up, but look under the options. There are settings for the compiler and jvm that it uses.

  • How to delete a member in the EAS Outline by writing a script

    Hi,
    I have to delete a member from a the EAS outline. Tried deleting it manually. It throws a error stating that outline cannot be saved. Hence they restarted the services and i was able to delete the member manually. I later had a thought that may be we can write a calc script to delete that particular member. First i have to delete all the data in that member and then the member is empty after that delete the member. Not sure if we can do it. Can we do this process. If yes how do we need to go ahead with it. If there is any option pl. do let me know. I would like to avoid the manual deletion hence would like to automate.
    It is a BSO cube.
    Can anyone help me regarding this?
    Regards
    Praveena

    To echo Glenn, if this a pure Essbase database (and I think it is), ODI's member deletion would be through a dimension load rule. There are multiple threads on this board about "remove unspecified". If there's another way to do it, I'd love to hear it.
    However, if this the back end to a Planning application, ODI can do member, children of member, descendant deletes, etc. It all depends on what the target environment provides.
    Regards,
    Cameron Lackpour

  • Is there a way to add multiple outlines on the same layer?

    Hi there! I'm trying to add an outline to text or objects through the style fx, then I want to add more outlines. It would be nice if you could just add a new stroke like in illustrator. I don't want copy the layer and just do a thicker outline behind it, the point is to have it all on the same layer .. just wondering if thats possible. Thanks!

    You have been given two approaches which may meet your needs. There is another way that offers independent control of the styles, but you do use multiple layers.
    Assume you have a path that defines your object and lets say you want to apply three different styles and have independent and ongoing control over each. Create a new blank layer for each style. On each of those layers apply a brush stroke to the path, say a 1 pixel stroke whose color is also the background color as an example. Now on each of those layers apply your chosen layer styles. That is what I have done in this example:
    Paulo

  • How to reflect variable price in outline agreement

    We procure many very complex tools that have options which significantly affect the price of that tool.  We would like to be able to reflect those price differences in the outline agreement by option within the following boundary conditions.
    1. Do not want to create a new material master for each option
    2. Do not want to utilize BOM
    3. We are buying the tool so sales order solutions won't work for us
    I have looked at configurable materials where I set up characteristics to reflect the options but I have not been able to figure out a way to price those individual options.  I do see how I could create multiple line items on the outline agreement for the same material and put unique combinations of the option characteristics in individual lines but that means I have to create a line item per option combination permutation which is much more painful than simply pricing individual options.  I also haven't seen any way to get SAP to select the correct line item based on these characteristics when doing source selection on the PR or PO.   I have started looking at variant pricing but that is completely new to me and I am not sure if that is going to go in the direction I want.  My fear is that this just allows me to price a combination of characteristics vs. pricing individual characteristics then combining the prices at the time of purchase (no different that having to create an OA line item per option combination permutation).  My apologies in advance for the convoluted message but it is difficult to ask about solutions when you are not sure what functionality potentially exists.
    Thanks,
    Ben

    Hi
    Try to check with variant Configuraqtion may be upto some extent helpful
    Check the link
    http://help.sap.com/saphelp_erp2004/helpdata/EN/92/58d455417011d189ec0000e81ddfac/frameset.htm

  • Outline sync with 4 cubes or partition help req

    Hi,
    I have three huge cube's, two cubes abt 90 gb (BSO) for TY & LY data, weekly refresh with hierarchy and data on third cube (ASO). all there cubes are transparent partitioned to fourth cube.
    I have the same hirarchy in these three cubes and couple of other cubes. so is there a way to update the hierarchy on one single cube and sync with other cubes.
    please suggest me any solution .......
    I was thinking for replication partition and only sync outline is it possible?
    Edited by: user10722265 on Oct 21, 2009 9:27 PM

    Thanks Srinivas,
    yep you are correct, in regards to my questions.
    I mean you are saying to copy outline from one BSO cube to other cubes manually.or Is there any maxl command to copy outline form one cube to other.
    considering the size of the cubes, i'm planning to split the cube in to multiple, each line of buinsess (front end cube) will have there own cube instead of all users loging to one cube.
    so what i want is to maintain all hierarchy's on one cube. Then partition the dimensions pertaining to that cube only.
    what i mean is only portion of dimension will go to one cube and other portion to another cube.
    store (7)
    ->regions (12)
    -->subregions (190)
    I want 7 regions to one cube and another 5 regions to other cube.
    update hierarchy on one cube and sync to other cubes theough replication partition or other ways........i want only heirarchy sync ...........no data sync from source to target cube.
    thanks for reply srinivas
    Thanks
    srikar

  • Member Formula: IF ... ELSE do outline aggregation

    Hi experts,
    How to write a formula for a parent entity member like this:
    IF (@ISMBR("Account member"))
    do something
    ELSE
    do default outline aggregation from its descendants
    ENDIF
    Because I just want the "Do something" execute for some account member. If there is not ELSE statement, the formula will override default outline aggregation. The problem is I can not find any function that manually do default aggregation.
    Please ask if my question not clear.
    Many thanks!

    Huy Van
    I tried to replicate it in Sample Basic, I loaded sample data and below is the result
         Cola     Actual                              
         East     East     East     East     New York     New York     New York     New York
         Sales     Margin     Profit     Measures     Sales     Margin     Profit     Measures
    Jan     1812     1213     837     837     678     407     262     262I've a script where I've fixed on East (Parent member of Market)
    FIX(East,Actual,"100-10")
    Jan(
    IF(@ISMBR(Sales))
    100;
    ENDIF)
    ENDFIXBelow are the results after running the script
         Cola     Actual                              
         East     East     East     East     New York     New York     New York     New York
         Sales     Margin     Profit     Measures     Sales     Margin     Profit     Measures
    Jan     100     -499     -875     -875     678     407     262     262I don't see anything else changes (Only Sales of East is changing).
    Now that you are writing to Parent member, then aggregation from Parent1's descendants will overwrite what you script just populated.
    Regards
    Celvin
    http://www.orahyplabs.com
    Please mark the responses as helpful/correct if applicable

  • Nested IF statement in outline

    We're using 6.2 and I've built a formula into my outline. I have used IF statements before in the outline with no problem. But I'm now trying to use a nested IF statement. Is it possible? Has anyone had any success? I keep getting "unknown calculation type [0} during the dynamic calculation.     if(@ISCHILD ("MERCH DEPTS") and a40000>0);               "hrs - required"=a40000/"sales/hr";          else          if(d0044);               "hrs - required"=25;          else               "hrs - required"=50;                                   endif;                    endif;          TIARod

    I'm not sure if I completely understand what you are doing but I saw a few errors in you is statement. On your else if, you can make elseif but you don't have any function on the member name. I guesed that you need @ismbr, but it could be @isdesc or @ischild???. Take a look at the corrected calc script below. It might help youRegardsif(@ISCHILD ("MERCH DEPTS") and a40000>0);     "hrs - required"=a40000/"sales/hr"; elseif (@ismbr(d0044))     "hrs - required"=25; else           "hrs - required"=50; endif; Glenn S.Narratus Solutions Inc. [email protected]

  • IF calc in outline formula

    Hi,
    We need to set up a calculation using formula in the outline. The calculation is defined as the following:
    IF Revenue = 0, then Net Material % = 0
    Otherwise, Net Material % = Net Material/Revenue (Net Material divided by Revenue)
    Revenue and Net Material are both base member in Account dimension.
    We have probelm with setting up the IF statement with correct syntax so would really appreciate any help on setting the correct formula/syntax in the outline.
    Thanks,
    CHT

    Hi ,
    I have to use similar formula that which you used,
    (I added a new member in account dimension whichname "Visit") in my case I have to use following formula;
    IF("Unit" == 0)
    0;
    ELSE
    1;
    ENDIF;
    but it gives Syntax error and following message when I tried to varify my formula;
    "Unknown Member IF used in queryVisit"
    pls help, how could I overcome this problem
    Not: My cube is ASO and I added member from Administratio Service Console
    Many Thnx,

  • IDCS - frame outlines move to wrong location

    I'm using InDesign CS 3.0.1 to lay out a magazine. Sometimes when I re-open a document, the red-line outlines of the frames appear offset from their original locations. The type or graphics stay in their original places, but the frame outlines are offset to the right and down. When this happens, the cursor can't be placed in the correct position to edit type. The frames, however, can be copied and placed in another document; the frames and their contents appear in the normal way in the new document.
    I usually design the magazine in segments; the segments contain 16 pages, at the most. However, the problem has happened with single-page documents.
    Sometimes I can get the frame lines back in place by saving the document with a different name -- but sometimes it takes several tries to correct the problem. And sometimes I have to split the document into smaller segments to make this work.
    The problem happened occasionally when I was using OS X 10.2. Now that I'm using OS X 10.4.11, it's happening more often. I'm using a dual 867 G4 Mac.
    Searched the forums for this problem, but couldn't find it.
    Any suggestions?
    Thanks!

    Bob --
    Thanks! I had to remove the plugin from the ID folder to fix it; turning auto-activation off in Suitcase's preferences wasn't enough.
    Now, however, at least one of the ID documents can't find Zapf Dingbats, although it's there and Suitcase says it's activated (and it does show up in TextEdit). I'm using Suitcase 11.0.4.0223 -- and there have been some new issues with it in OS X 10.4.
    -- marty

  • Some photos don't show in LIbrary view--just the outlines of them

    Tonight I tried to transfer a bunch of digital photos from a CD my daughter burned into my iPhoto library, into the 2006 year folder.
    I opened the CD and in the icon view, the pictures looked fine--jpeg files.
    After I transferred them, these pictures don't show in my initial iPhoto window (the one that opens first when you click on iPhoto in the Dock, and shows all the pictures in my Library sorted by (in my case) roll/date.
    Then photo thumbnails from years prior to 2005 show up, fine, but for the most recent year of pictures, all I get are the outlines of where the thumbnails ought to show. When I click on one of the blank thumbnails, of course I get a blank ...but the frame in the lower left shows the ID info for the picture and the picture counts, etc.
    I can open the folders from the Pictures file and see them...they just won't show up in the overall Library window.
    So...I moved the transferred ones out of the iPhoto library and just put them in the Pictures folder for now.
    But what did I do? And how do I "fix it" to make all the thumbnails show up again? This is probably some simple thing...but I can't figure it out. I tried showing just the last 12 months...and I get all the blank outlines.
    G4 iBook   Mac OS X (10.3.9)   Using iPhoto 5, 768MB RAM,

    Hi john,
    First problem. You need to import photos into the iPhoto Library the correct way which is while iPhoto is open. Drag the photos out of where you put them (you already did) now you can import them into iPhoto from there.
    Read on for more info....--First thing to know and remember is this...Do not drag any images, folder of images into the iPhoto Library in the Finder. Images have to be imported into iPhoto within the application. Do not scan images and save them into the iPhoto Library folder in the Finder. Save them to another location such as the Pictures folder or even the desktop. You can then import them into iPhoto.
    If you have already put files/folders in the iPhoto Library folder in the Finder then you will also find out that if you try to import them into iPhoto you will get an error message. No worry, just drag them to the desktop and import from there.
    --All images that you import are shown in the library view. You can choose how you want to view, by rolls, by date, by rating, etc. When you put images in an Album, slideshow, book, etc, you are actually just putting pointers to those images in the library. You are not adding more images. If you delete an image from the Album it will still be in the library. If you delete an image from the library it is deleted from iPhoto's database and your hard drive (unless you have it backed up somewhere else)
    --You have a folder of images on your hard drive and want to import them into iPhoto. Drag the folder of images into an open iPhoto Library window and the folder of photos will be copied into the library, resulting in a new roll with the name of the folder. You now have two copies of those photos, the ones in iPhoto's database and the ones on your desktop. You can keep the ones on your desktop that you just imported as backup or you can delete that folder.
    -- you scan a picture/pictures and save it in a folder. You cannot scan directly into iPhoto or the iPhoto Library folder in the Finder.
    You want all your photos in iPhoto so you import them into iPhoto.
    Now you have two copies of that picture/pictures, so you can delete the originals that were in the scanned folder and keep the one/ones that were imported into iPhoto.
    -- You download pictures from your camera into iPhoto.
    There is now one copy of each of the pictures. (DO NOT HAVE IPHOTO DELETE THE IMAGES FROM YOUR CAMERA! DELETE THEM MANUALLY WITH THE CAMERA-if something goes wrong with the import and they are never imported and then they are deleted from the camera you might end up losing those images)
    You want to change something about a picture you imported, such as
    cropping it or changing the size, or changing the orientation.
    Once you do that to a picture, you now have two copies of the picture
    in iPhoto, the original and the edited one. The edited one will be in the library organize view. The original is packed away in an Original folder in your iPhoto Library folder under the date of the roll. You can always revert to the original by control clicking on the photo and choose "revert to orginal" You will not have this choice if you used iPhoto Diet to get rid of the Originals.
    (a quick note on cropping within iPhoto...when you are in edit mode, you automatically will be in the crop mode with cross hairs to highlight the crop area. To finish cropping you must click the crop button and then go back to library view and your cropped picture will be there.
    3.You want to use Photoshop or another graphic program to edit a picture in your iPhoto library.
    You can open up prefs for iPhoto and choose "when double clicking on
    photo ..do" choose "other" and select Photoshop. Now you can edit all
    pictures in your iPhoto library in PhotoShop by double clicking. If you save the photo with the same name and as a flattened file it will be saved right into iPhoto and you will see the changes. If you don't want to save it into iPhoto then do a "save as" and save to the desktop. You will then have the original photo still in iPhoto and your new edited photo on the desktop.
    Or, with iPhoto open, you can drag a picture from the library window
    to your desktop (you see a + sign on the pic you are dragging). You now
    have two of the same picture, one in the iPhoto library and one on your desktop. You can open up the one on your desktop in any graphic program and work on it. The one in iPhoto stays the same. You can also share/export the picture/pictures to your desktop or folder to work on them or do batch processing, etc. You will still have the originals in your iPhoto Library.
    Or, you can open up the ~/Pictures/iPhoto Library/folders and option drag any
    picture out of the folder to your desktop. Notice that you will see a plus sign while dragging the photo. This is copying the file to your desktop
    I would advise anyone not to do this as they might forget to use the option key and drag the photo out. Next time you open iPhoto the photo will be missing.
    Two Apple kbs for you to read
    Don't tamper with files in the iPhoto library folder
    About the iPhoto Library folder
    Don't forget that in Library view you can Control click on any picture and get a contextual menu with many options. One is to revert to original.
    Now to get to your next problem...do a "get info" on your iPhoto Library folder.
    Get info on the iPhoto Library folder
    Make sure the owner is you and you have read/write" permission. If not, click the lock to unlock and change to you as the owner with Read/write. Click the button at the bottom.
    iPhoto Library Info
    Get back with results or any more info.

Maybe you are looking for

  • Ipod Update and Windows - Not Working. 1.1.2. Downgrade?

    I installed 1.1.2 on my 160GB yesterday and it has basically ruined my ipod. Something is wrong with the windows version of this update. I can get itunes to recognize it only if I put the ipod in disk mode. But then when I disconnect it from the comp

  • How do I find an old version of a file on my Mac Air?

    The version that I have saved is missing some info I need that was in the first version I created. I remember retrieving an old file once...it was almost like magic.

  • Why is my ipod nto truning ontruning on, why is my ipod nto truning on, why is my ipod nto

    My ipod touch is having a problem were when you turn it on the black screen turns white and does it all over again.                          WHATS UP

  • How can I remove all data from the iPhoto app?

    I wanted to reset my iPhoto library and remove all places, faces and events recognized from the pictures, so I copied my iPhoto library to a hard drive and then deleted it and emptied the trash. Copied the data to iPhoto again and took a look. The li

  • NEF files won't launch app

    This is what I'm getting with almost every NEF file: "file.NEF" is damaged and can't be opened. You should move it to the Trash. Files seem to be intact, I can open them from Bridge itself or from Photoshop, just can't launch the apps from the file.