Contact phonenumber defaults as radio field

When I add a contact on my iPhone (4) running iOS 7.0.2 the phone number defaults to 'home'...
As soon as I turn on Exchange Contacts sync the phone number field defaults to 'radio' when creating new contacts with phone numbers.
The issue does NOT occur when I only sync mail or calendar. Only when I tap on Contacts within the ActiveSync account.
One of our users reported this issue so I went testing it...
Our company runs Exchange Server 2010 SP2 RU6
I added some screenshots.
Exchange Contacts Sync OFF: (field label says home)
Exchange Contact Sync ON: (field label says radio)
Problem is that the phonenumbers tagged with radio are not synced, because the field does not exist in Exchange/Outlook.

GetSQLValueString(isset($_POST['contact']) ? "true" : "", "defined","'Y'","'N'"));
In your form, you have given the value as "Yes" and "No", yet in the database you have defined the value as "Y" and "N"
Personally, I would change the values in the form to correspond with those in the database.

Similar Messages

  • How to default the radio button confirmation and invoice in shopping cart

    Hi Guys,
    In the shopping cart for a limit item I need to default the radio button for CONFIRMATION AND INVOICE as it is now defaluted to INVOICE ONLY .
    Please let me know how to change as I could not achieve it through UI badi.
    Thanks & Regards
    Arun

    Did you try the suggestions mentioned here: To make the field for Display only on the Shopping Cart Portal
    I'm looking for a way to restrict the "Invoice Only" option depending on the product category selected.  Do you know I would do this?
    For example only allow "Invoice Only" to be selected if Product Category X is selected.  If product category Y is selected then grey-out "Invoice Only".
    Matt

  • When I try and print off a list of my contacts, it defaults to an envelope. How do I make a list of just the names?

    When I try and print off a list of my contacts, it defaults to an envelope style, with all the info. I just want a list of names.  How do I do that?

    Thanks so much Martin.  It took me awhile to figure out that in the print mode, there is an arrow that expands the print dialog box.  I've been looking for the print dialog box for awhile, and now that I found it, I could make my list. Thank you SO much!! I can show my computer savvy husband that I learned something new today!!!  I'm SO happy!!!

  • Defaulting a date field in the table

    Hi Experts,
    I need to default a date field(DATBI) in a table to 12/31/9999. Since the date is system specific i cannot hardcode it as 12/31/9999 in the events.
    For eg . in our quality system date is maintained as 12.31.9999.
    Please let me know how i can implement this.
    Regards,
    Anjali

    In my table say ZXXXX i have a field DATBI.  My requirement is to default this field's value to 12/31/9999 while maintaining the table.
    Since date field is system specific. For eg , in our Dev system Date format is 12/31/9999. where as in quality it is 12.31.9999, I cannot hardcode it as 12/31/9999.
    I need to default the value for field DATBI irrespective of the system.

  • Default Primary Key Field of any database table

    hi,
    I am working on a database in which the data in the tables is generated from some other modules. I have to add, view and update functionalities to this table in the database. Unfortunately there is no primary key field for the table i am working on and as some existing modules are using this table i am not allowed to change the design of the table at this stage.
    Without primary i think its not possible to do updates. Because if all fields can have their values changed, then there will be a breakdown if the field value changes in the mid time when i had already retrieved the data to show on the screen, but not yet updated the value in the database. I hope you understood my problem.
    Please suggest solutions. I am not sure, but i think i read somewhere that every table created has a default primary associated whose value is always incresing with a new addtion of recored and its value never decreases. But i am unable to recollect the field name...i think it is some thing like[b] OID .... But i checked there is no such field name by OID. So please help me with some alternative solution...or by telling the default primary key field name.
    Thanx

    All the databases I know (namely Informix, PostgreSQL, SQL Server, even Access) have a row id column generated automatically.
    PostgreSQL example
    There is a way to read the value of this column; for example with PostgreSQL let�s say you have the following:
    CREATE TABLE no_id_column (
    column_one varchar(80),
    column_two varchar(80)
    INSERT INTO no_id_column(column_one, column_two) VALUES (�red�, �pink�);
    INSERT INTO no_id_column(column_one, column_two) VALUES (�yellow�, �orange�);Certainly, if we executed:
    SELECT * FROM no_id_column;Would obtain:
    column_one          column_two
    red               pink
    yellow               orangeBut if we modify the query
    SELECT  oid, * FROM no_id_column;We magically obtain a row identificator
    oid          column_one          column_two
    21569          red               pink
    21570          yellow               orangeThe data in the oid column is generated automatically by the database manager. Every time we insert a row we�ll have a different one. Just take into account that if the database contains a large amount of data, the oid could cycle.

  • Configuring Kodo default implementation for field of Collection type

    If I am not mistaken default implementation for field of Collection type in
    Kodo is
    LinkedList based proxy. It would be great if it were possible to configure
    Kodo to use a proxy of my choosing
    I did some tests and it seems to me that ArrayList is much more efficient
    than Linked list (see below)
    Is there any specific reason I am not aware of that makes LinkedList better
    than array list
    In my applications all collections a relatively small (or at least most of
    my collections are definitely small)
    and since I use Collection interface there is no inserts into middle of my
    collections - only appends (which ArrayList handles very well)
    So my question is can I make Kodo to use ArrayListProxy for fields of
    Collection type
    (except of course using ArrayList field instead of Collection which I do not
    want to do)
    below is some statistics on collection performance (populating and iterating
    collections)
    the same test against 3 collections implementations (JDK 1.4.1)
    Not only ArrayList by far the fastest and memory friendly it also garbage
    collected much sooner and better -
    I show here max memory consumption and last to would not be garbage
    collected till all memory is in use (old generation GC)
    and ArrayList seems to be collected by young gen GC because it was collected
    very quickly between test cycles why other only when all memory was used
    So please make ArrayList your default collection implementation :-)
    Small collection size (40)
    time(ms) memory(kb)
    ArrayList 5,218 62,154
    LinkedList 14,125 240,066
    HashSet 27,000 311,825
    the same but using using random inserts - append(index, object) rather than
    append(object):
    ArrayList 8937, 53591
    LinkedList 15047, 240066
    Larger collection size (200)
    ArrayList 4860, 47709
    LinkedList 18468, 290704
    HashSet 34391, 422282
    the same but using using random inserts - append(index, object) rather than
    append(object):
    ArrayList 11844, 47709
    LinkedList 25766, 290704

    You should be able to accomplish this fairly easily by extending
    SimpleProxyManager:
    http://solarmetric.com/Software/Documentation/2.4.3/docs/javadoc/com/solarmetric/kodo/util/SimpleProxyManager.html
    and overriding the appropriate methods (getCollectionCopy and
    getCollectionProxy).
    On Mon, 12 May 2003 12:26:21 -0400, Alex Roytman wrote:
    If I am not mistaken default implementation for field of Collection type in
    Kodo is
    LinkedList based proxy. It would be great if it were possible to configure
    Kodo to use a proxy of my choosing
    I did some tests and it seems to me that ArrayList is much more efficient
    than Linked list (see below)
    Is there any specific reason I am not aware of that makes LinkedList better
    than array list
    In my applications all collections a relatively small (or at least most of
    my collections are definitely small)
    and since I use Collection interface there is no inserts into middle of my
    collections - only appends (which ArrayList handles very well)
    So my question is can I make Kodo to use ArrayListProxy for fields of
    Collection type
    (except of course using ArrayList field instead of Collection which I do not
    want to do)
    below is some statistics on collection performance (populating and iterating
    collections)
    the same test against 3 collections implementations (JDK 1.4.1)
    Not only ArrayList by far the fastest and memory friendly it also garbage
    collected much sooner and better -
    I show here max memory consumption and last to would not be garbage
    collected till all memory is in use (old generation GC)
    and ArrayList seems to be collected by young gen GC because it was collected
    very quickly between test cycles why other only when all memory was used
    So please make ArrayList your default collection implementation :-)
    Small collection size (40)
    time(ms) memory(kb)
    ArrayList 5,218 62,154
    LinkedList 14,125 240,066
    HashSet 27,000 311,825
    the same but using using random inserts - append(index, object) rather than
    append(object):
    ArrayList 8937, 53591
    LinkedList 15047, 240066
    Larger collection size (200)
    ArrayList 4860, 47709
    LinkedList 18468, 290704
    HashSet 34391, 422282
    the same but using using random inserts - append(index, object) rather than
    append(object):
    ArrayList 11844, 47709
    LinkedList 25766, 290704

  • Default values for fields in infotype 0017

    Is there any way to set default values for fields in infotype 0017? Maybe a
    feature? I'm thinking about defaulting values based on pay scale group.
    Thanks before.

    Hi
    You can implement what i suggested in my previous post.
    Or else, you can do what we did in one of our client requirement.
    We created a custom Ztable where we had defined which value of the the employee grouping to be placed for which record.
    We did that on the basis of the company code fields.
    For eg: IF BUKRS = 'TR01'
    then EE Grp Expense Type = '1'.
    ENDIF.
    Similarly for other fields.
    Hope this helps.
    Harsh

  • How do I turn off the default radio in my music app.  I cannot play my playlist until it first defaults to radio and then I have to start all over. this is very tedious!!!

    how do I turn off the default radio in my music app.  I cannot play my playlist until it first defaults to radio and then I have to start all over. this is very tedious!!!

    This got me curious when I first saw it... It does indeed seem very Un-Apple-like (at least historically) to prevent a user from customizing their own device - Mac or iDevice - but today I'm unsure. I cannot grasp how a UX designer could leave a simple "OFF" switch out of the control panel. Another thing that Music Data Streaming does is eat up your Data Plan.
    This May  not be the exact issue as you describe, but seems to solve an issue of a Radio Playlist in iTunes resuming where it left off from the last use...
    My Carly girl     May 18, 2014 6:25 PM 
      Re: How do you turn off i tunes radio on the ipad air once it starts playing songs?  in response to Betty91545        
    Play last song on list, songs will then stop.  Works for me on iPad. Haven't tried yet on iPhone.
    It is likely that THIS may be part of the real reason to push the iTunes Radio feature - revenue stream (nobody remembers "Payola?"):
    Apple is more beholden to the shareholders than in the old days

  • Changing the Default meta data field property required into not required.

    Hi,
    Is it possible to change the default meta data field property values in UCM server.
    For example consider the meta data Revision field which property required is true, then how to change this property required into not required.
    Is this possible or not?
    Thanks
    Hari

    Hari,
    in your case (if you don't want to use versioning) I'd rather recommend to change it to hidden than not required. You should be able to do it with standard profiles (the field name, I believe, is dRevision)
    I don't think you can have the field empty (in case someone deletes the content).

  • Defaulting a customer field (added through EEW) while bus. obj creation.

    Hi All,
    There a customer field added through EEW.
    Now suppose when we are creating an object (BUS2000170, in my case) this customer filed value should be set the a default value. Under GENIL_MODEL_BROWSER i can see this filed in 'BTitemcustext'.
    I am trying to do it through EVENTS (by calling a FM after AFTER_CREATE event) but i could not find 'BTitemcustext' in the table type CRMT_EXTENSION_COMT.
    Now i dont know where to set this value.
    Can anyobe please help on how we can set default value for fields developed through EEW.
    Thanx,
    Abhi.
    Edited by: abhishek ranjan on Jan 7, 2011 10:11 AM

    Hi Rajni,
    This BADI will only be called when i will save the order.
    I want to set the default value the moment the object is created. Thats why i wanted to do it through events(CRMV_EVENT).
    The reason being suppose the order is not saved , till then this default value will not be visible in the UI side(Even after the object creation).
    Also where i can set this default value??
    I mean this field is available under the model 'BTITEMCUSTEXT'. Also the filed is not visible in the table type for extensions (CRMT_EXTENSION_COMT).
    Please let me know i am wrong.

  • Smart Group to contain all contact entries containing a specific field

    Hi, does anyone know of a way to display all of my contacts which contain the 'other' field for phone numbers. Basically i'm haveing a problem syncing this field to a blackberry (i have been told this is going to be corrected). However until such time if it is possible to show me the contacts that contain this field, i could just change 'other' to 'mobile/work etc...' which sync fine.

    No, but it is easy to use Applescript to make the change for you - but back up your Address Book first in case it goes wrong.
    AK
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">tell application "Address Book"
    repeat with ThisOne in people
    repeat with ThisPhone in phones of ThisOne
    if label of ThisPhone is "other" then
    set label of ThisPhone to "work"
    end if
    end repeat
    end repeat
    end tell</pre>
    (The recent upgrade to the discussions has disabled the link that allows direct opening of a script, so run Script Editor and copy in the script.)

  • Set default value on field KNA1-AUFSD when creating Customer

    Hi,
    How to set default value on field KNA1-AUFSD when creating customer master using XD01/VD01?
    I have tried user exit SAPMF02D, but all KNA1 values are read only.
    Thx

    Hi
    Try to implement an enhancement option in include MF02DFEX. (at the beginning before call to FM CALL CUSTOMER-FUNCTION '001'.).
    and Initialize the value for KNA1-AUFSD.
    In this Include you can see that there is a call for CALL CUSTOMER-FUNCTION '001'.
    So even you test/check the initialized value for field KNA1-AUFSD is updated by putting a break point in this function module after implementation of your enhancement SAPMF02D.
    Regards,
    Dwaraka.S

  • Not all contacts in "To..." field in Nokia Text Me...

    Hello,
    I noticed, that in the field "To..." in Nokia Text Message Editor all contacts are not showed.
    After the small investigation I came to this it happened because I've set default tel. numbers for voice connections in my Nokia N70. When I switch off them and refresh the contact list in Nokia Text Message all contacts are appear.
    In the the previous version of the PC Suite 6.82 wasn't this problem.
    In Contacts list on Nokia Phone Browser everything is all right.
    I Have Win XP SP2, PC Suite 6.83.14.1 and Nokia N70.
    All in Polish language.
    Could Nokia fix it?
    Regards

    Have you tried resetting the sync history on what I assume to be a Mac, which is done via iSync preferences with the iSync application located in your Applications folder?
    If not, quit iTunes, the Address Book, and iCal.
    Launch the iSync application and after selecting reset sync history via iSync preferences, restart your Mac followed by syncing your iPhone again to check if this resolves the problem.

  • Outlook not sync contacts with changed "file as" field?

    I am syncing contacts and calendar from Outlook on my office PC (and everything else from Mac at home). I have a very large contact list and have noticed that a number of key contacts have not synced. It appears that any contacts with a changed "file as" field have not been syned (e.g. contact entry of "Daniel Smith" with "file as" field altered in Outlook to show "Dan Smith" does not show anywhere on iPhone). Needless to say, these are actually the contacts that I use most often so I'm hoping to find a solution.
    On a related point, it's hard to determine exactly how many contacts are not syncing b/c I can't find anyplace on the iPhone or in iTunes that lists shows info on the number of contacts (so I can't compare to my count in Outlook).
    Has anyone else experienced this problem? Are there any known solutions or work-arounds? (I'm hoping to avoid a full export, clean-up, and import to iPhone through the Mac Address Book or similar b/c I'm concerned that in then trying to sync w/ Outlook I'd get duplicates. Also, my contact list has thousands of contacts so it would be very dedious. My current work-around is to still carry my Treo in my briefcase, which is not ideal).
    Thanks in advance for any help.

    boynsea: Thanks for the input, but isn't the IMAP aspect of Outlook limited to the way one can connect to an Exchange server for e-mail? I've been successful in getting the IMAP connection for e-mail working. Contacts and calendar are designed to sync when physically docked with the computer rather than over-the-air; I know, if something like exchange activesync is ever licensed for iPhone then the calendar can be updated over-the-air, but I suspect that contacts will always be synced only when docked (which is how my Treo was set up).
    Anyway, I did test my theory about the "file-as" field by changing a few contacts back to their default display and now they sync just fine. I really don't want to have to do this for all contacts, and can't actually tell how many are involved since I haven't found anyplace that the number of contacts is listed. Also, does anyone know if there is a readily accessible syncronization log that can be checked? That might show those contacts that are rejected.
    Thanks.

  • Enable/disable/defaulting the radio button in tabular Form

    Hi friends,
    I have one radio button column in my tabular form with 3 values for it.
    <li>FC
    <li>BC
    <li>EC
    I need to enable/disable the radio buttons according to the position of the user.
    If the position of the user is CEO means,
    then FC radio button has to be checked defaultly and also for him he needs to have BC and EC radio buttons to be enabled.
    If the position of the user is between(1-4) grades means,
    then FC radio button has to be disabled, but BC radio button has to be checked defaultly and also for him he needs to have EC radio buttons to be enabled.
    If the position of the user is between(4-6) grades means,
    then FC, BC radio button has to be disabled, but EC radio button has to be checked defaultly.
    How i can achieve this radio button enabling/disabling and defaulting it dynamically according to the user.
    Where i need to specify this kind of restriction inorder to work for me in my application.
    Brgds,
    Mini

    Hi Bob,
    thanks for your reply first, and your suggestion too.
    I tried in the below manner on the lov definition of my radio button and it hide/shown according to the user who logs into the application.
    SELECT 'FC' d, 'FC' r FROM DUAL WHERE lower(:APP_USER) = (select lower(user_name) from apps.xxhy_ams_details_v where upper(job_name) = 'CEO')
    UNION ALL
    SELECT 'BC' d, 'BC' r FROM DUAL WHERE lower(:APP_USER) IN (select lower(user_name) from apps.xxhy_ams_details_v where grade_name
    BETWEEN 1 and 4 OR lower(:APP_USER) = (select lower(user_name) from apps.xxhy_ams_details_v where upper(job_name) = 'CEO'))
    UNION ALL
    SELECT 'EC' d, 'EC' r FROM DUALBut how i can check the radio button defaultly according to the user who logs in .
    <li> If the employee with the position CEO logs into the application means, he needs to have FC to be checked defaultly.
    <li> If the employee with the grade between(1-4) logs into the application means, he needs to have BC to be checked defaultly.
    <li> If the employee with the grade between(5-12) logs into the application means, he needs to have EC to be checked defaultly.
    Note:
    Instead of hide/show the radio buttons defaultly whether it is possible to enable/disable the radio button according to the user who logs into the application.
    Brgds,
    Mini...

Maybe you are looking for