Feature Request: Allow Apps to Access Apple ID User Address

This is a feature request for new iOS functionality
If iOS gave permission for apps to access the home or billing address a user has defined when setting up their Apple ID, then I believe the app can use this address to automatically set up the shipping of a purchased item for example. This would enable apps to sell physical goods, paid for by the user's Apple ID and set up for shipping to his Apple ID address, instantly.
I believe couriers already have SDKs that allow apps to programatically register the pickup and shipment of an item.
Users can then be able to manage their addresses in iOS/iCloud.

This will never happen because of the obvious security implications.

Similar Messages

  • Just received a prompt to verify whether to allow apps unlimited access to my HD or be prompted...

    Just received a prompt to verify whether to allow apps unlimited access to my HD or to be prompted...
    I foolishly selected "Prompt me"...
    Apparently this is a very recent update???
    Many of my games will not respond correctly to the prompt "Allow"...
    I cannot seem to alter the settings now...
    I even went to the Adobe website for Flash & tried to manage my Flash Player from there...
    The update must be so new that it's not compatible with lots of apps...
    Some do still work (they seem to ignore the new settings), but many of my favorites do not (the ones that issue the prompt to accept), and I have no idea how to undo what I was encouraged to do...
    Silly me, I should have known to just click "x" and close the silly prompt window...
    Just wanted to let you know...
    Please fix asap???
    Thanks!!!

    To assist us in quickly understanding your problem, please follow these guidelines when posting:
    Specify your operating system (including 32bit or 64bit edition) 
    Specify your web browser and version (including 32bit or 64bit edition) 
    Specify your Flash Player version 
    Give us a brief explanation of the problem, please include any information you feel is important

  • Feature Request: Uninstall App

    I don't see a way to uninstall a recently installed app, does this mean we just drag-n-drop?
    I'm making a feature request for the ability to uninstall, or an explanation of how to uninstall otherwise.
    <Edited by Host>

    f you want to report this issue to Apple's engineering, send a bug report or an enhancement request via its Bug Reporter system. To do this, join the Mac Developer Program—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report or enhancement request. The nice thing with this procedure is that you get a response and a follow-up number; thus, starting a dialog with engineering.

  • Feature Request: In-App Time Keeping with Cloud Accounting Sync

    Has Adobe ever considered adding In-App Time-Tracking to their applications?
    I'm currently in the middle of catching up on my time-tracking. I'm two weeks behind… Don't judge me, you know you ALL do this . Anyway, I'm having a hard time remembering how much time I've accutately spent on certain tasks for certain clients. I usually go back into my emails to see who I was communicating with and what we were talking about, but that can only get me so far.
    Then it occurred to me that there is no reason my Adobe applications couldn't track time for me. It would be a pretty easy thing to do. For example, while the application is open, it could clock both idle and active time and store that into a log. This could all happen in the background with very little CPU draw I suspect.
    Active time could be determined by the app as—time spent in the app while the mouse or keyboard is being activated. If they aren't activated within 2 minutes or when the app is not being used, is in the background (i.e. User's browser, email, or other app is in-use instead), that's logged as idle-time. Idle time obviously wouldn't have to show up in the log. Maybe just as sidebar information.
    At the end of the week, if I could export that log from the CC dialogue in my Finder, I could very quickly determine how much time I spent working on specific files, in specific apps, and on what days. Guess work eliminated!
    Even better, if I could connect this information to my FreshBooks account, I'd save a TON of time doing time entry.
    THAT is a feature I would LOVE to see in the upcoming updates.

    I agree that a desktop app or access to the bookstore via the Web is essential for the iBook store to grow. For example, every Friday, I read the New York Times Book Reviews. To see more reviews, user reactions, and the Kindle price, I check Amazon. Once I'm there, it's a lot easier to buy the Kindle version than to open iBooks and check its availability there. Also, I have 600+ Kindle books. If I inadvertently try to repurchase a book, Amazon warns me that I've already bought it. No such warning (naturally) if I buy a previously purchased Kindle book from the iBook store. But if I could open two browser windows, it would be easy to check for duplicates. I want the iBook store to succeed, but it's time for an upgrade and soon it may be too late.

  • Feature Request | Allow custom metadata per table/column to be stored

    Someone please correct me if there's already a feature that allows this...
    I'd like to see a feature where you can define a set of metadata that can be stored per table / column, and perhaps a trigger that updates that metadata.
    As a use case, it is sometimes necessary to find out how many records exist in a table, and the typical way of doing this is by running a statement like select count(*) from example_table;. With a large table, this statement might take a long time though, and certainly has overhead associated with it. If this is something that's done on a regular basis, like maybe even once every minute, wouldn't it be much better to store this number as metadata for the table that can be updated on inserts and deletes and then can be queried? It might involve extra overhead on an insert or delete statement to add to or subtract from this number, but then for some applications the benefit of getting the count quickly might outweigh the extra overhead.
    Another use case is finding a minimum or maximum out of a table. Say you store a date and you need to find the max value for some feature in your application; with a large table, and especially if its a date with accuracy to the millisecond where an index wouldn't help much because most values are unique, it can take quite a bit of time and overhead to find that max value. If you could define for that column that you'd like to store the max value in metadata, and could query it, it would be very quick to get the info. The added overhead in this scenario would be on insert, update or especially on delete, the value would have to be updated. But in some applications, if you don't expect alot of deletes or updates on this column, it might be worth the added overhead to be able to quickly find the max value for this column.
    I know you could probably make a separate table to store such info, and write triggers to keep it up to date, but why not have a built in feature in Oracle that manages it all for you? When you create a table, you could define with the column definition something like 'METADATA MAX' and it will store the max value of that column in metadata for you, etc.
    I know that the overhead of this feature wouldn't be good for most circumstances, but there certainly are those cases where it would be hugely beneficial and the overhead wouldn't matter so much.
    Any thoughts?
    Can this be submitted as a feature request? Am I asking in the right place?
    (p.s. while you're at it, make a feature to mimic IDENTITY columns from SQL Server!)

    I don't think what you mentioned is exactly what I was talking about. There's no min_value or max_value in the dba_tab_columns table; there's only high_value and low_value, and they are stored in binary. And I believe to be accurate in the use cases that I suggested, you would have to analyze the table after every insert/update/delete. So no, that's not the same feature I've asked for, although I appreciate the feedback.
    Also, the num_rows in dba_tables relies on the table being analyzed too, so for a table that stores temporary date to be processed where you want to know the size of the queue every few seconds, it wouldn't make sense to analyze the whole table every few seconds when all you want is a count of the records, and it's also inefficient to use the COUNT function with every query when it would be much faster to store the count in some metadata form that is updated with every insert or delete (adding to a count and subtracting from a count with each insert/delete is WAY faster than analyzing the table and letting it literally recount the entire table every time).
    So again, while I appreciate the feedback, I don't think what you mentioned addresses either of the use cases I gave. I'm talking about a different kind of user defined metadata that could be stored per table/column with rules to govern how it is updated. Not you standard metadata that requires an analyze and isn't real time. I also only gave a few use cases, but the feature I'm really looking for is the ability for users to define many different types of custom metadata even maybe based on their own logic.
    Again, this feature could be implemented right now by creating a USERMETADATA table for every standard table you have, and then using triggers to populate the info you want at the table level and column level, but why do that when it could be built in?
    Also, I don't really agree that having to create a trigger/sequence for every table instead of setting a column as IDENTITY is better. It's cumbersome. Why not build these commonly used features in? It can create a trigger/sequence behind the scenes for all I care, but why not at least let someone mark a column as IDENTITY (or use whatever other term you want) at the time of table creation and let it do everything for them. But that's off-topic; I meant it for more of a side comment, but should really have a separate post about it.

  • Feature Request: Setting App page title to something other than "Eloqua 10"

    Hello everyone,
    Long-time lurker, first-time poster. As someone who has been using Eloqua for over 3 years, when working in the application, I will usually end up with upwards of half-a-dozen tabs open in Firefox, all of which say "Eloqua 10". Because of this, I'll usually try to strategically organize my tabs, but often times I end up having to click through multiple tabs to find the one I'm looking for, which can sometimes lead to Firefox freezing. I'm sure I'm not alone in this.
    So to alleviate this, I'd like to make the following feature request: Can we have the tabs/windows named by Asset Type & Asset Name? Perhaps in the following Format:
    [Asset Type]: [Asset Name] - Eloqua 10
    Note how I have "Eloqua 10" at the end of the string. An example of a title would be: "Campaigns: Nurture_Campaign_1 - Eloqua 10"
    Could this please be implemented?
    Thank you,
    Sean

    Here is a snippet of code that I wrote and use without any problem:
       public void ppPrint() {
          if (printJob==null) initPrintJob();
          try {
             if (!printJob.printDialog(aset)) return;
          } catch (Throwable e) {
       public void initPrintJob() {
          aset=new HashPrintRequestAttributeSet();
          aset.add(new JobName("AOKabc",null));
          aset.add(new MediaPrintableArea(.75f,.25f,7.5f,10.5f,MediaPrintableArea.INCH));
          printJob=PrinterJob.getPrinterJob();      
    /* locate a print service that can handle the request */
          PrintService[] services=PrinterJob.lookupPrintServices();
          if (services.length==0) System.out.println("Warning: No printer detected!");
          else {
             try {
                printJob.setPrintService(services[0]);
             } catch (Throwable pe) { }
          pageFormat=printJob.defaultPage();
          Paper paper=new Paper();
          paper.setImageableArea(54,18,540,756);
          pageFormat.setPaper(paper);
          printJob.setPrintable(Preview.this);
       };o)
    V.V.

  • Esscmd for retrieve app & db access of particular user

    Hi All,
    Currently, we are using Essbase 6.5.4.
    I want to retrieve app, db access & group related information of one user
    what is the command in Esscmd to accomplish this task.
    Advance thanks for your help.
    KK

    Take a look at the thread
    User access rights list
    It talks about getting security info, in particular Essbase security viewer. I did a search on the web and found this link to download it
    http://maxupload.com/F62683B4
    Note, I have not tried the version in the link, but looked at security viewer in the past and it looked pretty good

  • Feature request: Allow direct connections for contacts only

    Hello, on Windows there is an option "Allow direct connections to contacts only" as described on http://en.kioskea.net/faq/32357-skype-hide-your-ip-from-people-who-are-not-on-your-contact-list. Many people including myself would like to see this feature implemented in the Linux client. There are solutions to protect the IP from resolvers like setting up proxies. However, the performance of free SOCKS-proxies is mostly very bad. VPNs with an appropriate bandwidth also cost an amount of money and additionally, it is difficult to only route Skype traffic through a VPN. Setting up a VM with Windows or WINE just to run Skype is an overkill as well. I consider it inconvenient that this feature is implemented on Windows while - in my opinion - mainly Linux users being aware of security might be in need for this feature. Therefore, I request to implement such a functionality into the Linux client. Kind regards from Germany

    If  you want to enable that feature on a Skype client that does not offer it in the GUI you would have to do it manually.  You can follow the guidance here and the same information applies to the Linux client and any other client you have root or file-level access to. http://community.skype.com/t5/Modern-Windows-from-Windows/Windows-8-IP-Hiding/m-p/2876437/highlight/true#M19476 Linux path:/home/Username/.Skype/YourSkypeName/config.xml

  • How can I allow apps to access my photos/contacts etc?

    My iPhone5s (iOS 8.0.2) said that my storage is full, so I decided to import my photos into my mac and delete them from my iPhone.
    After I did that, I tried using other apps and it said that they don't have access to my photos/contacts etc... I went to the Setting>privacy>photos and it said that "Apps that have requested access to your photos will appear here" THERE WERE NO APPS THERE, and none of the apps requested access to my photos.
    I've also tried to go to Setting>General>Restrictions and I've switched them ALL on. But still, no apps appear on the privacy setting.
    HELP PLEASE? Thank you x 

    ive been trying to fimd this answer and I can find the solution no where because this was happening to me until like 4 mins ago lol I deleted some pictures until i felt like I had enough space , because my storage was full now I have 20.6 MB so I restarted my iPad and now it allows me to go on my all apps and I have access to my camera and pictures  now

  • IPad Feature Request -- Force App Close

    I would like to request a feature for the iPad. I recently updated to OS 4.2.1 and love Multitasking, but sometimes I want to force an application to exit. I know you can switch to a different app from the one you want to close, bring up the multitasking tray, hold your finger on the app you want to close, then tap the read "-" symbol to force the application to close, but this process is cumbersome. You used to be able to hold down the Exit button for 4 seconds to force an application to quit. I would like this feature back! If I press the Exit button quickly, leave the application in the background and show it on the multitasking tray. If I hold the Exit button for 4 seconds, the iPad should force the app to close, return to the home screen, and NOT show it on the multitasking tray (a true force quit). Apple, please consider adding this feature back. It would really help with closing troublesome applications!
    Thanks,
    Francis Smith
    San Jose, CA

    We are just users like you so your post will do nothing.
    You need to tell Apple here http://www.apple.com/feedback/
    You also might want to read up on how the multitasking works as you would realise that your request would not achieve anything useful.

  • Feature Request- Professional app rating

    Hey. App rating is fickle sometimes. What if there was another rating beside the user rating with up to 5 stars as well, rated by BlackBerry or by approved reviewers who analyse apps thoroughly by solid standards? Trusted folks who look at all aspects of an app for design, usefulness, presentation etc. Cars have 2 kinds of reviews so apps could too. It would be especially valuable to a buyer and coveted by a vendor. Thanks guys.

    Myko,
    The ability to only include certain ratings in a Smart Playlist is already there.
    Your other suggestions sound new.  You can submit them to Apple via the Feedback page:
    http://www.apple.com/feedback/itunesapp.html

  • Feature Request - Allow direct editing of hidden OCR text to correct errors

    Examining an OCR-scanned PDF allows the OCR plain-text results to be "previewed," but in a read-only format.  We need to be able to edit this text to correct the inevitible errors.
    I just scanned a document, and the results are mosty OK, but there are two lines that are complete garbage.  I personally have never performed a completely error-free OCR scan in Acrobat or anywhere else.  Editing the image text is no solution, especially if the font is unavailable.
    Other OCR-enabled apps I have worked with expect you edit the results.  Acrobat should too.

    If Adobe won't do it, maybe somebody else will.  Nuance.com specializes in OCR, among other things.  They've also got a PDF converter.  Maybe they'll recognize the value of marrying the two.

  • FEATURE REQUEST: Allow Smart Playlists to sort by Release Date

    I listen to my iPod in my car and have a one of those kits where you can control your iPod through your stock stereo (i.e. select playlists by pressing buttons 1-6, and changing tracks with the next track/ last track buttons). One of my playlists is a smart playlist that looks for all downloaded audio podcasts that have not yet been played. As of right now, I have to go into the playlist after every update and reorder the podcasts manually in order from earliest release to newest release. The only date-sorting column right now is "date added". This doesn't work because if I update and download two or three episodes from one podcast, they all have the same date in that field, even if they were released on different days.
    Please iTunes, allow a column heading that sorts podcasts by Release Date. This would make my life a lot easier and I'm sure I'm not the only one. I know when I'm looking at all my podcasts from the Podcast-Manager portion of iTunes that I can see the Release Date column, however it is not an available column outside of that view.
    Anybody else wanna see this feature?

    I was looking for the exact funtion too. Please don't make our life any harder

  • Time Capsule won't allow me to access Apple's Software Updates

    I have a 1TB Time Capsule which I have connected in "bridge mode" to my Actiontec router from Verizon FiOS. When I try to update any of my Apple products like my OSx systems, my Apple TV or my iOS software I get download errors. When I go straight through my FiOS router I have no problems. Anyone have any suggestions? 

    Any ideas?
    Wireless Interference
    Might be caused by a cordless phone in the vicinity. To give you an example, my neighbor.....across the street...used to be able to literally crash my wireless network if he was in his front yard talking on his cordless phone.
    I discovered this by accident one day after spending weeks trying figure out why my network would crash at random times.
    Other possibilities include a wireless security/camera system near you
    Still other things might be an amateur ham radio operator....which should not interfere....but again from experience, I know that this can occur.
    Yet another possibility is another wireless network near you that is being turned on and off at random times. Some users power up their modem/router only when they want to do so and leave it off otherwise.
    Some general rules to help avoid interference:
    Move any cordless phones that you might have as far away as possible from the Time Capsule and/or your computer(s)
    Avoid placing other electronic devices....computer, television, amplifier, satellite receiver, etc. near the Time Capsule and/or your computer(s)
    Avoid metal surfaces near the Time Capsule and/or your computers
    Elevate the Time Capsule as much as possible. Think of it as a water sprinkler....you want to get the room as wet as possible
    Experiment with different wireless channels on the Time Capsule. To do this:
    Open AirPort Utility
    Click on the Time Capsule
    Click Edit
    Click the Wireless tab
    Click Wireless Options
    Start with Channel 11 on the 2.4 GHz band and work your way down
    It is unlikely that you are picking up interference on the 5 GHz band since there are.....for now at least.....far fewer networks using this frequency.

  • Feature Request: allow Layer sort options + math in layer search fields

    First off, thank you so much for implementing layer sorting! I have one suggestion, and that would be to add a sort option by most recently edited or most recently created.
    That and the ability to do math in fields would be sublime.

    Hello Sly,
    I did exactly thuch beast for freehand some years ago. It's called Layersets. Perhaps we can discuss this off list first.
    My Email is [email protected]
    regards
    Michael

Maybe you are looking for

  • Second Hard Drive Caddy (Mounting Rails) - 3000 K100

    I need to install a second 3.5" hard drive in my 3000 K100 Desktop.  Unfortunately I dragged my feet and called technical support just after my one-year warranty ended.  Is there 1) Any way to mount the hard drive without one of those plastic caddies

  • 8 questions from new owner of Satellite Pro L300

    Hello all forum users! I bought a new Toshiba laptop, the Satellite Pro L300, and have until 14 January to test it - if it looks like it isn't working properly I'll return it to the store where I purchased it. Here's a list of questions I have: 1. Ev

  • (solved) No printer detected under any application except Cups browsin

    Hi everybody, After an update I've lost all the listed printers : when I want to print, whatever the application (evince, libreoffice, epdfviewer, even firefox...) the printer list is empty. I use cups, which is correctly running under systemd. From

  • Basic Questions on UITableView

    Hi, I'm trying to learn the iPhone API by creating a simple table application and I have some basic questions. There are stuff in the example code and the docs that seem to contradict, and I'm hoping some people can clarify. 1) Table View Programming

  • Return material to warehouse - used materials

    Dear All, We have a scenerio that materials are issued by the Warehouse and it will be returned too. But somecases used materials are returned and of lesser value when compared to the new materials. but we need to keep a track of the used materials a