Iphoto share functions not allowed

Since a reload of OSX by Apple store to fix a problem on imac, the share function of iphoto is greyed out.
Permissions are set to read/write "you have custom access"
Why is this happening?
How do I fix this?

Cured by "restarting" the imac.

Similar Messages

  • Aggregation of analytic functions not allowed

    Hi all, I have a calculated field called Calculation1 with the following calculation:
    AVG(Resolution_time) KEEP(DENSE_RANK FIRST ORDER BY RANK ) OVER(PARTITION BY "User's Groups COMPL".Group Name,"Tickets Report #7 COMPL".Resource Name )
    The result of this calculation is correct, but is repeated for all the rows I have in the dataset.
    Group Name      Resourse name    Calculation1
    SH Group            Mr. A            10
    SH Group            Mr. A            10
    SH Group            Mr. A            10
    SH Group            Mr. A            10
    SH Group            Mr. A            10
    5112 rowsI tried to create another calculation in order to have only ONE value for the couple "Group Name, Resource Name) as AVG(Calculation1) but I have the error: Aggregation of analytic functions not allowed
    I saw also inside the "Edit worksheet" panel that the Calculation1 *is not represented* with the "Sigma" symbol I(as for example a simple AVG(field_1)) and inside the SQL code I don't have GROUP BY Group Name, Resource Name......
    I'd like to see ONLY one row as:
    Group Name      Resourse name    Calculation1
    SH Group            Mr. A            10....that it means I grouped by Group Name, Resource Name
    Anyone knows how can I achieve this result or any workarounds ??
    Thanks in advance
    Alex

    Hi Rod unfortunately I can't use the AVG(Resolution_time) because my dataset is quite strange...I explain to you better.
    Ι start from this situation:
    !http://www.freeimagehosting.net/uploads/6c7bba26bd.jpg!
    There are 3 calculated fields:
    RANK is the first calculated field:
    ROW_NUMBER() OVER(PARTITION BY "User's Groups COMPL".Group Name,"Tickets Report Assigned To & Created By COMPL".Resource Name,"Tickets Report Assigned To & Created By COMPL".Incident Id  ORDER BY  "Tickets Report Assigned To & Created By COMPL".Select Flag )
    RT Calc is the 2nd calculation:
    CASE WHEN RANK = 1 THEN Resolution_time END
    and Calculation2 is the 3rd calculation:
    AVG(Resolution_time) KEEP(DENSE_RANK FIRST ORDER BY  RANK ) OVER(PARTITION BY "User's Groups COMPL".Group Name,"Tickets Report Assigned To & Created By COMPL".Resource Name )
    As you can see, from the initial dataset, I have duplicated incident id and a simple AVG(Resolution Time) counts also all the duplication.
    I used the rank (based on the field "flag) to take, for each ticket, ONLY a "resolution time" value (in my case I need the resolution time when the rank =1)
    So, with the Calculation2 I calculated for each couple Group Name, Resource Name the right AVG(Resolution time), but how yuo can see....this result is duplicated for each incident_id....
    What I need instead is to see *once* for each couple 'Group Name, Resource Name' the AVG(Resolution time).
    In other words I need to calculate the AVG(Resolution time) considering only the values written inside the RT Calc fields (where they are NOT NULL, and so, the total of the tickets it's not 14, but 9).
    I tried to aggregate again using AVG(Calculation2)...but I had the error "Aggregation of analytic functions not allowed"...
    Do you know a way to fix this problem ?
    Thanks
    Alex

  • As a new Macbook Pro user I was saddened to find that the feature of using keywords in iPhoto '11 does not allow showing same under each photo.  I understand this was available in earlier versions.  Any comments?

    As a new Macbook Pro user I was saddened to find that the feature of using keywords in iPhoto '11 does not allow showing same under each photo.  I understand this was available in earlier versions.  Any comments?

    Against TOU which you "agreed" to in order to post in these user to user forums.  If you want to "suggest" something to Apple, do so in the Product Feedback area.

  • Getting an error - group function not allowed here

    Below is the merge statement...
    getting an error - group function not allowed here
    WHY????
    merge into summary
    using
    (select
    a.user_id,
    min(a.start_time_utc),
    max(a.end_time_utc),
    sum(a.duration_seconds),
    /*total_upload
    total_download
    total_traffic,*/
    max(r.package_id),
    last_usage_charge, -------hard coded
    max(r.peak_rate),
    max(r.bst_plantype),
    max(r.free_value), ---for free value
    a.IsPeak,
    sum(a.TotalDiscount)
    from aaa_sessions a,rate_plan r,subscriber_info si
    where
    si.EXTERNAL_ID=a.USER_ID
    and
    si.PACKAGE_ID=r.PACKAGE_ID
    group by
    user_id,bst_plantype,ispeak)t ------do we need to use alias here
    on
    (summary.user_id=t.user_id
    and
    summary.type_of_summary=t.bst_plantype
    and
    summary.ispeak=t.ispeak)
    When matched then
    update
    set
    start_date =decode((t.start_time_utc-summary.start_date)-abs(t.start_time_utc-summary.start_date),0,summary.start_date,t.start_time_utc),
    end_date=decode((t.end_time_utc-summary.end_date)-abs(t.end_time_utc-summary.end_date),0,t.end_time_utc,s.end_date),
    total_duration=summary.total_duration+sum(duration_seconds),
    total_upload=summary.total_upload+sum(upload_bytes),
    total_download=summary.total_download+sum(download_bytes),
    total_traffic=summary.total_upload+sum(upload_bytes)+summary.total_download+sum(download_bytes)
    When not matched then
    INSERT
    (user_id ,
    start_date,
    end_date,
    total_duration,
    /*total_upload
    total_download
    total_traffic,*/
    rate_plan_id,
    last_usage_charge,
    peak_rate,
    type_of_summary,
    IsPeak,
    TotalDiscount)
    VALUES
    (t.user_id,
    t.start_time_utc,
    t.end_time_utc,
    t.duration_seconds,
    /*t.output_bytes,
    t.input_bytes,
    t.output_bytes+aa.input_bytes,*/
    t.PACKAGE_ID,
    1, ---hard coded the value
    t.PEAK_RATE,
    t.BST_PLANTYPE,
    t.ispeak,
    t.free_value);

    This is the query,...
    Its giving no complilation errors..
    I have not used aggregate functions in the insert/update..
    have used only decode...
    and nowhere i found that aggegate functions not allowed in the insert/update stmts of merge..
    Can u please post a link where it is mentioned...
    MERGE INTO summary
    USING (SELECT a.user_id, MIN (a.start_time_utc) stc,
    MAX (a.end_time_utc) etc, SUM (a.duration_seconds) ds,
    SUM (a.download_bytes) download,
    SUM (a.upload_bytes) upload, MAX (r.package_id) pkg_id,
    MAX (r.peak_rate) p_rate, MAX (r.offpeak_rate)
    ofp_rate,
    MAX (r.bst_plantype) plan_type,
    SUM (r.free_value) free_val, a.ispeak,
    MAX (r.peak_pulse) p_pulse,
    MAX (r.offpeak_pulse) ofp_pulse
    FROM aaa_sessions a, rate_plan r, subscriber_info si
    WHERE si.external_id = a.user_id
    AND si.package_id = r.package_id
    GROUP BY user_id, bst_plantype, ispeak) t
    ON ( summary.user_id = t.user_id
    AND summary.type_of_summary = t.plan_type
    AND summary.rate_plan_id = t.pkg_id
    AND summary.ispeak = t.ispeak)
    WHEN MATCHED THEN
    UPDATE
    SET start_date =
    DECODE ( (t.stc - summary.start_date)
    - ABS (t.stc - summary.start_date),
    0, summary.start_date,
    t.stc
    end_date =
    DECODE ( (t.etc - summary.end_date)
    - ABS (t.etc - summary.end_date),
    0, t.etc,
    summary.end_date
    total_duration = summary.total_duration + t.ds,
    total_download = summary.total_download + t.download,
    total_upload = summary.total_upload + t.upload,
    total_traffic =
    summary.total_upload
    + t.upload
    + summary.total_download
    + t.download,
    last_usage_charge =
    DECODE (t.plan_type,
    0, (t.ds - t.free_val)
    / DECODE (t.ispeak, 0, t.ofp_pulse, p_pulse)
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate),
    ((t.download + t.upload) - t.free_val
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate)
    WHEN NOT MATCHED THEN
    INSERT (user_id, start_date, end_date, total_duration,
    total_download, total_upload, total_traffic, rate_plan_id,
    last_usage_charge, peak_rate, type_of_summary, ispeak,
    totaldiscount)
    VALUES (t.user_id, t.stc, t.etc, t.ds, t.download, t.upload,
    t.download + t.upload, t.pkg_id,
    DECODE (t.plan_type,
    0, (t.ds - t.free_val)
    / DECODE (t.ispeak, 0, t.ofp_pulse, p_pulse)
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate),
    ((t.download + t.upload) - t.free_val
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate)
    t.p_rate, t.plan_type, t.ispeak, t.free_val);
    COMMIT;

  • Iphoto not recognizing my internet connection, maps and share functions not available??

    All of a sudden my iphoto is not allowing me to share or locate photos on the map...says no connection?  but I am connected.
    Can anyone help?

    What versio of iPhoto? Of the OS?
    LN

  • Share function not working

    My Share function is not working.  The last change I've made was to change my AOL password, however don't think that was the cause. 
    Any suggestions?
    Thank you
    Ivy

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Iphoto 6 will not allow me to make a picture on the desktop

    The desktop button is greyed out in the lower menu bar (and upper menu bar too).I looked at the system pref - security that was suggested in the post for another person but I do not have that issue. Nothing is checked. I did not have this problem in iphoto 5. Could you please help me?
    thanks

    This might solve your problem: Open IPhoto and click on Share, select Desktop. Then go to System preferences, select the Desktop and Screensaver, then select Choose Folder, then select IPhoto, and a new folder called IPhoto should appear along with the other background folders (e.g. Plants, Pictures Folder). Click the new IPhoto and select the photo you want. In my case, I like to select the feature that allows random changes every 15 minutes. Hope this works.

  • IPhoto 11: Will not allow me to select photos for upload

    Hello my knowledgeable compadres. I have installed iLife 11 and am running Snow Leopard 10.6.6 on a MacBookPro. I have had no problems with iPhoto 09 but since I've upgraded to the latest version, I am unable to select photos to upload to email, facebook, web pages or anywhere else. Interesting variation is that some photos are selectable; others are not. They are all jpg format so I am at a loss. I can't select photos from within iPhoto to edit; I can't click and select photos from the photos icon in the finder; I can't select any photos from the dialogue between Facebook & iPhoto and it's driving me crazy. I've had my Mac since 2008.Does anyone have any ideas? Thanks! Bernardine

    when I attempt to select the photo from the preview pane in iphoto, it either is inert or, allows me to select it but the photo goes to black with a grey alert symbol on it and disappears in either a close up view or edit window.
    The exclamation point - ! - turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents. Your problem isn't selecting files, its that iPhoto can't find the file you've selected.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • Updated to yosemite and can no longer access iPhoto.  Will not allow me to see my pictures stored on computer???

    My children updated system to yosemite, but i am now locked out of iPhoto and unable to access my pictures.  Tells me i need to install and app, and when i go to store, it tells me this app is not available.  How do I regain control of my photo library....

    iPhoto did not come up in Spotlight and it was not in the applications folder and I did not delete it.  I also did not remove it from the dock, but it was gone. Thus, it is my assumption that the 10.10.3 update removed it.  If not, then it disappeared and Apple should allow you to get your old iPhoto back, but that also is now not available and I certainly did not remove iPhoto from the app store.
    I usually perform updates, especially point updates to incorporate security fixes. I have used Apple products for many years and this is the worst mess I have ever seen.  The new Photos application crashes instantly and iPhoto is gone. They could have at least left iPhoto alone for a few months, instead of removing it from my system and from the store.

  • IPHOTO 11 does not allow me to move photos from one event to another.

    I recently upgraded to IPHOTO 11 and now I cannot Cut/Paste photos from one EVENT to another, I cannot flag a photo and  move the photo to another EVENT.  It will only allow me to create a new Event from the the flagged photo's.  IS there a bug in IPHOTO11 and can I back out if this problem is not resolved?

    Make a temporary, duplicate copy of the library and try the three fixes below in order as needed:
    Fix #1
    delete  the iPhoto preference file, com.apple.iPhoto.plist, that resides in your Home/Library/Preferences folder. 
    delete iPhoto's cache files that are located in your Home/Library/Caches/com.apple.iPhoto folder.
    reboot, launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding the the Option key.  You'll also have to reset the iPhoto's various preferences.
    Fix #2
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library.
    Select options #1, #2 and #6. 
    Fix #3
    Rebuild the library using iPhoto Library Manager as follows:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.

  • IPhoto share extension not available

    I’ve been accustomed in iPhoto to sending photos through Outlook (Outlook for Mac) Mail. However, in the new Photos Share ‘Apple and third party extension’ selection box, the options to use the extensions ‘Messages’, ‘Outlook Mail’ and ‘AirDrop’ are greyed out, and I cannot find any way to enable them. Since I downloaded Photos, this option is also greyed out in the iPhoto app.
    Furthermore, and, for me, more importantly, since installing Photos (and OS X 10.10.3), I’m unable, using the Outlook attachment button, to attach photo images to emails (from Outlook) from the Photos folder, because this folder (which to date has been the source of the images I attach to Outlook emails) now contains only a small crop of Photo Booth images.
    At the moment I seem to be deprived of both options to attach photos to Outlook emails, both of which were available before Photos installed. Can anyone help?
    Thanks,
    Michael Dalton

    Okay, I just figured this out but it leaves me with another question. Once I switched to wifi, they options showed up. Bizarre. Why won't this work on a wired Internet connection?

  • IPhoto Editing- Will not allow images to use 'effects' or 'adjust'

    My Mac is brand new and I cannot edit images with effects or adjust, when i click on the icons nothig happens. However I can use red eye, rotate etc.
    Thanks, Roli

    Roli
    Well trashing the plist does exactly that - return things to default.
    Try the troubleshooting basics:
    1. Repair Permissions using Disk Utility
    2. Create a new account (systempreferences -> accounts) and create a new library there. Import a couple of pics and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.
    Regards
    TD

  • Voiceover/Share Functions Not Working (iMovie 10.0.6)

    System Details:
    OSX Yosemite 10.10.2
    iMovie 10.0.6
    MacBook Pro Retina
    iMovie has worked fine for months. Recently, though, it stopped letting me add a voiceover in addition to share a video. When I click the mic button to start the voiceover, I get an error noise. While opening the share menu does display the icon list, clicking on any of them does nothing.
    What is the easiest way to fix this/are there any temporary workarounds until I can find a stable solution? Thanks.

    Anyone figure this out?

  • Family share will not allow to accept the invitation

    how to get this to work

    Oops! It seems that your question posting duplicated. Please continue here: https://support.mozilla.org/questions/1033592

  • Set The Secured Files, Not allow printing and saving to another location

    Dear Sir / Madam,
    Please help...
    Possible to set the security permission for share files, not allow end users to printing and saving a PDF to another location.
    Thanks,
    Alex Tai

    Hi Alex,
    Possible to set the security permission for share files, not allow end users to printing and saving a PDF to another location.
    Based on my tests, users can save the document with only Read permission, which is by design. If you don’t want users to print files, please do not give the print permissions on printers.
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for