HT4489 Is there a way to limit (specify) what is shared when you share a contact?

I noticed when I share a contact that most information in the contact is shared.  This is not what I want.  I would only like to share the basic information like telephone numbers and addresses.  I do not want to share my notes and additional information that I have accumulated.  Is there a way to limit or specify exactly what you want to share?

This isn't a way to limit what is shared, except to create a new contact to share that excludes this information.

Similar Messages

  • My iPad was just stolen is there any way to track or locate an iPad when you did not set up iCloud or any of the safety features and you don't have the serial number?  Sincerely , Been Robbed

    I just bought an iPad 4 from an individual - I have not had a chance to set up the iCloud tracking feature or any type of feature like  that - it was just stolen out of my car I do have my Apple ID and username is there any way I can track it or locate it or is there anything I can do it all??
    Sincerely,
    mad sad frustrated and ****** off
    I appreciate any advice you can go me!

    Kyston wrote:
    - I have not had a chance to set up the iCloud tracking feature or any type of feature like  that -
    Sorry... there is no way to track it then...
    See here > http://support.apple.com/kb/HT5668 for Lost or Stolen iOS device

  • Is there any way to disable the firefox search option when you long press the home button on Samsung Galaxy S5 Active?

    I have an S5 Active and sometimes the home button sticks and registers as a long press which brings up Firefox search instead of going to the home screen. Is there any way to disable Firefox Search so that this doesn't happen. I Love the Firefox browser but if this keeps happening I will have to uninstall it.

    hello djpianalto, you could clear the default settings for firefox on android within the system settings (like described in this [http://www.howtogeek.com/195885/how-to-set-and-clear-a-default-app-on-an-android-device/ external article]).
    or try an app like https://play.google.com/store/apps/details?id=hk.sld.SwipeLaunchDisabler

  • Is there a way to bring the schema names forward when you deploy a mapping?

    Hi all,
    I am working in a database instance where there are objects in multiple schemas needed for a single mapping. Currently I have to create a grant statement and then create a synonym to get the deployed package to compile and run. Is there an option I can turn on where instead of it just bringing forward "<Table_name>" that it will generate "<Schema_name>"."<Table_name>"?
    This would remove the need for creating all of the synonyms I currently have to create.
    Any help would be appreciated.
    Thanks,
    Shaun

    So you need a different location for each schema, the 'masteruser' that can access all the schemas is used for authentication as below (so MASTERUSER has access to SCOTT and HR), see how MASTERUSER is provided for the user name and the specific schema (HR or SCOTT) provided for the schema:
    !http://blogs.oracle.com/warehousebuilder/schema_mapping_example1.JPG!
    Then when code is generated the schema is added to the table references:
    !http://blogs.oracle.com/warehousebuilder/schema_mapping_example2.JPG!
    Cheers
    David

  • Is there any way to limit the number of Threads running in Application(JVM)

    Hello all,
    is there any way to limit the number of Threads running in Application(JVM)?
    how to ensure that only 100 Threads are running in an Application?
    Thanks
    Mohamed Javeed

    You should definitely use a thread pool for this. You can specify maximum number of threads that can be run. Be note that the thread pool will only limit the number of threads that are submitted to it. So donot call "Thread"s start() method to start thread on your own. Submit it to the pool. To know more, study about executor service and thread pool creation. Actually it will not be more than 20 line code for a class and you might need maximum of 2 such classes, one for threadPool and other one for rejection handler (if you want).
    Just choose the queue used carefully, you just have to pass it as a parameter to the pool.
    You should use "Bounded" queue for limiting threads, but also be careful in using queues like SynchronizedQueue as the queue will execute immediately the threads submitted to it if maximum number of threads have not been running. Otherwise it will reject it and you should use rejection handler. So if your pool has a synchronized queue of size 100, if you submit 101th thread, it will be rejected and is not executed.
    If you want some kind of waiting mechanism, use something like LinkedBlockingQueue. What this will do is even if you want 100 threads, you can specify the queue's size to be 1000, so that you can submit 1000 threads, only 100 will run at a time and the remaining will wait in the queue. They will be executed when each thread already executing will complete. Rejection occurs only when the queue oveflows.

  • Is there a way to limit the frequency of the "autosaving drafts" feature in Mac Mail on Lion?

    Using Mail Version 5.0 (1244.2/1244.3)
    On MacBook Pro with Lion 10.7.1
    Wondering if Is there a way to limit the frequency of the "autosaving drafts" feature in Mac Mail on Lion?
    Looked all thru preferences and googled the crap out of this and can't seem to find the answer I want.
    Basically, I have my mailbox behaviors set up exactly the way I want them. (ie deleted messages get saved to my "Trash" folder on the server) I do not think I should have to change them, but because of the autosave feature saving almost every 3 characters typed, I have an over abundance of versions saved in my Trash folder. This problem would be solved were there a preference somewhere I could select to save drafts "manually only" or "opened messages save when quitting" or something along those lines.
    Is this a preference setting already that I am missing?
    I would settle for a rule, just not sure what perameters should be set for this to work.
    Help

    Typically a server has a settable parameter to limit concurrent connections. Check the server's documentation.

  • Is there any way to limit purchases on my iPad

    Hello world
    MY question is simple: Is there any way to limit ALL purhases (not only in-app purchases) on my iPad.
    I've tried to assign a debit card with a small amount of money but it did not help. I'm still able to make purchases, their cost is in "pending" state(a red sum in iTunes with info that my card could not been authorized) and thay will be debited from the account as soon as i refill my account

    Remov the card details and credit your account with a small amount by means of an iTunes gift card.

  • Is there a way to limit how much music stays on iphone?

    I use iTunes Match, and it's great. But, I use the phone for other stuff, and those apps need space. Is there a way to limit how much the Music app stores before it throws away the old songs?
    Rephrasing the question, when using match, is there any way to control how the memory on my iPhone gets alloc

    Rephrasing the question, when using match, is there any way to control how the memory on my iPhone gets allocated...

  • Java.lang.OutOfMemoryError -- Is there a way to limit BPEL instances number

    Hi All,
    My BPEL process is using JMS adapter to read the JMS queue. Whenever a new message arrives, a new BPEL instance is created. However, when the message gets bigger and multiple messages arrive at queue at the same time, the OC4J gets java OutOfMemory (heap space) error and was forced shutdown. I'm wondering if there's any way to limit the BPEL instance created, say, only one at a time, and the messages would be processed in sequence. Would this be a good way to not use so much heap at one time? Is there a way to limit the BPEL instance created?
    Thanks for your help!
    Michelle

    Take a look at how to configure Jms polling interval (talks about a property that you can set to introduce a delay in between dequeues). That might be of some help to start with.
    It is supposed to work exactly the way you want it i.e the activation agent does a dequeue and hand off to bpel engine (which creates an instance and uses the same thread to run as much of that instance as possible i.e till the first dehydration point). So, if your process has a dehydration point right at the beginning (which could be due to invocation of another async process, or wait or ...), you could very well see this thread go right back and process the next available message.
    I believe this is a generic problem that is not necessarily jms adapter specific. One way would be to split up your process into three processes:
    1. "Kickoff" process which contains just a "receive" associated with the activation agent followed by an invocation of a "Controller" process
    2. "Controller" process which checks for the provided input as to which process it needs to invoke, and then goes on to check how many instances of that process are currently running; if this number is below a certain threshold, kick off the main process providing it the necessary payload gotten from the "KickOff" process
    3. "Main" process which is same as your current process except that it is a typical async process without the adapter "receive" partner link
    So, the idea being that for any process where you want to introduce a control-flow mechanism, you would split it into #1 and #3 above. Have one generic Controller process, which caters to all of the processes.
    Would be interested in learning if others have solved this in a generic way.

  • Hi.  Is there a way to limit the size of the emails I receive?

    Hi.
    Is there a way to limit the size of the emails I receive?   Can I set my iPhone4s to only download headers or set a limit to the size?   I can't see anything in the settings.
    Thanks,
    John

    My Gmail downloads only small embedded pictures. For videos and other big files I have to tap to download and this is a temp download. So you don't have any problem I thing. You can Delete the account-restart-add account back from time to time.

  • Is there a way to limit the size of the page preview cache?

    Overall I think that the page preview function of Safari is really great. But I noticed today that Safari was becoming slow to close down, and I cleared the page previews with the "Reset Safari" function, and over 1 GB of cache was cleared up. I had no idea that that much disk space could be taken up by the page previews.
    Is there a way to limit the size of the Safari Page Preview cache to, say, 500MB?

    Sorry, you can't limit the size of that item; you can either delete it, or disable it completely (which will also disable Top Sites and Cover Flow for Safari).

  • I have an Apple TV 2, is there a way to limit use time?

    I have an Apple TV 2, is there a way to limit use time?

    Since the cable company will always tell you that the "connection looks good", it is a good idea to verify that for yourself, if you have not already done so.
    Just connect your Mac directly to the modem, check the download speed that way, and note the results. If you do not have an application to test the connection speed, you can use something like this:
    http://www.speakeasy.net/speedtest/
    Then, connect the modem to your router normally, and then connect the Mac to one of the LAN <-> Ethernet ports and check that way, and note the results. This should be about the same speed, or a bit less than the direct connection to the modem.
    Then, power off the router and power it back up and try a wireless connection with the Mac relatively close to the router. You should see about 80-90% of the speed that you noted when the Mac was connected directly to the modem and the router using an Ethernet connection.
    Make sure that there are no cordless phones anywhere near the router or Mac when you test the wireless connection.
    Post back on your results.

  • Is there any way to limit video game usage in safari???

    Is there any way to limit video game usage in safari???

    Parental Controls might work for you >  Mac OS X: Parental Controls

  • *Is there any way to limit the Chart Bar size dynamically?*

    Hi
    I have selected the Marker size as Medium for my Bar chart.
    Bar chart bar showing too big when there is only one bar.
    Is there any way to limit the bar size dynamically?
    Thank you

    hi Ruwan,
    Don is correct in that there is no option in the chart design component to do this.
    what you can do though (i know it is a pain) is to
    1) create a new chart in a new section with a narrower bar using the chart options dialogue
    2) create a conditional suppression formula for the new section and the old chart section based on the value returned in the Show Value for the chart
    i have created a request for a charting overhaul [here |https://ideas.sap.com/community/products_and_solutions/crystalreports;jsessionid=B3E2E9F6A6CC9C9F5321659382A91855.node0]in the ideas place which includes a solution for this particular issue. please feel free to give it the thumbs up if you think that this is a worthwhile idea.
    jamie

  • Is there a way to stop being bombarded with IAds when playing games on the iPad? This is a very annoying new way to advertise Apps.

    Is there a way to stop being bombarded with IAds when using games on my IPad? Is this a new way to advertise Apps?

    If these are the free versions of the games, buy the full version and the iAds should go away. The developer can offer the app for free by selling advertising. If the developer is going to give the app away, he has to be paid for his work somehow.
    There may be some paid apps that might include iAds as well. In those instances, the developer includes the ads in order to subsidize the cost of the app to the end user in order to reduce the cost of the app. You should always read the app description when you download any app to make sure that you know what you are getting into - with regard to ads and in-app purchases.
    Games are the worst offenders - IMO. Many "free" games become totally useless after you reach a certain level or if you reach your limit in lives or potions or things like that. If you want to continue in the game, you than have to make in-app purchases for levels, lives, potions, beads, whatever. You can rack ip quite a bill playing those "free" games if you are not aware of what you are getting into.

Maybe you are looking for

  • Outlook 2013: Your Automatic Reply Settings Cannot Be Displayed Because The Server Is Unavailable

    When I configure the Outlook profile manually then receive warning "Your Automatic Reply Settings Cannot Be Displayed Because The Server Is Unavailable" when clicking "Automatic Replies (Out of Office)". However if I use Autodiscover to configure the

  • DVD will not play in PS3

    I am using ILife '08 to render and burn family dvd. The video is imported from Canon HD20 camera. Iphoto project as well burned on dvd. I am using one of the 7.0 themes from IDVD 16:9 ratio. I am using a Fujifilm -R dvd media. The first menu will loa

  • My sender and the receiver message types structures are same.do I need to m

    Hi all, My sender and the receiver message types structures are same.do I need to mapping in this case. If it is not required .Let me know in detail,How to proceed. Thanks, Srinivasa

  • How can I change the duration for all clips in iMovie 10.2

    How can I change the duration for all clips in iMovie 10.2?  I'm used to working in the older version of iMovie where all I had to do was click on the gear on the clip and change the duration. ALso could use the tool bar to set the duration for all c

  • Adobe Indesign randomly crashing

    Hi Community and Adobe Team, I do have a problem with Adobe Indesign CC that the software is randomly crashing. In most cases the used file still works after opening it again but in rare cases the whole file was corrupted. Here is some information ab