Pressing star (*) cancels the current call

We just installed a PAP2T VOIP adapter connected to our Linksys Wireless-G broadband adapter. Everything works great except that during a call pressing the star key (*) cancels the call. This is a critical problem because the star key is frequently used to access various menus when dialing into services such as banking, conferencing systems, etc.  Taking the PAP2T adapter out of the picture solves the problem (e.g., hooking up a Siemens VOIP-adapted phone system directly to the router), so it would definitely seem to be the PAP2T.
How can we solve this ASAP??  Thank you!!!

AFAIK, the PAP does not interpret DTMF during a call.  Possibly, there is a problem with RFC2833 setup, etc.  Try setting DTMF Tx Method: InBand.  If that doesn't help, see if a softphone configured like the PAP shows the trouble (the Siemens might not fail because of different protocols, etc.)  If the softphone does not have the problem, you might try setting SIP Debug: full and Debug Server: <your PC IP>.  Then use Wireshark to see what happens when you press *.

Similar Messages

  • Is The Current Called Form Running in Query Only Mode?

    How can identify the current called form is running in either QUERY_ONLY / NO_QUERY_ONLY MODE progrmatically?

    You can use :system.form_status to check for this. Be aware that this can change quite frequently throughout navigational processes both visibly and "behind the scenses"
    n

  • Get info about the current call

    I need a solution (eg ANE) for information about the current call - event of success, of duration, of ending.
    Is that possible?

    thx,
    the example below shows some basic information.
    Display myDisplay = Display.getDisplay(this);
    Displayable dis = myDisplay.getCurrent();
    int high = dis.getHeight();
    int width = dis.getWidth();
    boolean isCol = myDisplay.isColor();       
    int nubCol = myDisplay.numColors();more detailed information about model, aren't available through the standard api, on blackberry's there some restricted apis that provide these device-type and other detailed information...
    for more basic information, just look at the class-methods from display and displayable...
    mmkl

  • How to find photos tagged with "5 Star" in the current album

    I have just migrated a large library from Aperture, I can see and use the star tags "5 Star", "4 Star", "3 Star", etc. However, I do not seem to be able to search for photos with these tags localised to the current album that I am viewing.
    For example, I have an album iPhoto Events > 2015-04 where I have imported photos from this month. I have tagged all the photos as I normally do in Aperture including "5 Star" tag. Now I want to see all the photos with "5 Star" and share them onto iCloud Photo Sharing. If I type "5 Star" in the search box, it shows me all the thousands of photos with this tag!

    I guess that since the search function is not as powerful as Aperture's this will have to do until they add back all the functions from the old programs. I will try to do a last 30 days + 5 Star album for the time being. Thank you for your suggestion

  • What is the shortcut for "stop the current downloading Page" i.e. the page which is loading but it is not completely loaded and i want to cancel this.

    shortcut foe cancelling the current loading page

    You should be able to cancel the page loading with the ESC (Escape) key on the keyboard.
    Current Firefox versions use a combined Stop/Reload/Go button that is positioned at the right end of the location bar.
    *During the page load process it shows as a Stop button and after the loading has finished the button is changed to a Reload button.
    *If you type in the location bar then that button becomes a Go button.
    *Middle-click or hold the Ctrl key and left-click the Reload button to duplicate the current tab to a new tab.

  • How to cancel the background job processing in ABAP programming?

    Hi,
    I have a requirement where i need to cancel the job depending on some constraint. My code is something like this:
    Select some data from the table.
    if sy-subrc = 0.
    Do nothing.
    Else
    Cancel the job
    call function 'BP_JOB_ABORT'
      exporting
       jobcount                         = number
        jobname                          = name
    EXCEPTIONS
       CHECKING_OF_JOB_HAS_FAILED       = 1
       JOB_ABORT_HAS_FAILED             = 2
       JOB_DOES_NOT_EXIST               = 3
       JOB_IS_NOT_ACTIVE                = 4
       NO_ABORT_PRIVILEGE_GIVEN         = 5
       OTHERS                           = 6
    The above code is cancelling the job but it is throwing an exception called CX_SY_DYN_CALL_PARAM_MISSING because i dint pass job count. How can we find the job count of next job that is going to run? Or How to handle the exception which it is throwing. Even if i try to handle that exception something like this:
    TRY
    call function 'BP_JOB_ABORT'
      exporting
       jobcount                         = number
        jobname                          = name
    EXCEPTIONS
       CHECKING_OF_JOB_HAS_FAILED       = 1
       JOB_ABORT_HAS_FAILED             = 2
       JOB_DOES_NOT_EXIST               = 3
       JOB_IS_NOT_ACTIVE                = 4
       NO_ABORT_PRIVILEGE_GIVEN         = 5
       OTHERS                           = 6
    RAISE EXCEPTION TYPE CX_SY_DYN_CALL_PARAM_MISSING.
    CATCH
    CX_SY_DYN_CALL_PARAM_MISSING.
    ENDTRY.
    It avoids the exception but it doesnt cancel the job.  I even tried with function modules like JOB_OPEN
    JOB_SUBMIT,BP_JOB_SELECT,BP_JOB_ABORT and tried to build some logic using status overview table (TBTCO) and TBTCP (Jobstep overview table).
    Can someone suggest me the right way to write this program ?
    Thanks in advance.
    Rashmi

    Hi,
    Problem is solved.
    Create an background job with 2 steps. The first step in the background job calls the program ZBACKJOB_STEP1.  In the variant we have a wrong material number
    If the material number is not found in Mara, the next step in the job should not get executed and the job should get cancelled..
    In the above posts i had asked how do I get the job count of the job that is currently triggering the program at the runtimeu2026..If u see the below code uu2019ll get to know.. We have to use the standard structure TBTCM which captures the properties/characteristics of the job.
    REPORT ZBACKJOB_STEP1.
    TABLES: MARA,TBTCM.
    PARAMETERS : MATNR TYPE MATNR.
    START-OF-SELECTION.
      SELECT SINGLE * FROM MARA WHERE MATNR = MATNR.
      IF SY-SUBRC IS INITIAL.
        WRITE / : 'This is the material selected on the selection-screen' , MARA-MATNR.
    ELSE.
            CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
          IMPORTING
            EVENTID                                    = TBTCM-EVENTID
            EVENTPARM                             = TBTCM-EVENTPARM
            EXTERNAL_PROGRAM_ACTIVE = TBTCM-XPGACTIVE
            JOBCOUNT                                = TBTCM-JOBCOUNT
            JOBNAME                                  = TBTCM-JOBNAME
            STEPCOUNT                              = TBTCM-STEPCOUNT
          EXCEPTIONS
            NO_RUNTIME_INFO                    = 1
            OTHERS                                     = 2.
        IF SY-SUBRC = 0.
          CALL FUNCTION 'BP_JOB_ABORT'
            EXPORTING
              JOBCOUNT                                     = TBTCM-JOBCOUNT
              JOBNAME                                       = TBTCM-JOBNAME
            EXCEPTIONS
              CHECKING_OF_JOB_HAS_FAILED  = 1
              JOB_ABORT_HAS_FAILED              = 2
              JOB_DOES_NOT_EXIST                   = 3
              JOB_IS_NOT_ACTIVE                      = 4
              NO_ABORT_PRIVILEGE_GIVEN       = 5
              OTHERS                                         = 6.
          IF SY-SUBRC <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
    Regards,
    Rashmi

  • Recently I have added a new icloud account for my iphone but now my email is hacked and I cant complete the verification process.How to cancel the verification in my phone?  plsz help me.....

    Hi
    Recentky I have added a new icloud account to my iPhone 5s but my email is now hacked! so I can't complete the verification procedures. How to cancel the current verification process????plszz help me...

    Ah thanks Razmee however there is NO option to delete the iCloud account in settings!

  • SCCM 2012: F8 debug widow not working (At-least not visible) after entering into the "Currently installed Windows 7 Image": F8 works in winPE

    F8 debug widow not working (At-least not visible) after entering into the "Currently installed Windows 7 Image"
    F8 option turned on in the boot image.
    F8 debug window works in Windows PE.
    F8 debug window does not show-up on F8 key-press after entering the 'Currently installed Windows 7 Image" all the way to the end of the task sequence.
    But after a 'Restart Step' (and if F8 was pressed) the Task Sequence tends to pause indefinitely as if the
    F8 debug screen is open in the background.
    I am using SCCM 2012 SP1 (CU 1 is
    not an option at the moment).
    Any ideas as to how I could get the debug F8 option back?

    There have been a couple reported occurrences of this (or something similar) to my knowledge with no resolution in the forums. Your best bet may be to open a case with CSS.
    Also note that if you were going to do a CU, why would you pick CU1 instead of CU4? And, can I ask why it's not an option out of curiosity?
    Jason | http://blog.configmgrftw.com

  • Incoming Call Cuts Off Current Call

    Whenever a call comes in while I am speaking on the phone, the current call automatically cuts off and the new call starts immediately. I have checked the call settings but doesn't seem to be anything there that can help.
    How do I prevent this?
    Solved!
    Go to Solution.

    Hi and welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    Do you have smart call handling enabled under Settings -> Personalisation -> Motion? If this is enabled and you move the phone away from your ear to check who's calling and then put it to your ear again the second call will be answered.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • How do you add people to the skype call already?

    How?

    Wow, thanks guys! That's been bugging me for ages! A little more detailed How-To:On the current call screen (iPad & iPhone/iPod), hit the little options button next to the other call buttons (it is a circle with 3 horiontal lines inside it), then hit show messages. From there, type: /add username   -where username is replaced with their skype name.

  • HOW DO I GET RID OF THIS MESSAGE, PLEASE???Are you sure you want to navigate away from this page? Press OK to continue, or Cancel to stay on the current page.

    everytime I go to leave a page or click on something this, this message appears and I cant find where to disable it. It just started today. Never did it before.
    Are you sure you want to navigate away from this page?
    Press OK to continue, or Cancel to stay on the current page

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • How do I stop "Are you sure you want to navigate away from this page? Press OK to continue, or Cancel to stay on the current page." from comeing up. It is new. Just started doing it yesterday morning.

    I have used FireFox to play the Game Kingdoms Of Camelot, a facebook game. I also have Grease Monkey and a 3rd party add on. I leave it running 24/7 to gather food in the game for my army. It has run smoothly for 6 mo. Yesterday 2/04/11 in the morning it started asking for conformation when the page refreshed. i want to know how to stop this Box from comeing up it will not continue without refreshing and will not refresh untill th question is answered. It says "Are you sure you want to navigate away from this page? Press OK to continue, or Cancel to stay on the current page."

    You're not going to stop it, and out here, what's illegal?
    What it boils down to is a matter of ethics, and it's wrong. But the web
    techies build this feature into their sites because they know somebody
    is going to fly in off an engine like Google or MSN. And take something,
    like a picture. Without stopping in and signing up or something else.
    But what if I or you is out collecting stamps or avatars or wallpapers,
    and have already taken a quiz, or signed up for a product? I've already
    done that...but the site developers who use this ingenious(hijacking)
    software don't see it that way, and don't care if you just got a computer
    and want to pick up something here or there. Those sites don't get
    anything when you visit and don't leave your number. I don't what
    these 19 tracking cookies are for, do you?
    "A liar should have a good memory" Scottish saying

  • I connect my iphone 4 to my itunes and when I press update to get the new iOS 7 software, it says "This version of iTunes (10.6.3) is the current version" and it tells me to press ok. Why is my phone not updating??

    My phone says it is connected to itunes and beside the update button it says "a newer version of iphone software is available (version 7.0)...." but when I press 'update' a box pops up that says ""This version of iTunes (10.6.3) is the current version" and then I press okay and nothing else happens. I'm getting frustrated. if anyone can explain to me why I can't update please tell me! Or else I'll have to call up Apple I guess.
    thanks!

    You have answered your own question:
    "requires 10.6.3 or higher"
    " i upgraded my itunes to 10.5 "
    You need itunes 10.6.3 or later.

  • Since updating my Iphone to ios 8, my hands free in the car (Radiosat) is not working correctly.  The phone pairs ok with car, and my phone is recognised but then it cuts off the radio and says that I'm in a call, I can't cancel the call or do anyth

    Since updating my Iphone to ios 8, my hands free in the car (Radiosat) is not working correctly.  The phone pairs ok with car, and my phone is recognised but then it cuts off the radio and says that I'm in a call, I can't cancel the call or do anything.  I have taken my car to my local dealer but they say the Radiosat is working ok?

    Hello there stidhambr15,
    I was researching the issue you are having and recommend a couple of things. First it might be a good idea to reset the device following iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting found here http://support.apple.com/kb/ht1430
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't quite get the device going again, I recommend restoring the device.
    iTunes: Restoring iOS software
    http://support.apple.com/kb/ht1414
    Might even be a good idea to turn off the phone, reseat the SIM card, and turn it back on.
    iPhone and iPad: How to remove the SIM card
    http://support.apple.com/kb/ht5163
    iPhone 4 (GSM model)
    iPhone 4S
    Cheers,
    Sterling

  • How to cancel the release of the current segment definition-WE31-IDOC?

    Hi Experts,
    Am trying to add a new field to a existing custom segment type/defination. This segment type is already using in the system.
    So, went to WE31 and pressed the PENCIL button for changing/adding my new field, but am geting the below message,
    (1)pls let me know that does it mean CANCEL the release (Menu>Edit>Cancel Release)? if so, Can I go ahead and use this CANCEL the release? do I need to take any pre-requisites as this segment is already relased?
    (2)But, you know there is another option saying 'ADD VERSION-Shift+F5', if I choose this option, its also taking me to a screen where in I can add new fields so which is correct option for me is it either (1) or (2)?
    Current segment definition Z_segment_defination can no longer be changed
    Message no. EA666
    Diagnosis
    The current segment definition Z_segment_defination of segment type Zsegment_type is already released.
    System Response
    The segment definition cannot be changed.
    Procedure
    You can either add a new segment definition or cancel the release of the current segment definition.
    Thank you

    so i tried to CANCEL the release by goiong menu pathEdit-->Cancel the release, but am getting the below error, How to fix it to add my new field?
    Error while resetting release of segment
    Thank you

Maybe you are looking for

  • Select of database takes a lot of time

    Dear all, myabe its a simple question but it is not for me. I do select the FAGLFLEXA table (standard table) and it takes a lot of time. here my selection: select * from faglflexa into table gt_flexa    where    docnr  in   s_belnr     and     rbukrs

  • 3D Cube Import from Photoshop Problem?

    Hi Everyone. I am trying to import a 3d cube wrap from PS into AE. It does import, but rather than being a 3d cube, it remains two dimensiona. I did convert to a 3d layer, but that still flattens the cube when I try to spin it. Thanks Roman

  • Add class to web dynpro

    hi i have a class ans i wont to add him to the program how & where i do that? regards

  • Alignment problems in iView contents

    Hi All, I have 2 KM Navigation iViews (A and B) which use a custom layout set. This layout set is developed using "ConsumerExplorer" as the base. Each of these KM Navigation iViews display some external links. But, the problem is that, both the exter

  • Backup to external drive using iTunes 8?

    iTunes offers a new way to back up the iTunes library. I have 24000 tracks which would need 29 or so discs. I would prefer to use my external hard drive so how would I do this and what about backing up the incremental changes to my external hard driv