Passsword Manager not storing websites

I have Password Manager enabled in the Client Security Solution.  Fingerprint login is working fine for Windows login, but it does not ask me to store password when I go to any websites.  How can I fix this?
Thanks!

Where did you made the change? Did you changed it locally or in the Settings Manager.
Make sure you have Set it to Always allow.
It would be great if you can post a screenshot.
Thanks
Bhawna

Similar Messages

  • Collections Management - Notes Stored at Document Level

    Hello everyone,
    I am working Collections Management in SAP ECC 6.0, EHP1.  I am wondering if it is possible to add notes to specific documents while in the Process Receivables screen.  I know that Dispute Cases or Promises to Pay allow this functionality, but I am wondering if it is possible without creating one of those case types. 
    If this isn't possible, are there any user exits that will allow it?
    Thanks,
    Jason

    Jason,
    In short the answer is no.
    What sort of notes are you looking to hold?
    You are right you could create a P2P or a Dispute to add notes.
    Against the a/c document, you could look to add some notes in the "service for object" part of the document.
    Then when you drill into the document, you will be able to see the notes.

  • Password Manager not giving websites access

    My usernames and passwords are in my password manager, but whenever I log on, I have to type them in. This is for hotmail.com, yahoo.com and google.com. When I check my password manager, all my usernames and passwords are there. Sometimes when I log back on, all the settings are there, but if I stay off for over an hour or so, I have to re enter them.

    Two possible scenarios.
    1. Your apple id and icloud account are different.
    2. You are doing something wrong (none of us would know what, since we do not see your computer screen)

  • Ical not storing all data & cant initialize lists

    okay so im trying to store all ical data in seperate lists for hours months years and the actual event ect....it worked fine for a while but now its not storing all the events....and then when it did it would carry over from one run to another. I figured out that was probably because they were properties but when i make the lists global i get a "this variable is not initialized" problem. and even if i somehow managed to fix that its still not reading in all the data. ive been at this for 2 hours and cant see the problem. please help:
    variable defs:
    (*System Variables*)
    global running_processes
    global _weekday
    global _date
    global _month
    global _year
    global _hours
    global _minutes
    global _seconds
    global time_ofday
    (*iCal Variables*)
    global iCal_Open
    global iCal_Run
    global iCal_Calendars
    global iCal_Events
    global icaleventsstore
    global icaleventslast
    global iCalEvents_StartMonth
    global iCalEvents_StartDate
    global iCalEvents_Startyear
    global iCalEvents_Starthours
    global iCalEvents_StartMinutes
    global iCalEvents_EndMonth
    global iCalEvents_EndDate
    global iCalEvents_Endyear
    global iCalEvents_Endhours
    global iCalEvents_EndMinutes
    global iCalEventsStart
    global iCalEventsEnd
    code to split up dates and date:
    on Ref_Events()
    proc()
    if running_processes contains "iCal" then
    (*if iCal is open do the code as normal*)
    set iCal_Run to 1
    set iCal_Open to 1
    tell application "iCal"
    set iCalEventsStart to the start date of every event in every calendar
    set iCalEventsEnd to the end date of every event in every calendar
    set iCal_Events to the summary of every event in every calendar
    set x to 1 --holds calendar to be used
    set y to 1 --holds event to be used
    repeat while x is less than or equal to the number of items in iCal_Events
    repeat while y is less than or equal to the number of items in item x of iCal_Events
    get item y in item x in iCalEventsStart as string
    set temp_date to the result
    --start dates
    set iCalEvents_StartMonth to iCalEvents_StartMonth & the second word of temp_date
    set iCalEvents_StartDate to iCalEvents_StartDate & the third word of temp_date
    set iCalEvents_Startyear to iCalEvents_Startyear & the fourth word of temp_date
    set iCalEvents_Starthours to iCalEvents_Starthours & the fifth word of temp_date
    set iCalEvents_StartMinutes to iCalEvents_StartMinutes & the sixth word of temp_date
    --end dates
    get item y in item x in iCalEventsEnd as string
    set temp_date to the result
    set iCalEvents_EndMonth to iCalEvents_EndMonth & the second word of temp_date
    set iCalEvents_EndDate to iCalEvents_EndDate & the third word of temp_date
    set iCalEvents_Endyear to iCalEvents_Endyear & the fourth word of temp_date
    set iCalEvents_Endhours to iCalEvents_Endhours & the fifth word of temp_date
    set iCalEvents_EndMinutes to iCalEvents_EndMinutes & the sixth word of temp_date
    --event description
    get item y in item x in iCal_Events as string
    set temp_event to the result as string
    set icaleventsstore to icaleventsstore & temp_event
    set y to y + 1
    end repeat
    set x to x + 1
    end repeat
    end tell
    else
    (*if iCal is not open do the code then close it*)
    if iCal_Run is 0 then
    set iCal_Run to 1
    tell application "iCal"
    set iCalEventsStart to the start date of every event in every calendar
    set iCalEventsEnd to the end date of every event in every calendar
    set x to 1 --holds calendar to be used
    set y to 1 --holds event to be used
    repeat while x is less than or equal to the number of items in iCalEventsStart
    repeat while y is less than or equal to the number of items in item x of iCalEventsStart
    get item y in item x in iCalEventsStart as string
    set temp_date to the result
    --start dates
    set iCalEvents_StartMonth to iCalEvents_StartMonth & the second word of temp_date
    set iCalEvents_StartDate to iCalEvents_StartDate & the third word of temp_date
    set iCalEvents_Startyear to iCalEvents_Startyear & the fourth word of temp_date
    set iCalEvents_Starthours to iCalEvents_Starthours & the fifth word of temp_date
    set iCalEvents_StartMinutes to iCalEvents_StartMinutes & the sixth word of temp_date
    --end dates
    get item y in item x in iCalEventsEnd as string
    set temp_date to the result
    set iCalEvents_EndMonth to iCalEvents_EndMonth & the second word of temp_date
    set iCalEvents_EndDate to iCalEvents_EndDate & the third word of temp_date
    set iCalEvents_Endyear to iCalEvents_Endyear & the fourth word of temp_date
    set iCalEvents_Endhours to iCalEvents_Endhours & the fifth word of temp_date
    set iCalEvents_EndMinutes to iCalEvents_EndMinutes & the sixth word of temp_date
    --event description
    get item y in item x in iCal_Events as string
    set temp_event to the result as string
    set icaleventsstore to icaleventsstore & temp_event
    set y to y + 1
    end repeat
    set x to x + 1
    end repeat
    end tell
    quit application "iCal"
    end if
    end if
    if icaleventsstore is not icaleventslast then
    say "new events stored in I Cal. Would you Like to View a List of all events?"
    display dialog "View List of Events?" buttons {"Yes", "No"} default button 2
    if the button returned of the result is "Yes" then
    choose from list icaleventsstore with prompt "All the Current Events"
    else
    -- action for 2nd button goes here
    end if
    set icaleventslast to icaleventsstore
    end if
    end Ref_Events

    You need to be careful when using conditional statements to set global variables (the global declaration does not set any values). I can't tell from the just the one handler you posted, but an example would be the iCal_Run variable - unless it is declared somewhere else, it won't have a value if there isn't an iCal process.

  • Credit Card Processing in SAP-CC# not stored in Sales Order or Cust Master

    Scenario
    1. Customer creates internet order, enters CC # which is authorized by CC processor via interface.
    2. If successful, order passed on to SAP, delivery is made, Invoice is created.
    3. No credit card number is stored on Order or Customer Master. The authorisation details are stored on Internet Order etc.
    4. Invoice created is an open item in customer account (ONE TIME Customer Account) referencing Web Order Number.
    5. NO FCC1 is possible since no CC# stored.
    6. User logs on to Credit Card companies website and downloads credit card funding information.
    7. Creates a journal entry in system to credit one time customer account with Lumpsum amounts and debits CC Clearing Account.
    8. Clears Customer Invoices in One time Customer account against the Lumpsum amount posted above.
    7. Uploads EBS  and clears the debit in CC Clearing Account by crediting the same account and debiting bank account.
    Q1. Is there a way we can upload the transaction level details which the CC processing company can provide to clear the invoices and debit the CC Clearing Account? (Automate Step 7 and 8)
    Q2 We are exploring options to convert data into EDI820 or format the data in Lockbox BAI2 and clear invoices etc
    Has anyone implemented the scenario above wherein the Credit Card numbers are not stored in SAP?
    Any help is appreciated.

    Hi All,
    Additional information, i do not see the following in Shop Admin under Transaction tab
    1) Payments -Check Box
        By Invoice possible
        By Cash on Delivery possible
        By Credit Card possible
    2)Preassignment: Payment  - Radio Button.
       By Invoice *
       By Cash On Delivery *
       By Credit Card *
    Please also let me know whether CRM_ISA_BASKET_PAYMT needs be called
    Thanks
    Krishna

  • Password Manager not working with any internet browsers

    I have Thinkvantage password manager installed (v. 3.20.0311.00) on my Thinkpad X201. I am running Windows 7 professional, 64 bit. Password Manager works for all programs except IE8 or Mozilla Firefox (eg. works for Outlook, works for iTunes, etc.). When browsing, the program simply never pops up. It worked previously, and I still have many saved website login details, but it never logs in for me any more and new sites do not activate the program.
    I have made sure that the add-on is enabled and I have checked the box next to "enable 3rd party browser extensions" in the advanced tab of internet options. I have also tried resetting internet explorer settings. As mentioned above, this in not only a problem with IE8; it also occurs with Firefox.
    Any help would be very much appreciated.
    Dr_Rap

    Same problem here. I just recieved mine (Win 7 pro 64 bit, X201 Multitouch) last week and password manager not working at all in ANY web browser. It recorded my .net password just fine, but i can't get it to work in IE8. Who pays this kind of money for something that doesnt work?
    Fix this Lenovo!

  • Dynamic parameter selection from infoview not storing the sql password

    We are having the problem of dynamic parameter selection from infoview not storing the sql password as it does for the actual report. We are using Crystal Reports XI Release 2 version 11.5.3.438 (Not sure of SP level, asked in separate thread).
    To be more specific.
    We have created a report that dynamically populates the parameters of the report by pulling the records from the Informix sql database and allowing selection from there.
    In the Central Management Console for the report object we have set as follows:
    Process - Database:
    Use original database logon information from the report - the sql username and pw etc
    Use same database logon as when report is run
    Process - Parameters
    In selecting a default selection there is the option to put in the sql password, however, this does not stick and clears after update.
    As such the end result is that every time this report is run from infoview and a user chooses a parameter (there are 5), crystal goes through some timeout for about a minute or so and then requests the sql password, if a user then selects the next parameter, the same timeout and password dialog appears.
    We need the crystal report to handle to the sql password for fetching the parameters as well as for the database section of running the report, however, the parameters insists on the end user always putting the password in.
    This is 100% replicatable on our system.
    Any way that we can fix this?
    Will an update fix this issue? If so could you please advise which one?
    Thanks

    Hi,
    I am having the exact same problem. Any help?
    And what does "Use same database logon as when report is run" mean? For me that would be that no prompt is needed for getting values in a dynamic parameter...
    Regards
    Magnus

  • Email addresses popping down that I have not stored in my address book. How do I delete them?

    When I start writing a letter on a new email, a pop down menu with addresses show some "contacts" or email addresses that I have not stored or used.
    How can I get rid of them? This is on the mail app. that comes with the iPad.
    Any input anyone? Thanks.

    Something really strange is going on here.  First, I went to do the same comparison that you did.  In my case, I intended to compare Mail on my original iPad with Mail on my Mac.  I was completely unable to locate the "Previous Recipients" list on the iPad.  Where is it?
    I did attempt to do a lesser comparison by creating a message on the iPad and putting "a" in the "To" field.  Up popped several dozen recipients that begin with the letter "a."  I was unable to match the listing up with the listing in the Mac on a one-for-one basis (because the sorting is different) but I did locate several addresses in the iPad that are unquestionably not in the Mac.  HOWEVER, the real confusing part is that I know for a fact that I have not sent any emails to these individuals for over five years (and, obviously, I could not have used the iPad)!  One is a former manager at a company that I worked for ten years ago.  Another is the contact at the medical insurance company for the same employer.
    The items in the Mac listing were equally weird.  Many, of course, were legit but there were several that I know for a fact that I had absolutely never sent any messages to these recipients.  One that stood out is an address with the name "Bladder Cancer Lawyer" and it was allegedly "last used" several weeks ago.  A message to such an individual is not something that I'm likely to forget (especially rather quickly).
    Right now, I am thoroughly confused.  Just for giggles, I'm going to delete the entire list on the Mac and see what happens.  Actually, I'm going to stall for a while just in case you come up with another thought.

  • Best Practice while configuring Traffic Manager for Azure Website

    Hi Team,
    I want to understand What is the best practice while we configure traffic manager for Azure website.
    To give you the base, Here let me explain my requirement. I have one website which 40% target audiences would be East US, while  40% would be UK and rest 20% would be from Asia-pacific.
    Now, What I want is Failover + Performance based Traffic Manager Configuration.
    My thinking:
    1) we need to create 1 website with 2 instances in each region (east us, east asia, west us for an example). so, total 3 deployment of website. (give region based url for the website)
    2) create traffic manager based on performance and add 3 of those instances. that would become website-tmonperformance
    3) create traffic manager based on failover and add 3 of those instances. that would become website-tmonfailover
    4) create traffic manager and ?? don't know the criteria but add both above traffic manager here and take your final url for end user.
    I am not sure (1) this may be the right approach or not (2) if this is right, in the 4th step which criteria we should select while creating final traffic manager round-robin/ performance/ failover?
    after all these if use try to access site from US.. traffic manager will divert that to US Data-Centre or it will wait for failover and till that it will be served from east-asia if in configuration, east-asia is my 1st instance?
    Regards, Brijesh Shah

    Hi Jonathan,
    Thanks for your quick reply. actually question is bit different. Let me explain you different way.
    I was asking for recommendation from Azure Traffic Manager team. whether my understanding is correct or not.We want Performance with Failover.
    So, One azure website we have: take an example todoapp. I deployed that in 3 different region. now, I want to have performance based routing as well as failover based routing. but obviously I can't give two URL to my end user. so, at the top of that I will
    require one more traffic manager. So,
    step 1: I will create one traffic manager with performance criteria named: TMForPerformance.trafficmanager.com where I will add all those 3 instances (all are from different region so, it want create any issue.)
    step 2: I will create one more traffic manager with failover criteria named: TMForFailover.trafficmanager.com where I will add all those 3 instances (all are from different region so, it want create any issue.)
    step 3: I will create one final traffic manager with performance criteria named: todoapp.trafficmanager.com where I will add these two traffic manager instead of 3 different region's website.
    Question 1) Is it correct structure if we want to achieve Performance with Failover or Is there any better solution?
    Question 2) in step 3, what criteria we should select? performance/ round robin/ failover
    Regards, Brijesh Shah

  • Profile Manager not quite loading...

    Hi all,
    I have a question about Profile Manager not loading on a fresh install. I've got this working in the past, but don't ask me how as I don't know anymore, plus the conditions were different.
    Now when I go to https://server.example.com/profilemanager or /mydevices I can't even log in and it doesn't show anything. The status bar in Safari shows that 5 out of 7 items have been loaded and when I view the source, it shows:
    <!DOCTYPE html><html>  <head>    <script>    var _SC_performanceEvents = { headStart: new Date().getTime() };    </script>        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />    <meta http-equiv="X-UA-Compatible" content="IE=8" />    <meta http-equiv="Content-Script-Type" content="text/javascript" />    <meta name="apple-mobile-web-app-capable" content="yes" />    <meta name="apple-mobile-web-app-status-bar-style" content="default" />    <meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />    <link rel="apple-touch-icon" href="/devicemanagement/console/sproutcore/foundation/en/b74a542f762e55107620d6f19465a 4ec3258c4df/images/sproutcore-logo.png" />  <link rel="apple-touch-startup-image" media="screen and (orientation:portrait)" href="/devicemanagement/console/sproutcore/foundation/en/b74a542f762e55107620d6f19465a 4ec3258c4df/images/sproutcore-startup-portrait.png" />        <link rel="apple-touch-startup-image" media="screen and (orientation:landscape)" href="/devicemanagement/console/sproutcore/foundation/en/b74a542f762e55107620d6f19465a 4ec3258c4df/images/sproutcore-startup-landscape.png" />  <link rel="shortcut icon" href="" type="image/x-icon" />        <title>Admin</title>  <script type="text/javascript">/* >>>>>>>>>> BEGIN source/core.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    /* >>>>>>>>>> BEGIN source/system/browser.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    var SC = SC || { BUNDLE_INFO: {}, LAZY_INSTANTIATION: {} };
    SC.browser = (function() {  var userAgent = navigator.userAgent.toLowerCase(),      version = (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [])[1] ;
      var browser = {    version: version,    safari: (/webkit/).test( userAgent ) ? version : 0,    opera: (/opera/).test( userAgent ) ? version : 0,    msie: (/msie/).test( userAgent ) && !(/opera/).test( userAgent ) ? version : 0,    mozilla: (/mozilla/).test( userAgent ) && !(/(compatible|webkit)/).test( userAgent ) ? version : 0,    mobileSafari: (/apple.*mobile.*safari/).test(userAgent) ? version : 0,    chrome: (/chrome/).test( userAgent ) ? version : 0,    windows: !!(/(windows)/).test(userAgent),    mac: !!((/(macintosh)/).test(userAgent) || (/(mac os x)/).test(userAgent)),    language: (navigator.language || navigator.browserLanguage).split('-', 1)[0]  };      browser.current = browser.msie ? 'msie' : browser.mozilla ? 'mozilla' : browser.safari ? 'safari' : browser.opera ? 'opera' : 'unknown' ;  return browser ;})();
    /* >>>>>>>>>> BEGIN source/system/bench.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2010 Sprout Systems, Inc. and contributors.//            Portions ©2008-2010 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    // sc_require("system/browser")if (typeof _SC_performanceEvents !== "undefined") {  SC._performanceEvents = _SC_performanceEvents;  _SC_performanceEvents = undefined;} else {  SC._performanceEvents = { headStart: new Date().getTime() };}/* >>>>>>>>>> BEGIN source/system/loader.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    // sc_require("system/browser");
    SC.bundleDidLoad = function(bundle) {  var info = this.BUNDLE_INFO[bundle] ;  if (!info) info = this.BUNDLE_INFO[bundle] = {} ;  info.loaded = true ;};
    SC.bundleIsLoaded = function(bundle) {  var info = this.BUNDLE_INFO[bundle] ;  return info ? !!info.loaded : false ;};
    SC.loadBundle = function() { throw "SC.loadBundle(): SproutCore is not loaded."; };
    SC.setupBodyClassNames = function() {  var el = document.body ;  if (!el) return ;  var browser, platform, shadows, borderRad, classNames, style;  browser = SC.browser.current ;  platform = SC.browser.windows ? 'windows' : SC.browser.mac ? 'mac' : 'other-platform' ;  style = document.documentElement.style;  shadows = (style.MozBoxShadow !== undefined) ||                 (style.webkitBoxShadow !== undefined) ||                (style.oBoxShadow !== undefined) ||                (style.boxShadow !== undefined);    borderRad = (style.MozBorderRadius !== undefined) ||               (style.webkitBorderRadius !== undefined) ||              (style.oBorderRadius !== undefined) ||              (style.borderRadius !== undefined);    classNames = el.className ? el.className.split(' ') : [] ;  if(shadows) classNames.push('box-shadow');  if(borderRad) classNames.push('border-rad');  classNames.push(browser) ;  classNames.push(platform) ;  if (parseInt(SC.browser.msie,0)==7) classNames.push('ie7') ;  if (SC.browser.mobileSafari) classNames.push('mobile-safari') ;  if ('createTouch' in document) classNames.push('touch');  el.className = classNames.join(' ') ;} ;
    /* >>>>>>>>>> BEGIN bundle_loaded.js */; if ((typeof SC !== 'undefined') && SC && SC.bundleDidLoad) SC.bundleDidLoad('sproutcore/bootstrap');
    </script>
         <link href="/devicemanagement/console/sproutcore/en/a8b61437c15a278078f3fffb972489104026f783 /stylesheet-packed.css" rel="stylesheet" type="text/css" />  <link href="/devicemanagement/console/apple_theme_v2/en/63cd5f0fb706373f354a879d93bb4f0dc898 b2b2/stylesheet.css" rel="stylesheet" type="text/css" />  <link href="/devicemanagement/console/admin/en/0803f0af1163f6efa8d9d71f0cc7179d84da0f27/styl esheet.css" rel="stylesheet" type="text/css" />       <script>    SC._performanceEvents['headEnd'] = new Date().getTime();    </script>  </head>      <body class="apple-theme-v2 focus">      <script>    SC._performanceEvents['bodyStart'] = new Date().getTime();    </script><script type="text/javascript">/* >>>>>>>>>> BEGIN source/setup_body_class_names.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    // sc_resource('setup_body_class_names'); // publish into inline format
    if (SC.setupBodyClassNames) SC.setupBodyClassNames() ;
    </script>
      <script type="text/javascript" src="/devicemanagement/console/sproutcore/en/a8b61437c15a278078f3fffb972489104026f783 /javascript-packed.js"></script>  <script type="text/javascript" src="/devicemanagement/console/apple_theme_v2/en/63cd5f0fb706373f354a879d93bb4f0dc898 b2b2/javascript.js"></script>  <script type="text/javascript" src="/devicemanagement/console/admin/en/0803f0af1163f6efa8d9d71f0cc7179d84da0f27/java script.js"></script><script type="text/javascript">String.preferredLanguage = "en";</script>
      <script>  SC._performanceEvents['bodyEnd'] = new Date().getTime();  </script> </body></html>
    ...which looks fine to me. My question is: why doesn't the page show up at all (ultimately it fails)?
    I have included a screen print of my server's server.app below:
    Thanks in advance.

    I had multiple IP's set on my server, which randomly seemed to switch. It seems like there is an incompatibility still between Server Admin and server.app. Since Apple is pressing developers to test server admin and server.app I am confident those problems will resolve eventually, but for now I have deleted all-but-1 IPv4 and 1 IPv6 address (same interface), the networking interface overview for my server within Server Admin was updated and it looks like it works solid now, this was not by design I presume, so this must be another bug plaguing Lion...
    After upgrading Postgres to 9.1.3 and upgrading webmail (upgrade: usr/share/webmail) from www.roundcube.net, making a new site webmail.example.com with the files stored in /Library/Server/Web/Data/Sites/CustomSitesDefault/webmail/ I made a symbolic link from that 'directory' to the actual built in webmail facility found in /usr/share/webmail by entering the following in terminal.
    ln -s -i /usr/share/webmail/ /Library/Server/Web/Data/Sites/CustomSitesDefault/webmail/
    By doing this it will ask to remove a directory, if you didn't put any important files in there, which I presume you didn't, confirm with the letter y and press enter.
    Webmail now works every time the way I want it The same goes for Profile Manager, at least for now...

  • File opened in external editor not stored with referenced files

    If I open a referenced raw file in an external editor (CS2) and work on the image adding layers etc., the image is not stored where I have all the other referenced files. It gets stored in the Aperture Library. Is there a way around this. I want to keep all my files together. This can be done in Lightroom, but I am trying to make Aperture work for my workflow.
    Thanks,
    gary
    mac book, G5   Mac OS X (10.4.7)  

    Well, here's the feedback I submitted to Apple:
    With the introduction of Aperture 1.5, you offered users the ability to manage their own libraries, and for Aperture to work with 'referenced' images. In fact, because of this very reason, many of us consumers decided to buy Aperture 1.5.
    Most of us photographers also use Adobe Photoshop routinely.
    But there is a huge problem/bug for us users who manage our own library (force Aperture to work with 'referenced' images) AND use Photoshop (or any external editor for that matter). When we open a file in an external editor via Aperture, Aperture creates a new 'master' for editing -- but does so in its own 'managed' library! When we save from Photoshop, the image remains in the 'managed' library! So now we have one 'master' in our own directory, and the externally-edited 'master' in Aperture's 'managed' library! This is very CONFUSING and renders external editing via Aperture USELESS... no one in their right mind would want one version of their image in an organized directory, and an edited version in Aperture's managed library (where it is difficult to find manually)! No, it makes much more sense to create the edited 'master' in the same location as the original 'master'!
    PLEASE fix this bug ASAP! Aperture already has a good method for automatically renaming files by adding (1) or (2) or (3) or so forth when it is relocating files and finds a file with the same file-name. The same logic can be applied when creating a new 'master' for external-editing: that is, it should just create another .tiff (or .psd, or what have you) file with the same name but with a (1) or (2) tagged on. For example, if my master image is \Pictures\Seattle\SpaceNeedle.tiff, then when I open this image in an external editor, Aperture should automatically make the file: \Pictures\Seattle\SpaceNeedle (1).tiff, and open that file in the external editor... rather than create SpaceNeedle.tiff in its own managed library where I can't even find it using Finder or Windows Explorer, etc.
    Many of us have this complaint (just search Apple discussions)... PLEASE rectify this problem ASAP as it is completely messing up our workflows by requiring us to manually save through the external editor and then having to manually remove every 'managed' file that Aperture makes. This is really a pain and seriously makes me want to switch to a different image management program... though I love Aperture thus far and would love to stick to it as I believe it is visionary and shaping the future of how photographers will manage their digital workflows!
    Many thanks in advance for your time!
    Best,
    Rishi

  • How to synchronize tracks not stored in the cloud?

    Hey,
    is there any way to synchronize tracks, which not stored in the cloud (e.g. movies), between different macs?
    Thanks in advance,
    Chris

    not really a good way.  You could probably do this with a third party cloud application at this point, but will require you to manually manage it.  Check out sugarsync (something I use for general computer to computer to cloud sync stuff).  you would be able to sync the movies folder between the two macs, yet when it comes to updating the itunes library for each, you would have to manually add a movie you downloaded to one computer to another (although the file will automatically download to the proper location)

  • Not displaying website fonts properly

    I asked about this on Reddit: http://www.reddit.com/r/firefox/comments/1o26ar/let_sites_use_their_own_fonts_but_make_exceptions/
    Here's a summary: I used custom fonts instead of letting each website display their own. This led to sites like Github not displaying some icons. I enabled the option to let sites use their own fonts, and the icons in Github are fixed, but I have another problem:
    http://i.imgur.com/1q1WiEh.png
    That is most certainly NOT the website's custom font. It's HelveticaNeue-LightExt for some reason.Reddit suggested I use a script with Greasemonkey, but I like to keep my addons at the necessary minimum, and I know there's something weird going on here. If I use another profile, such as with Tor, the sites display just fine. In fact the first time I tested it with Tor, I restarted my regular Aurora session and the websites displayed proper fonts. A few minutes later, and for no apparent reason, they were back to HelveticaNeue.
    Basically, I want to let sites display their custom fonts properly, without the need of an add on, and without losing my current profile.

    Troubleshooting
    How to disable extensions and themes
    Disabling an extension or theme will turn it off without removing it:
    At the top of the Firefox window, click on the Firefox button, and then click Add-ons. The Add-ons Manager tab will open.
    In the Add-ons Manager tab, select the Extensions or Appearance panel.
    Select the add-on you wish to disable.
    Click its Disable button.
    Click Restart now if it pops up. Your tabs will be saved and restored after the restart.
    To re-enable the add-on, find it in the list of Add-ons and click Enable, then restart Firefox if required.
    How to disable plugins
    Disabling a plugin will turn it off without removing it:
    At the top of the Firefox window, click on the Firefox button, and then click Add-ons. The Add-ons Manager tab will open.
    In the Add-ons Manager tab, select the Plugins panel.
    Select the plugin you wish to disable.
    Select Never Activate in its drop-down menu.
    To re-enable the plugin, find it in the list of Plugins and select Always Activate in its drop-down menu.
    How to remove extensions and themes
    At the top of the Firefox window, click on the Firefox button, and then click Add-ons. The Add-ons Manager tab will open.
    In the Add-ons Manager tab, select the Extensions or Appearance panel.
    Select the add-on you wish to remove.
    Click the Remove button.
    Click Restart now if it pops up. Your tabs will be saved and restored after the restart.
    How to uninstall plugins
    Most plugins come with their own uninstallation utilities. For help uninstalling a certain plugin, go to the list of plugins articles and select the article for the plugin you want to uninstall.

  • Account type M and G/L account with open item management not permitted

    Hi,
    I am getting the following error while applying VL02N (PGI) is "Account type M and G/L account with open item management not permitted".  Before I got an error like posting period and I have closed those posting periods 2008/08 and 2008/07.   Now I am getting this error. 
    Please provide the solutions to overcome this and I want to execute the full transaction.
    Thanks in ADVANCE.
    Kishore

    Hi Kishore,
    Please check these threads
    Account type M and G/L account with open item management not permitted
    Re: Account type M& GL with open item managment not permitted error
    Posting to G/L accounts with open item management are not permitted
    Hope this would help you.
    Good luck
    Narin

  • Gr/ir slip field value is not stored in table mkpf..!!

    dear sap gurus,
        i have a typical problem.. i am doing Transfer posting from one storage location to another. using MB1B with 311 mov type.. and mentioning some values in the gr/ir slip field.. but system is not storing the value in table..
    Can any one say how to solve this.. if i use MIGO_TR then its storinghte value i mentioned in MKPF table..
    Regard,
    Manu

    Hi Manu,
    This GR/GI slip number has only been designed for use in those countries (for example, Italy) whose legislation requires specification of this number for goods that leave the plant and are transported on public roads. In other countries, the material document number printed on the GR/GI slip (in the standard system) is usually sufficient. To enter external  documents, you can use the field Material slip or Delivery note.                                                                               
    If still wants to use this field you are required make relevent settings in config.                                            
    Please go to transaction OMC1.       
    There you will find 4 push buttons.                                        
       1. Activation of GR/IR slip for plant.                                     
       2. Number range grouping code.                                             
       3. Intervals for number range.                                             
       4. Object(here you are assigning the number range for the plant,  storage location and movement type.          
    This will allow you to store GR/IR slip number in MKPF with trx. MB1B
    Regards
    Mauro

Maybe you are looking for

  • ArrayList problem ....i can remove my object from my arrayList

    hi all, i am going to remove a object from my array by using arrayList.However, it can`t work properly and did nth for me..i don`t know why...could anyone give me some suggestion and show me what i did wrong on my code ....i stated more detail next t

  • Issue with installation of ofm application adapter

    Hi, I'm new to application adapter for SAP in 11g. I was working on an integration scenario between oracle-ebs and sap using ofmw 11g (11.1.1.4). When I'm trying to install ofm_adapters_application_generic_11.1.1.4.0 (downloaded from OTN). When execu

  • How can I get the IP of the server [RMI]?

    Hello! I have to write program in RMI. How can I get into the client app. - the IP of server app. - in a simple way? I want to print this server IP in a client application. Which method should I use? Is there someone who can help me? pitloju

  • Drawing on a BufferedImage

    Here is the situation: I have a 2d array of Tiles, which make up the map for my game. When the game first starts, all of the tiles are "shrouded" because I am implementing Fog Of War as you may have seen in other games like Age of Empires and Civiliz

  • Duplicate a Comp's Timeline in the UI?

    I want to have a second copy of a Comp's timeline open in another panel, so that I can focus on two different parts of it at the same time. Is this possible? How?