TS4079 Problems with Siri. Large number of contacts with similar names

I work for a retail company and have the locations of the stores listed in my phone as "Store 1, Store 2..." When I ask Siri to call  a specific store, it is not unsderstanding me. I have tried editing the contacts to make it more symplistic but I keep getting weird responses. I do not have this problem when calling individuals. Has anyone else had this type of problem? If so, can it be fixed?

vindictive1 wrote:
I have 3 major software problems (bugs) and i would like to report them in hopes that Apple would release a quick and prompt fix for these problems.
Then report them to Apple here.  This is a user to user support forum.

Similar Messages

  • A simple way in sending message on a large number of contacts?

    Is there a simple way in sending a large number of contacts? I mean, i'll send my message on a group, i.e. "hello" to "classmates" group. I know it is present during ios4 & 5 version? Why now on ios7? How's that? Some of my contacts are changing new numbers so i can't add them to my inbox.

    When a device that is connected to an icloud account has it's contacts deleted, the same contacts at icloud.com are also deleted and then the changes propagate to other computers and devices also connected to the same icloud account.   In other words, the contacts are deleted everywhere.  Also, any iOS backup to icloud does not include contacts or any of the other Apple data, like calendars, reminders, etc.  The only way you can get that data back is if it was on a computer which has been frequently backed up.  You restore the data from the backup.  (This reference to "backup" is a local backup, it has nothing to do with icloud.)

  • TS4009 I deleted a large number of contacts on one iphone when i got a new one. icloud must have automatically synced to the old one, then synced my new one to that, thus deleting many contacts. can i restore them?

    I deleted a large number of contacts on one iphone when i got a new one. icloud must have automatically synced to the old one, then synced my new one to that, thus deleting many contacts. can i restore them? can i retrieve a snapshot of my icloud as it existed yesterday?

    When a device that is connected to an icloud account has it's contacts deleted, the same contacts at icloud.com are also deleted and then the changes propagate to other computers and devices also connected to the same icloud account.   In other words, the contacts are deleted everywhere.  Also, any iOS backup to icloud does not include contacts or any of the other Apple data, like calendars, reminders, etc.  The only way you can get that data back is if it was on a computer which has been frequently backed up.  You restore the data from the backup.  (This reference to "backup" is a local backup, it has nothing to do with icloud.)

  • I have a large number of contacts in my Outlook account.  As long as that account is active on the iPhone (6 ) the contact are available on the phone but disappear when that account is removed from the phone.  How do I transfer the contacts?

    I have a large number of contacts in my Outlook account.  As long as that account is active on the iPhone (6 ) the contact are available on the phone but disappear when that account is removed from the phone.  How do I transfer the contacts permanently to the phone?

    Archive the contacts you have in Address book, then delete them, they will be removed from iCloud as well. Restore the archive

  • Problem with reserved names

    hi everyboody
    i have a problem with reserved names
    i have a table t
    drop table t;
    create table t
    t_id int,
    "DATE" date
    then i insert it
    insert into t values(1,'15.04.10');
    insert into t values(2,'16.04.10');
    select * from t;
    it'sw work correct
    T_ID DATE
    1 15.04.10
    2 16.04.10
    but when i try to create procedure for insert, like this
    create or replace procedure my_proc(p1 int,p2 date)
    as begin
    insert into t values(p1,p2);
    end;
    i receive error message
    i know that the problem is with the name of the second column called "DATE"
    and if we changed this name (for example "tDATE") the procedure will be work
    but i can't change this name
    if anybody knows the solution please help me

    Karthik:
    No, it is not a bug, it is just the way that Oracle works. The list of reserved words can be found in the view v$reserved_words. There is a column in that view called reserved. A word that is in the view and has Y in the reserved column is "really" reserved, that is you will get an error if you use it in an inappropriate place (like a column name) without quoting it. Words with N in the reserved column should not be used as object names, but because they either became special later in Oracle history or for other reasons can be used unquoted but shouldn't be.
    Although I don't know the exact internal mechanism, from experience, it appears to work this way. When Oracle stores the name of a table or column, it always makes it upper case, unless it is double quoted in which case the case is preserved. When it retireves the names, it does not make any changes to the name as it is stored, so always retieves the name as it was stored.
    In the OP's case, by using double quotes he got around the reserved word issue, but by using all upper case within the double quotes what ended up stored in the data dictionary was a reserved word. The sql statement probably worked in sql because it is just doing a string match to see if the specified column names are right, and in the absence of a column list, may even be just looking to see if the type and number is correct without actually looking at the name. I suspect this because it works even if you explicitly list the columns as long as DATE is double quoted.
    SQL> INSERT INTO t (id, "DATE") VALUES (1, sysdate);
    1 row created.
    SQL> roll
    Rollback complete.However, if you do not double quote the column, you get:
    SQL> INSERT INTO t (id, DATE) VALUES (1, sysdate);
    INSERT INTO t (id, DATE) VALUES (1, sysdate)
    ERROR at line 1:
    ORA-01747: invalid user.table.column, table.column, or column specificationIn the case of the PL/SQL, my quess would be that the compiler is retrieving the column names form the data dictionary, then barfing on something similar to the ORA-1747 error above in the compilation process.
    John

  • Problem with variable name in ZXRSRTOP include (virtual KF)

    Hi all,
    I am coding a routine to use a virtual key figure in the BEx.
    I have just a little problem with the name of a variable:
    as explained in the documentation, I created the variable with the prefix G_POS_, the name of the infocube and the name of the infoobject all together:
    DATA: G_POS_BC_ST_003_C_DIV__C_COMPAR   type i.
    The problem is that this variable name is longer than 30 characters, so the system doesn't accept it.
    Is there a workaround, other than changing the name of the infoobject (which is a navigational attribute)?
    Any help would be appreciated.
    Loï

    Hello Marc,
    I understand that I have to use a concatenate function and a dynamic call of the variable with (variable) instruction, but i do not understand how to implement it.
    the infocube name is BC_ST_003
    the characterisdtic name is C_DIV__COMPAR
    So, in the include ZXRSRTOP the statement
    DATA : G_POS_BC_ST_003_C_DIV__COMPAR
    does not work due a length problem (see first post)
    But in the same include the statement
    +DATA: l_global_name type c.
    concatenate 'GPOS' 'BC_ST_003' 'C_DIV__C_COMPAR' into l_global_name separated by '_'.+
    drives to the following error : statement is not accessible.
    Could u please provide me with an example of the code in the include ZXRSRTOP, and in the include ZXRSRZZZ for the use of this variable.
    Thanks in advance.
    Loï

  • Error -43  when try playback on win7 64bits over the network QT that recide MacPro  osx 10.5 however i can play with VLC player, This happend when the QT is inside a Folder with name longer 8 chars other files has no problem with long names just the QT

    error -43  when try playback on win7 64bits over the network QT that recide MacPro  osx 10.5 however i can play with VLC player, This happend when the QT is inside a Folder with name longer 8 chars other files has no problem with long names just the QT  nfs sharing

    Never mind, I already found the solution myself.
    What I did wrong was:
    - not copying the master image to the nbi folder
    - selecting the netinstall-restore.dmg image as source to copy to my HD.
    The thing is, when you create a netinstall image for 10.5, the image itself is already included in the netinstall image so you don't have to do anything else.
    With the 10.4 image however, you also have to copy the master image to the NetBootSP0 directory.
    In the *.nbi folder contains an netinstall-restore.dmg file. But that is only to boot you to netrestore, it's not the image itself.
    Other alternative is to copy the images to another folder that you share with AFP and adjust the configuration of netrestore like described in this manual:
    http://www.shellharbourd.det.nsw.edu.au/pdf/misc/osxrestoringnet.pdf
    This manual was also how I figured out that I forgot to copy the image to the NetBootSP0 folder.

  • Problem with song names

    Hey, I'm having this problem with song names. For example, instead of the song title being "Song Title" it will be like "Artist Name - Song Title". It's like this for half my files. I'm trying to organize my music files and every time I fix it, it keeps going back.
    This has happened to me before and usually if I double click it, it will automatically change. This time, nothing seems to work except doing it manually ("Get Info)" and that would take too long since I have 7,000 files like this. I posted this on another board and somebody said to right click the songs and click Update ID3 v2.4 which originally worked, but now nothing but manually doing it works.
    This is like this when I open it for other programs, but I know iTunes caused. I think it has something to do with the "Keep my iTunes Folder Organized" check because iTunes renames the file. I also tried reinstalling itunes and readding my files.
    Thanks for any help!

    I don't completely understand what you are trying to say, but iTunes doesn't automatically change your tag information.
    iTunes stores a copy of the tag information in the library database. When you play a track, iTunes re-reads the tag information from the song file and updates the library data. This produces the efferct that iTunes appears to change tag information but it isn't, it is meerly reflecting a change that already happend.
    Do you have any other software on your PC that can automatically change tag information? For example Windows Media player can do it if you select an option to retrieve data from the internet and overwrite existing info. But other software may do it too.
    If you want to force iTunes to re-read all tags, go to your Music view and go to Edit>>Select All. Then right click in the selection and choose Get Info. Don't change anything, just exit by clicking OK. iTunes will update the library with the tag information from the song files.

  • Problem With Image Names

    When I enter new images into iPhoto I name them using a set scheme. It goes something like this D108R218 - 14 - 1. The number following D is for the DVD disk on which the backup for this image is stored, the number following R is for the number of the roll, and the number following the first - is the number of the image on the roll. The final number following the last - is the number of prints made from this image.
    This system has worked well for me in terms of letting me track my thousands of images but I currently have a problem with it. As so often happens when I was applying these numbers I made some changes in the way I entered them. Early on I used the # sign following the Roll number but several months ago I stopped using it. Early on I would make a space before and after the -. Trouble is now when I conduct image searches there is no way for me to know whether to include the # or the spaces before and after the -. Is there any way I can fix this mess without having to go through thousands of images making the system uniform?
    Thanks,
    Win

    Terence,
    How would you be able to do this using the Batch command? Wouldn't that destroy the number sequence entered into each file name?
    All best,
    Win

  • Problem with "Prohibited name". Disk Utility can't repair the disk!

    Hello,
    Sorry if my english is not perfect, but I do my best!
    I have a problem with almost all applications. When I quit an application, it appear the crashed window. I can submit to Apple support the report, but I don't because there is too much.
    I start on a cd-rom and lauch Disk utility. It can't repair the disk because of two "prohibited name" lines in red. No more information!
    What are the two "prohibited name"? File? Folder?
    How to repair the disk?
    Any idea?
    Please, help me.
    Thank.

    Bienvenue To  Discussions GMDC!
    Exactly which model Mac G5 is it?
    What size is the Hard Drive, and how much space is available?
    How much RAM is installed, and is it original or added?
    What peripherals do you have connected? A keyboard, mouse, printer, external drive or modem, router, etc?
    What happened between the last time the Mac functioned successfully, and when it didn't?
    Have you made any changes, like upgrading the system, updated or installed any applications or programs, etc?
    Have there been any unusual occurences, like freezes, crashes, power outages, etc?
    See if you are able to perform the procedures posted below, and post the results.
    THESE ARE THE STEPS FOR USING DISK UTILITY TO REPAIR YOUR HD
    1.Insert the System Install disk, Mac OS X CD-ROM disk, or Restore DVD disk, then restart the computer while holding the C key. Use the System disk, of the OS, that is currently installed.
    2.Once started up from CD or DVD, on the Menubar at the top of the screen, choose Disk Utility from the Installer contextual menu for Panther, or Utilities for Tiger.
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from disc to access Disk Utility.
    3.Click the First Aid tab.
    4.Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5.Select your Mac OS X volume, if necessary.
    6.Click Repair. If DU reports errors it has fixed, re-run Repair Disk until no errors are reported.
    7.Repeat steps 5 & 6, but select the Hard Drive this time. It's usually the first listed with the manufacturer's model number. Make note of the S.M.A.R.T. status.
    8.When finished, select Quit Disk Utility from the Installer menu.
    9.Select Quit Installer from the Installer menu.
    10.In the resulting pop-up window, choose restart.
    11.After the computer has restarted, you can eject the CD.
    TO REPAIR PERMISSIONS ON THE STARTUP DISK
    1.Open Disk Utility, located in Applications/Utilities, and select the startup disk in the left column.
    2.Click First Aid.
    3.Click Verify Disk Permissions to test permissions or Repair Disk Permissions to test and repair permissions. (I never "Verify". Just run "Repair".)
    When "Repair Permissions" is complete. Quit "Disk Utility".
    ali b

  • Saving as PDF - problem with file name

    Hello everybody,
    I have a little problem. I'm making a lot of similar document with InDesign so everytime I copy/paste the latest and then rename it from windows. But when I try to save (with a custom preset) the document as PDF, everytime on default InDesign gave the name of the original document, so I have to write the right name everytime. How can I change this? I want to have on default the file name I'm working on, not the original one.
    EXAMPLE
    I copy and paste "average.indd" and then I rename it as "joe.indd". I make some changes inside JOE, save it and then try to export as PDF. When the saving window appear, the program suggest "average.pdf" as name of the PDF I'm creating.
    Thanks for your support and excuse me if my english is not that good (not my language).
    Have a nice day!
    Dario

    Ah well, it is generally accepted that the most recent PDF-export file name "sticks" and when that's the case, there isn't anything you can do about it except type in the new name you want. However, I just tried it a second time (the first time before my first post), and here, I got it to work the way you want by doing what I originally advised...
    Start new file.
    Save As average.indd
    Export > PDF...file name defaults to average.pdf
    Back in InDesign, Save As joe.indd
    Export > PDF...file name defaults to joe.pdf
    What exactly did you try, and where did the result differ from what I saw?

  • 10g: problem with similar named listeners

    Hi,
    env:
    2 node OEL cluster (not rac, a linux cluster)
    11.2.0.3 GI
    11.2.0.3 and 10.2.0.5 DB's
    The problem seems to be that lsnrctl in 10g is only using the first 12-13 characters of the listener name.
    I have a listener configured with the name listener_prodXXX, when I configure another listener named listener_prodYYY and want to start ist:
    lsnrctl start listener_prodYYY
    TNS-01106: Listener using listener name listener_prodXXX has already been started.
    ps -ef |grep -i listener_prod
    oracle 2784 1 0 13:03 ? 00:00:00 /oracle/product/10.2.0/XXX/bin/tnslsnr listener_prodXXX -inherit
    is there a rule for naming the listeners?
    confused greetings
    Daniel

    Of course I was searching docs/metalink before but couldn't find anything there, so I was asking here.No sign of searching exists in your posts
    If you have only one listener with multiple db's and want to do some maintenance on one of them, how do you avoid user connecting to it?Put the database in restricted session mode
    I don't think its forbidden to use multiple listeners, so if I'm having a problem with the configuration the forum should be the place to ask, isn't it?It is not forbidden to use multiple listeners, but in 999 out of 1000 cases it is not required, and people 'think' they need multiple listeners for the wrong reasons.
    Your post is no exception.
    So, yes, if you want to setup multiple listeners, without apparent and/or sound reasons, I will explain you don't need them/.
    There is nothing wrong about that, isn't it? Many people here 'think' they know Oracle, few have experience and know they do.
    Sybrand Bakker
    Senior Oracle DBA

  • Problem with table name lengths.

    Has anyone experienced with table name length problem?
    When tables are created with schema registration, and the name is longer than 14 characters, the table is created. But when I "select * from xxxx_xxxx_xxxx_xxxx" it says that the table doesn't exist.
    What's the max length of a table name? Or is this a problem with XDB?
    Thanks,
    Benjamin

    Found the problem.
    All table names must be all capitalized and seperated with underscore.
    Is there something I need to set in oracle? or is this a bug? The tables are created but can't be accessed because of the case of table name... that doesn't make sense.

  • Problem with constraint names

    Hi to all, I have a problem with the constraint names. I need to delete the table name that is used like prefix in the constraint name.
    Example:
    - Actual : DBO_MYDATABASE_FK_Ho_Ka
    - Desired : FK_Ho_Ka
    The constraint names are FK_Ho_Ka in the creation database script, but if I import the database schema, I have DBO_MYDATABASE_FK_Ho_Ka, but I only need the constraint name.
    Thanks so much :)

    Thanks for your time :)
    I did a migration from Microsoft SQL Server 2005 to Oracle 11g database. Then, I need to use the same Entity Framework model to use with Sql Server and Oracle. Then, I need that the constraint names must be the same in the two databases.
    I did the migration with Oracle Sql Developer and all works fine. The resulted migration script has the constraint name like FK_UJ_UK (that it's OK) but when I import the database schema or do the Entity Framework model, I have this constraint name DBO_MYDATABASE_FK_UJ_UK.
    Edited by: Bluegene on Dec 11, 2008 9:35 AM

  • Wlsc problem with package name

    I am using wlsc ant task to generate my java code for a web service. Unlike the simplistic examples (HelloWorld and Complex) I have my complex types split into a separate .xsd file instead of putting them directly into the WSDL file.
    Is there a way to set the package name that will be generated for these types? It seems to generate everything into a java package based on the namespace (which is different than the wsdl).
    The wlsc ant task has an argument called "packageName" which I am setting. The java classes for the service itself use that package, just not the types defined in the xsd file(s). :(
    Thanks for any help

    see SAP documentation for package naming convention:
    Packages
    The following namespaces are available for packages:
    Package names beginning with a letter from A to S, or from U to X.
      Package names beginning with these letters are reserved for objects of the SAP standard system from the SAP namespace. You cannot create customer objects or objects from prefix namespaces in these packages.
    Note that the package name must be no more than 30 characters long. The name of the main package should reflect the content of the package Adjacent packages should have similar names.
    The Transport Organizer records changes to objects in these packages, so that they can be transported.
    These packages belong to the "SAP" transport layer and are assigned to an SAP software component (such as SAP_BASIS, SAP_APPL).
    Package names beginning with Y or Z
      You can create customer-specific objects from the customer namespace in these packages.
    The Transport Organizer records changes to objects in these packages, so that they can be transported, provided the SAP System has been set up appropriately. (For more information, see Setting the System Change Option). These packages are assigned to the software component HOME.
    So create the packages accordingly...

  • Problem with different name of viewobject.xml between src and classes!?

    Hallo,
    last days we search the reason of an error when making available an project under linux.
    we've got http status 500 and javax.faces.el.PropertyNotFoundException: Error testing property 'inputValue' in bean of type null.
    we checked many things and after a long time we found the problem.
    the project was developed under windows. there was create a viewobject named OrganListe. this create in the src-path the file OrganListe.xml. in the classes-path we found a file named Organliste.xml!!! we don't know why, but it was so.
    under windows it was not a problem, but linux works case sensitive and so it was a problem. rebuild the base object don't change the name. we changed it on file-level, than the problem was cleared.
    which is the wright way to force the system to regenerate the files in the classes-path (including filename)?
    Any help is appreciated.

    Is there not tip for use?

Maybe you are looking for

  • Dual Monitors in Solaris 11.1

    Need help in how to configure dual monitors in solaris 11.1 x86. Not a clone but extended display. Thank-You

  • Garageband on 2 ipads and a iPhone 4S - iCloud

    I have an old iPad 2 and a new iPad air. I want to transfer my old garageband projects to the new iPad via iCloud. I upload the projects and there is a small cloud on the songs. On the new I do the same and on my iPhone. The songs on the new and on t

  • Can't receive events from outlook 2000

    When some people send me invites to meetings from outlook 2000 on a PC, I can drag the event to iCal and it installs fine. When others do it, it will not be added to iCal or do anything at all except cause me problems. Has anyone else had this proble

  • Do i need a shopping cart programme to accept payments

    I am trying to set up a business using dreamweaver i have created the site but do not know how to accpet payments can someone tell me the steps to doing this? thanks

  • Work flow for park document

    Dear Expert, my client requirement is at the time of park the FI & MIRO document the email should sent to the Authorisation person for post the same document, i think it can be managed through work flow , Can anybody know what is the configuration fo