How to get accept or decline a call

How can I get my phone set to where it says to answer or decline a call

You only have the option to Accept or Decline if the phone rings while it is unlocked/you are using it. Otherwise, you will just have to hit the volume or lock buttons to silence the ringer.

Similar Messages

  • Does apple allows apps to accept or decline phone calls ?.

    Hi,
    I want to know, Is it possible to accept or decline phone calls automatically through the app on the user's behalf without user interaction ?

    Absolutely not possible!
    The user controls the telephone directly.  Apps can only make outgoing calls after confirming the call with the user via an alert.

  • How do I accept or decline a calendar invitation in iOS8 without sending a response?

    This specific scenario is Exchange 2013 and iOS8.
    I want to be able to accept/decline/tentative in response to a calendar invitation from my iPhone without sending a response to the inviter.
    I do not think Exchange probably has anything to do with it, but that is the set up.
    Thanks!

    Decline a call and send it directly to voicemail. Do one of the following:
    Press the Sleep/Wake button twice quickly.
    Press and hold the center button on your headset for about two seconds. Two low beeps confirm that the call was declined.
    Tap Decline (if iPhone is awake when the call comes in).
    Respond with a text message instead of answering. Tap Message and choose a reply or tap Custom. To create your own default replies, go to Settings > Phone > Respond with Text, then tap any of the default messages and replace it with your own text.
    Remind yourself to return the call. Tap Remind Me and indicate when you want to be reminded.

  • How to get the debug sqlserver procedure calling from powerbuilder

    How to get sqlserver debug while calling   the procedure from PowerBuilder. Please can you help
    Many Thanks
    Pol

    You are better off doing this through the native SQL server tools.  You can debug your PB code to find the variables being sent to the stored proc (if any) from PB and then use them in SQL Server Management Studio or similar.

  • How to get info about web service caller inside Web Service

    Hi..
    I want to know that can we get info about Web Service Caller inside called web service..
    Info Like IP Address, User Id, User Name
    Regards,
    Ajay Sharma

    Hi,
    I tested following code using JDevloper 11g
    @Resource 
        WebServiceContext wsc;
        @WebMethod
        public String webMethod() {
                    MessageContext msgCtxt = wsCtxt.getMessageContext();
            HttpServletRequest req = (HttpServletRequest)msgCtxt.get(MessageContext.SERVLET_REQUEST);
            System.out.println("Client IP = " + req.getRemoteAddr());
            return req.getRemoteAddr();
        }It is giving me IP address but when i tested this web service from another computer there also it is giving my machine address instead of the machine IP from where the web service is called.
    What is wrong in my code ?
    Regards,
    Ajay
    Edited by: Ajay Sharma on Dec 31, 2012 1:06 PM

  • How to get the values from form calls in user exit?

    Hi all,
    I am not getting a specific value readily in an user exit.
    ?Can any one tell me how to find what are the fields,tables available in various form calls(visible while debugging) in an user exit.
    For example sapxkl is one ofthe callls...(sapxkl)<table>[] will hold some data.how to find what r the values available for <table>.
    Thanks.
    Edited by: sanjay_ask on Apr 16, 2010 10:43 PM

    HI ,
    Use this line of code
      field-symbols: <l_fs> type any.
      data: l_value type char20.
    Get Plant
      l_value =  '(SAPLCEI0)GV_WERKS'. " Here give the program name and variable name
      assign (l_value) to <l_fs>.
      v_werks = <l_fs>.         " Instead of V_werks use you internal table
    Thanks
    Subhankar

  • How to get the root class in call heirarchy

    Hi,
    Is anybody have some idea regarding the getting name of a class whose, main method was called at the time of begining. In other words if we say, how can we get the invoker class of a java program with multiple level of inheritence.
    Regards

    DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance();
         DocumentBuilder db=factory.newDocumentBuilder();
         Document doc=db.parse(new File(ur xml file"));
         Element root=doc.getDocumentElement();
         System.out.println("root "+root.getNodeName());

  • How to get the XML Payload of called process from calling process?

    I have two SOA processes say process A and process B.
    Process B is called by process A.In process A I, am using the getRequestMessage() method in Java code to get the XML payload of process A.
    But i want the XML payload of process B in process A.How can i achieve it?

    Doug,
              I used the property loader method but I could not load the limits of any sub sequence call calling an external sequence file.
    I took the FlowRate_test.seq example from the NI Example folder "C:\Documents and Settings\All Users\Documents\National Instruments\TestStand 4.2.1\Examples\PropertyLoader\LoadingLimits\LimitsFromExcelFile\UsingCVI". I created a sequence called PumpTest.seq in the same folder path. I then moved the Pump Test step from the FlowRate_test.seq to the PumpTest.seq. Now created a sequence call in the FlowRate_test.seq and called the PumpTest.Seq as the module path. When I execute the FlowRate_test.seq , I get the error as shown below:
    Attached is the Flowrate_Test.seq and the PumpTest.seq which should be there in the folder path "C:\Documents and Settings\All Users\Documents\National Instruments\TestStand 4.2.1\Examples\PropertyLoader\LoadingLimits\LimitsFromExcelFile\UsingCVI".
    Let me know whether I am doing something wrong in this method. 
    My idea is to alter the runstate variable High and Low of Pump Test in the PumpTest.seq and then run the Flowrate_Test.seq.
    Attachments:
    PumpTest.seq ‏6 KB
    FlowRate_test.seq ‏11 KB

  • How to get rid of the missed call notification banner? - galaxy s3

    SAMSUNG GALAXY S3
    Has anyone found a way to get rid of - that is, keep it from EVER being displayed -  the missed call notification banner on the lockscreen?  I've tried everything I can think of short of getting a different phone ... a third party app worked perfectly until we were "blessed" with KitKat in the most recent software upgrade.

        Hey mayor360, I know that would concern me a bit too having my missed call notifications being shown while my device is locked. I have done some reasearch on my end and have found that for many users have been using 3rd party applications just as you have. If after the update your specific application started to not function we can try to reset the device to ensure there are no software issues and then install the application once more. If you'd like to give the reset a shot you can click this link to see how http://bit.ly/1pphu6w. This step will erase all the information on the device, so you want to make sure the device is backed up before proceeding. To backup your device you can simply download our Verizon Cloud application in the Google Play Store. Keep us updated. -AdamG_VZW

  • SSL client authentication: how to get the cert used in call?

    Hi !
    I'd like to authenticate my clients based on their certificate. Unfortunately, there doesn't seem to be an easy way to get the client certificate that was used for the current method call.
    I am thinking of something like this:
    SomeClass dosomething(param a, param b) {
    RemoteUser ru = getUserFromCert();
    if (ru==null) return;
    ....do the job....
    SomeOtherClass dosomethingelse() {
    ....same thing
    RemoteUser getUserFromCert() {
    Principal pr = RMIContext.getRMIContext().getSSLSocket().getSSLSession().getPrincipal();
    Is that the way to do it?
    What do I need to implement to get that getUserFromCert method going?
    Has anyone done that before?
    Thanks for any help,
    ken

    Thanks for your reply. I'd like option (b) best as well. But I think I read somewhere that the HandshakeCompletedListener is called asynchronously? Would be bad if it'd be called after a call has been handled.
    I did some more research and realized I might as well use JMX. JMX has authentication included and does remote method invocation just like RMI. There even seems to be a so called JMXMP connector which supports client authentication by certificate, which is exactly what I want. I'd probably have to rewrite some parts but it seems to be an elegant solution.
    Am I right?

  • How to get phone to list missed calls when phone i...

    ive a nokia 5210. When my phone is off and i get calls i never know because when i switch it on it doesnt tell me ive missed calls. I know on my other phone which is and updated model it does list, so why doesnt the 5210.
    Ive tried looking at call divert but when i try to activate divert when unanswered it wont let me
    any advice

    You've had a phone that lists missed calls from when the phone was switched off?
    What phone, what network?
    I'm pretty sure there's no way of making your phone show you missed calls unless the calls were missed when the handset was on.
    About the diverting calls - where are you trying to divert to? If you're on Pay & Go some networks only allow you to divert to voicemail...
    We need more info lol
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • How to get information about connections and calls?

    Hi everyone,
    I would like to know if there's a way to get informations like time spent and bytes transfered from connections* and callings made from the cellphone, not just from a midlet application?
    * Any type of connections like WAP, SMS, GPRS.
    tks

    As far as getting the time it takes, as i've previously seen responded to this type of problem you can get the time before and after the event that took place and do a subtraction to calculate the time it took.

  • UCCE 7.5 how to get BHCA and Average Call Handle time?

    Hi everybody,
    I'm trying to do an audit of the existing UCCE system.
    Can someone please tell me how to get the BHCA and Average Call Handle time for agent?
    I did a SQL query against the CallTypeHalfHour table for all the entering Call Type but I'm not sure that's the right BHCA.
    Thanks in advance,
    Best Regards,

    Hi again Geoff,
    Before closing this thread, I'm curious about your query against TCD for average handle time.
    Here's mine using Skill_Group_Half_Hour
    SELECT
        SUM(HandledCallsTalkTimeToHalf) AS TalkTime,
        SUM(IncomingCallsOnHoldTimeToHalf) AS HoldTime,
        SUM(CallsHandledToHalf) AS HandledCalls,
          AHT =
                CASE
                WHEN SUM(CallsHandledToHalf) > 0 THEN (SUM(HandledCallsTalkTimeToHalf) +SUM(IncomingCallsOnHoldTimeToHalf)) / SUM(CallsHandledToHalf)
                ELSE 0
                END
    FROM t_Skill_Group_Half_Hour
    WHERE DateTime between '02/01/11 00:00' and '02/28/11 23:30'
    Besides, can you please also tell me how to get the Average Waiting Time (time before get answered by an agent) ?
    Thank you in advance, Geoff,
    Best Regards,

  • TS3406 My iPhone 4S will not ring. It comes up on screen to accept or decline. How do you get rid of that so it rings and just answer the phone

    My iPhone 4S will not ring when a call comes in. It comes up on the screen to accept or decline. How do you remove that so it will ring and answer a call normal

    See Here...
    Troubleshooting applications purchased from the App Store
    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Try this First... You will Not Lose Any Data...
    Turn the Phone Off... ( if it isn’t already )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    Turn the Phone On...
    If that does not help... See Here:
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • How to get call assistant working again??

    I just manged to get caller id working on the tv's again by this procedure
    http://forums.verizon.com/t5/Home-Phone-Landline-or-Digital/How-to-get-Caller-ID-on-TV-working-again...
    Is there some similar procedure that I can perform to get VCA working again.  Ever since we got power back the call register shows new call date 10/21/2011 and vm's date 3/2/2011.  They never update and caller id has apperntly ceased working.
    Of course it could be because I get the message signon failed and it shows as offline, however I know of no way to retrieve my password as the forgot id/password button just goes to a general search function that returns me 46,400 answers! - a very helpful feature and another fine example of poor QA testing of the product.
    Anybody have any hints on how to get it going again?

    WOW, what a mess this is.
    I tried logging in to the online VCA client on another machine and found it would not accept the credentials that I was using on the first machine.  Then went to the VCA page on the the Verizon web site.  When I logged on there with my VCA credentials it told me that the credential check had been changed to use the SSO id for MyVerizon - guess that change was made at the same time that the id on my forum access was changed. 
    However I still cannot logon to the VCA pc client with those credentials on the second machine nor on the first machine.  After trying my SSO credentials on the first machine I reverted back to the credentials that were giving me the erroneous information and now find that I can no longer use thos either.
    A well controlled migration!!

Maybe you are looking for

  • EXPERT DAY REQUEST!!!!! Laserjet M602 postscript feature values (specifica​lly, "setpagede​vice")?

    Pasted previously on the Community Home/Printing and Digital Imaging/Printers - LaserJet forum but thought I'd take advantage of the "HP Expert Day" and so am copying the posting on the "printer and all-in-ones" board: I have just spent two hours try

  • Sony NSZ-46GT1 Internet TV - Home Theather

    I have purchased a Somy smart TV with Google and was wondering what Home Theather System I should purchase.   Blue Ray player / no Blue Ray ,  Stay with Sony or go with something different ?  Any help out there ?

  • Problem with Gmail "unread mail" in OSX mavericks

    Since updating to OSX Mavericks (and I installed all available upgrades/patches as they came out) I have had a problem with getting my Gmail to sync across various devices. I have a macbook air as well as the iMac, ipad and iphone. The problem is tha

  • Red Hat Enterprise 5.2 on UCS B200 M1

    We need to install Red Hat Enterprise 5.2 on UCS B200 M1, but could not find the driver for Qlogic CNA M71KR-Q. Any pointers or suggestions?

  • ACE Preparation

    I'm thinking of taking the ACE for Captivate and wondered if anyone had some advice on where to go to review for the exam or take additional training. Susan