How to hide a particular contact's details?

In a nutshell:
I want to hide contact details of few persons from my Q5, like either phone number or email, or both.
How to do that?
I want the name to be visible while incoming/outgoing calls, but I do not want to disclose the numbers. I mean, when I search in my contacts, only the name should be visible. Let's say "Helen Hunt". But when someone (or even me) clicks on that name, no number should be visible, but one should be able call Helen Hunt.
There is no default option for that currently (there might be if I couldn't find it). Is there any app that can perform this action?
Thanks a lot in advance,
keypaduser.

keypaduser wrote:
In a nutshell:
I want to hide contact details of few persons from my Q5, like either phone number or email, or both.
How to do that?
I want the name to be visible while incoming/outgoing calls, but I do not want to disclose the numbers. I mean, when I search in my contacts, only the name should be visible. Let's say "Helen Hunt". But when someone (or even me) clicks on that name, no number should be visible, but one should be able call Helen Hunt.
There is no default option for that currently (there might be if I couldn't find it). Is there any app that can perform this action?
Thanks a lot in advance,
keypaduser.
No, that option is not available. Im not sure if there is an app that does that. Let's see what others Think.
Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

Similar Messages

  • How to hide a column in master-detail jsp

    My jsp contail a master view and a detail view ,and have a link between two,i want hide the column in the detail view as it was shown in master view,How can i do?

    Assuming you are using BC4J - double click on the view object to edit it. Go to the attributes section and shuttle the attribute you want to hide back to the left.

  • How do you forward a contact's details to someone else?

    My previous Nokia used to allow me to select a contact & then I cld forward it (the full contact details) to someone else's phone no. (with the press of 1 button). The iPhone 3G doesn't seem to have this basic feature that I can see (all you seem to be able to do with contacts is either edit them or add them to favourites) - I had to SMS the necessary details to someone (after I'd typed them into the SMS msg) which is quite antediluvian. Anyone have any ideas?

    Clearly not, and for the most part Apple should be commended for this. Their ability to look forward, not backwards, allows them to produce uncluttered, easy to use products. But sometimes their insistence on simplicity comes at the cost of essential features - such as cut and paste or MMS (the whole purpose of cell phone cameras is to allow you to send photos to other cell phones, right?) Sometimes Apple's omission of certain key features is so glaring as to seem more like the result of a shortage of Apple programmers rather than the result of some minimalist design decision or forward thinking. I believe that the absence of certain essential "old" PDA features on the iPhone, such as the ability to easily forward contact information, is an example of this.

  • How to hide/remove Particular column from the payslip in ESS\MSS Portal overview table?

    Steps to be followed.
    1)Go to SE18
    2)Select Enhancement spot
    3)Give the Espot name 'HRESS_PAYSLIP'
    4)From left side double click on the Implementing Class 'CL_HRESS_PAYSLIP_BADI_STANDARD'.
    5)Within that double click on the method 'if_hress_payslip_badi~adjust_field_catalog'.
    6)AT the end of this method there will be 4 Lines of coding with the Loop and endloop. This is the code which
    is use to hide the column from ESS/MSS payslip overview.
    7) According to your requirements you should copy the same 4 lines code and hard code the particular column field name
    with the Implicit Enhancement.
    Below Code is for ur understanding:
      clear ls_field_usage.
       ls_field_usage-enabled = abap_false.
        ls_field_usage-visibility = cl_wd_uielement=>e_visible-none.
        modify ct_field_usage from ls_field_usage transporting enabled visibility
          where name eq 'Hardcode ur column field name'.
    All the best

    Hi,
    For making a page/iview invisible temporally without deleting from role, change page/iview property "Invisible in navigation areas" to "yes" then it will be hided in navigation areas.
    regards,
    Mahesh

  • How to hide a particular report in a Dasboard for some level of user

    Hi Gurus,
    This is our requirment.
    We have Level Based Hierarchy starting from L1 to L8.We want to display one particular report or page only for the Level Greater than or equal to L5.
    Any kind of help is appreciated.
    Regards

    Hi gerardnico,
    Thanks for the Reply.
    But we are also doing the same thing creating one Group
    (select 'WEBGROUPS', 'ALLOW'
    from dual
    where 'VALUEOF(NQ_SESSION.Higher_Level)' = 'X')
    which are having the access to the report but when we put the following in the init block there is access prohibited to all the users.
    select 'WEBGROUPS', 'Secured User'
    from dual
    where 'VALUEOF(NQ_SESSION.Position_Name)' <> 'NO ACCESS'
    UNION ALL
    select 'WEBGROUPS', 'ALLOW'
    from dual
    where 'VALUEOF(NQ_SESSION.Higher_Level)' = 'X'
    UNION ALL
    select 'GROUP',
    case when 'VALUEOF(NQ_SESSION.Position_Name)' = 'NO ACCESS' then 'NO ACCESS' ELSE 'Secured User' END
    from dual
    Regards

  • How to deactivate a particular contact as iMessage user

    One of my contact use another iphone to sent me messages and it was automatically register as iMessage.
    However now this contact is not longer using iphone but all my message sent are still registered as iMessage but the contact did not recieved my message though it is indicated as delivered.
    I know we can on/off the iMessage settings but it is too troublesome to just turn off if I need to send that contact a message.
    Is there a better way to resovle?

    Write a new text message, type in his/her phone no. physically (not via contacts)... if the server does not detect him/her using iOS5, message sent out will be in SMS text message. you should see your messages sent out in green color.

  • How do I share a contact's details directly from Address Book?

    It seems that the only way to share contact information from Address Book is to export a vcard to say, the desktop, and then email the vcard as an attachment using Mail.
    Is there a more direct way of sharing a contact's information rather than this 2 step process?

    Thanks Thomas.
    This works, but still requires a new mail message to be open. I would have thought there would be something more intuitive such as highlighting the contact, and using the contextual menu to 'Share'. As it stands the only options with the contextual menu are Export, Edit and Spotlight. Surely adding in Share (or Email) wouldn't be too much of a challenge (Apple, are you listening?)
    ID

  • How to hide column of DataGrid

    I am making a web part in which I am using System.Web.UI.WebControls.DataGrid control.
    It's AutoGenerateColumns property is set to TRUE.
    I am trying to hide a column at run time. I have written the following code on this controls ItemCreated event but it only works if I e.Item.Cells[0] and it doesn't work for any other value for e.g. e.Item.Cells[1] and e.Item.Cells[6].
    There are 9 columns in my DataGrid control.
    Code
    protected void grd1_ItemCreated(object sender, DataGridItemEventArgs e)
    { e.Item.Cells[0].Visible = false; //works fine
    e.Item.Cells[1].Visible = false; //gives error e.Item.Cells[2].Visible = false; //gives error
    Error
    Specified argument was out of the range of valid values.
    Parameter name: index
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    How to hide a particular column?

    Hi Frank,
    You can try something similar to the below in 'RowCreated' event Instead
    protected void gridView_RowCreated(object sender, GridViewRowEventArgs e)
    e.Row.Cells[1].visible =false;
    OR I would say hiding column is not something that is to be done at row level, so you can hide columns outside any of the grid view event after binding.
    e.g.
    gridview1.columns[1].visible=false;
    I am using DataGrid control in which there is no RowCreated event.
    I have tried second approach but it also doesn't work.

  • How to play with gmail contacts?

    Hi Friends,
    How do I get gmail contacts using gdata library? I searched gdata libary, but I couldn't find any hint.
    Right now I am able to insert any contacts to my gmail id. But how can I get all my contacts in my java program?
    Here is a program I am using to create new contact and insert it to my gmail id
    import com.google.gdata.client.*;
    import com.google.gdata.client.contacts.*;
    import com.google.gdata.data.*;
    import com.google.gdata.data.contacts.*;
    import com.google.gdata.data.extensions.Email;
    import com.google.gdata.data.extensions.ExtendedProperty;
    import com.google.gdata.util.*;
    import java.io.IOException;
    import java.net.URL;
    public class Gcontacts {
         public static ContactEntry createContact(ContactsService myService,
                   String name, String notes) throws ServiceException, IOException {
              // Create the entry to insert
              ContactEntry contact = new ContactEntry();
              contact.setTitle(new PlainTextConstruct(name));
              contact.setContent(new PlainTextConstruct(notes));
              Email primaryMail = new Email();
              primaryMail.setAddress("[email protected]");
              primaryMail.setRel("http://schemas.google.com/g/2005#home");
              primaryMail.setPrimary(true);
              contact.addEmailAddress(primaryMail);
         URL postUrl = new URL("http://www.google.com/m8/feeds/contacts/[email protected]/full");
              return myService.insert(postUrl, contact);
         public static void main(String[] args) {
              ContactsService myService = new ContactsService("exampleCo-exampleApp-1");
              try {
                   myService.setUserCredentials("[email protected]", "************");
                   ContactEntry cobj=createContact(myService,"Harshit","Test purpose");
                   System.out.println("Returned :"+cobj.toString());          
              } catch (AuthenticationException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (ServiceException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    }which method should I use to get all my contacts list? and Also how do I update particular contact from this kind of program?
    Please help.
    Thanks

    You're probably better off finding a forum on google.com specifically dealing with their APIs.

  • How to hide the data in particular table in oracle 10g

    How to hide the data in particular table in oracle 10g
    i want steps

    If its on Report u can  always hide the column - Keyfigure or Selection - Display - Hide......y do u want to have it on the report if it is to be hided in the first place?

  • 0 down vote favorite share [fb] share [tw]        How to hide cut/copy/paste/Replace- menu on the UIWebView when it is being displayed over the keyboard.  Detail: I am having a HTML from, having text box, displayed using UIWebView. If user types in text b

    How to hide cut/copy/paste/Replace… menu on the UIWebView when it is being displayed over the keyboard.
    Detail: I am having a HTML from, having text box, displayed using UIWebView. If user types in text box it shows the keyboard. Now If user tap and hold on text box it shows a popup menu. Now while keyboard and pop up are being displayed user scrolls the view. At this time it shows pop up over the keyboard which I need to hide.
    I tried setMenuVisible of UIMenuController when popup rect and keyboard rect intersects each other on viewDidScroll but it didn't help me.
    Any clues will help a lot.
    Thanks.

    You are more likely to get an answer if you post programming problems to the Developer forum. This forum is intended for normal user level problems.

  • HT5463 how i can block particular number from my contacts list

    how i can block particular number from my contacts list please guide me because even true caller software is also not supporting iphone

    As Ocean20 said, there is no official function that does this built in. What you could do however is to find an app that mute calls that come from "blocked" numbers.

  • How to hide particular field in sm30

    Hello Experts,
    I have created one transparent table with 5 fields. In that I want to hide one particular field when accessing that table in sm30. How to achieve it? I tried using module pool but no use and also searched hide and invisible properties but those are in disable mode. Very thank if any one gimme the solution.
    Regards,
    Harish

    1) Create maintenance view to this table
    2) in maintenance view change mode -> in view flds tab-> fourth column maintenance attribue - here you give H and generate table maintenance to this view. Then the field you hidden will not be visisble in sm30 for this maintenance view.

  • How to hide display details in sap gui and create ad-hoc request in UWL?

    Hi,
    how to hide display "details in sap gui" and "create ad-hoc request" in UWL?
    Please telme the step-by-step procedure to hide "details in sap gui" and "create ad-hoc request".
    Thanks,
    Rashmi

    Hi,
    Thanks for the information. It was very helpfull.
    Can you please tellme where can we fine UWL iView? I tried to find this out in two ways.
    1) Portal Content -> Content Provided by SAP -> End User Content -> Standard Portal Users -> Views -> com.sap.coll.iviews -> Universal Worklist (finally i got this iView). Here i dint find any property called "List of UWL Actions to exclude". In the link which you had given, its written that we can modify the iView and add the name of the actions under the Actions to exclude from the UWL property.
    Which iView do we need to modify and where can i find that property?
    2) I downloaded the xml file and then tried to find this property "List of UWL Actions to exclude" or " Actions to exclude from the UW". But i couldnt find both the properties in xml file.
    Thanks,
    Rashmi

  • How to hide repeated details using SQL Query?

    How to hide repeated details using SQL Query?
    For Ex:
    ------------------------+
    DEPTNO| ENAME | JOB |
    ------|-------| --------|
    10 | JAMES | MANAGER |
    10 | BLAKE | CLERK |
    10 | FORD | SALESMAN|
    20 | SCOTT | MANAGER |
    20 | ADAMS | CLERK |
    20 | KING | SALESMAN|
    ------------------------+
    How we can display the above details in the following way?
    ------------------------+
    DEPTNO| ENAME | JOB |
    ------|-------| --------|
    10 | JAMES | MANAGER |
    | BLAKE | CLERK |
    | FORD | SALESMAN|
    20 | SCOTT | MANAGER |
    | ADAMS | CLERK |
    | KING | SALESMAN|
    ------------------------+
    Thanks Advance

    Hi,
    you can use BREAK ON DEPTNO in SQL*Plus or use LAG.
    SQL> ed
    Wrote file afiedt.buf
      1  select nullif(department_id
      2                , lag(department_id) over (partition by department_id order by last_name)
      3         ) dept_id
      4  , last_name, job_id
      5*  from employees where department_id in (30,50) and rownum <=10
    SQL> /
       DEPT_ID LAST_NAME                 JOB_ID
            30 Baida                     PU_CLERK
               Colmenares                PU_CLERK
               Himuro                    PU_CLERK
               Khoo                      PU_CLERK
               Raphaely                  PU_MAN
               Tobias                    PU_CLERK
            50 Fripp                     ST_MAN
               Kaufling                  ST_MAN
               Vollman                   ST_MAN
               Weiss                     ST_MAN
    10 rows selected.

Maybe you are looking for

  • Disable or Hide Online Support menu option from: Reader, Acrobat Standard and Pro XI 11.0.2

    Hi, I'm trying to make a custom installation for 3 applications: Adobe Reader XI 11.0.2, Acrobat Std. and Pro XI 11.0.2  and most of the options that I wanted to hide are done with the Customization Wizard but I can't hide Online Support. I didn't fo

  • Purchasing external firewire drive to work with Canon HV-30/MacBook Pro

    I want to purchase an external firewire drive to run FCE4. I have a Canon HV-30 (Vixia). I have read that external FireWire drives do not work well with Canon DV cameras? Is this true of the Canon HV cameras? and if so, has anyone had success with a

  • Quicktime Title Bar - Two help menus ?

    Hi In the Quicktime Title bar I have two help tabs ? How do I get rid of one please? Regards Nick.

  • X1 noisy keys

    Hi, I bought me a X1 and so far I am quite happy with it on day 1. However, two of the keys are somewhat noisy and I am wondering if and how I could fix it. The 'w' key makes quite a loud click noise once it is depressed. The sound is not there if pr

  • Disc won't insert into Superdrive

    I noticed recently that when trying to put a disc into my macbook, it was very hard to insert the disc. It still went in, but took a significant amount of force. Once it get in far enough, the drive started making noise and trying to accept the disc,