Call disconnected while transferring the calls

Hi All
My proplem is, when I call from my CME to an other PABX, the call was established successful and  call transfer another extension  that time call disconnected. 
​internal transferring  not disconnecting   all PSTN line connected through FXO port  
please send me the ex:
 please check the attached show run  and update ASNP
Thank you

Hi.
Can you please activate a debug voice ccapi inout and try a call transfer?
Please post the output here.
Thanks
Regards
Carlo

Similar Messages

  • My iphone 4S has problem in making and receiving the calls. While making the call , call fails and netwrok disappears. Like wise no voice is heard for incoming calls. This happened after return from the overseas travel.

    My iphone 4S has problem in making and receiving the calls. While making the call , call fails and netwrok disappears. Like wise no voice is heard for incoming calls. This happened after return from the overseas travel.

    Hello SamSax
    Check out the assist page below for troubleshooting call connectivity.
    Calls and connection issues
    http://www.apple.com/support/iphone/assistant/calls/
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Blackberry 9320 gets hang while receiving the call

    Hello Team,
    I have took th Blackberry just 4 days back and i am facing a problem already and it was my dream to buy the blackberry but after buying just after 4 days my cell hangs while recieving the call, only trackpad works and i cannot unlock the phone as well and i have to remove battery and restart the phone to make it work please suggest me what has to be done to make my phone to work properly do i have to take it servise centre or any suggestion which i can do to solvethis issue.... Blackberry is my dream phone and this bug has dissapointed me a lot just after 4 days after purchasing i am facing the issue.. Please help me....
    Thank you,
    Lohith

    Hey lohithkavali,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    I would suggest reloading the software and then test the issue prior to restoring any data.  Follow the steps in this KB article: www.blackberry.com/btsc/KB11320
    Let me know if you have any more questions.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • HT4623 I phone 5s with 7.0.4 software I can not see the caller ID while on the phone for call waiting.

    I phone 5s with 7.0.4 software I can not see the caller ID while on the phone for call waiting. Any help???

    The following may help: http://support.apple.com/kb/TS4268

  • How can i extend the table control while transfering the data

    hi
    how can i extend the table control while transfering the data.

    Hi,
    For table control we have to handle the page down (P+, or what ever function codes are assigned to that activity) activity with our coding.
    Just check out this code:
    This is the bdc to update the XK01 transaction code (Vendor Creation).
    Here we will use table controls for bankings. Here Iam sending the coding and text files.
    Coding
    REPORT zprataptable2
    NO STANDARD PAGE HEADING LINE-SIZE 255.
    DATA : BEGIN OF itab OCCURS 0,
    i1 TYPE i,
    lifnr LIKE rf02k-lifnr,
    bukrs LIKE rf02k-bukrs,
    ekorg LIKE rf02k-ekorg,
    ktokk LIKE rf02k-ktokk,
    anred LIKE lfa1-anred,
    name1 LIKE lfa1-name1,
    sortl LIKE lfa1-sortl,
    land1 LIKE lfa1-land1,
    akont LIKE lfb1-akont,
    fdgrv LIKE lfb1-fdgrv,
    waers LIKE lfm1-waers,
    END OF itab.
    DATA : BEGIN OF jtab OCCURS 0,
    j1 TYPE i,
    banks LIKE lfbk-banks,
    bankl LIKE lfbk-bankl,
    bankn LIKE lfbk-bankn,
    END OF jtab.
    DATA : cnt(4) TYPE n.
    DATA : fdt(20) TYPE c.
    DATA : c TYPE i.
    INCLUDE bdcrecx1.
    START-OF-SELECTION.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    filename = 'C:\first1.txt'
    filetype = 'DAT'
    TABLES
    data_tab = itab.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    filename = 'C:\second.txt'
    filetype = 'DAT'
    TABLES
    data_tab = jtab.
    LOOP AT itab.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0100'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-KTOKK'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'RF02K-LIFNR'
    itab-lifnr.
    PERFORM bdc_field USING 'RF02K-BUKRS'
    itab-bukrs.
    PERFORM bdc_field USING 'RF02K-EKORG'
    itab-ekorg.
    PERFORM bdc_field USING 'RF02K-KTOKK'
    itab-ktokk.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0110'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-LAND1'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'LFA1-ANRED'
    itab-anred.
    PERFORM bdc_field USING 'LFA1-NAME1'
    itab-name1.
    PERFORM bdc_field USING 'LFA1-SORTL'
    itab-sortl.
    PERFORM bdc_field USING 'LFA1-LAND1'
    itab-land1.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0120'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-KUNNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKN(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    cnt = 0.
    LOOP AT jtab WHERE j1 = itab-i1.
    cnt = cnt + 1.
    CONCATENATE 'LFBK-BANKS(' cnt ')' INTO fdt.
    PERFORM bdc_field USING fdt jtab-banks.
    CONCATENATE 'LFBK-BANKL(' cnt ')' INTO fdt.
    PERFORM bdc_field USING fdt jtab-bankl.
    CONCATENATE 'LFBK-BANKN(' cnt ')' INTO fdt.
    PERFORM bdc_field USING fdt jtab-bankn.
    IF cnt = 5.
    cnt = 0.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=P+'.  " Page down activity
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKN(02)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    ENDIF.
    ENDLOOP.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0210'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-FDGRV'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'LFB1-AKONT'
    itab-akont.
    PERFORM bdc_field USING 'LFB1-FDGRV'
    itab-fdgrv.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0215'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-ZTERM'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0220'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB5-MAHNA'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0310'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFM1-WAERS'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'LFM1-WAERS'
    itab-waers.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0320'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-LIFNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    PERFORM bdc_dynpro USING 'SAPLSPO1' '0300'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=YES'.
    PERFORM bdc_transaction USING 'XK01'.
    ENDLOOP.
    PERFORM close_group.
    **Flat files for the above code***
    Intial screen data file.
    1 63190 0001 0001 0001 mr bal188 b in 31000 a1 inr
    2 63191 0001 0001 0001 mr bal189 b in 31000 a1 inr
    Table control Data:
    1 in sb 11000
    1 in sb 12000
    1 in sb 13000
    1 in sb 14000
    1 in sb 15000
    1 in sb 16000
    1 in sb 17000
    1 in sb 18000
    1 in sb 19000
    1 in sb 20000
    1 in sb 21000
    1 in sb 22000
    2 in sb 21000
    2 in sb 22000
    Regards,
    Kumar.

  • The call was cancelled by the caller before the remote party answered

    Hi,
    We have a Lync 2010 Enterprise deployment in a single site with 2 FE and Mediation Server collocated.
    When dialling a number from a PSTN phone the call gets routed via our PBX/PBX Gateway/Mediation Server/FE Server to the desktop Lync client successfully.
    As soon as the user answers the call with the Lync client the call 'hangs' and terminates without hearing anything on either side.
    The snooper logs show:
    Error:
    SIP/2.0 487 Request Terminated
    Partial Content:
    User-Agent: UCCAPI/4.0.7577.4398 OC/4.0.7577.4398 (Microsoft Lync 2010)
    Ms-client-diagnostics: 52092;reason="The call was cancelled by the caller before the remote party answered"
    Content-Length: 0
    Please help?
    Vinkie

    What kind of gateway are you using to connect to your PBX and how?  What is your media set to?  G.711 μ-law or a-law?  I'd check media settings there as a starting point. 
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".

  • Error while transferring the document

    Hi Friends,
    We are getting an Error when we try to create a service confirmation.The error is an 'Error has occurred while transferring the document'.When we see in the transmission log it is telling inconsistent update flags.
    How can the error be removed?
    Regards,
    Jay.

    Hi Jay,
    Try doing this once again and go to Tcode SMW01 and try to locate your Bdoc. First it will be in yellow state and it will turn red (error).
    Once you get the error Bdoc, check the error messages in it (there is proper button on the top to get this). You might get the cuase of the error in Bdoc messages itself.
    If not, post me the Bdoc status and the Flow Context.
    Regards,
    Alin

  • Errors have occured while transferring the document into another system.

    Hi GURUs,
    Please help me to come out from this problem........
    An error has occured in the system YDQCLNT100 while copying the document
    Message no. CRM_ORDER_MISC 020
    Diagnosis
    Errors have occured while transferring the document into another system. Refer to the attached log for error messages.
    Transmission log
    Product  cannot be recoded for R/3 System YDQCLNT100 (Notification E CRM_ORDER_MISC 015)
    Product  cannot be recoded for R/3 System YDQCLNT100 (Notification E CRM_ORDER_MISC 015)
    Please suggest  something ASAP....
    i'll be highly Grateful to you.....
    Regards,
    Ankur

    Hi Gangadhar,
    Can you plz explain me elaborately, where should i check for partner function of the equipment and how this partner function is related to this issue.
    I think partner function will be there only for BP. Can you plz clarify me.
    Thanks in advance
    Ankur

  • How many calls are held in the call log for the iPhone 3g?

    How many calls are held in the call log for the iPhone 3g?

    Creating a separate CSQ is the way to do it. Keep in mind that depending on your error handling, a single request could still generate more than one call into the CSQ. You would want to look at the CCDR table for the call ID or write the ImplementationID into one of the Enterprise Data variables that gets stored to the DBA to act as a UID. 

  • My iphone 5C touch wont works some times , mostly during incoming call i cant take the call or some times password inputs wont works.

    My iphone 5C touch wont works some times , mostly during incoming call i cant take the call or some times password inputs wont works.

    Greetings naseem770,
    It sounds as if you are having an intermittent issue with touchscreen response on your iPhone. I would suggest that you troubleshoot using the steps in this article - 
    If the screen on your iPhone, iPad, or iPod touch doesn't respond to touch - Apple Support
    Thanks for using Apple Support Communities.
    Be well,
    Brett L 

  • The Gold Support line for DPS transfers the call to a disconnected line.

    The support line doesn't work right now. Selecting DPS Enterprise or Professional in the call tree brings you to a disconnected line.
    Not helpful.

    DPS line should be reachable now. If you would like a call back arranged, please PM me your contact details and the best time to reach you along with time zone
    *There was report of a call redirect problem on the DPS line over the weekend, we are working on a fix at the earliest.

  • Error while executing the call list maintenance from the UI ???

    Hello All
    I am using CRM 6.0
    I am want to open the call list maintenance  from the IC manager screen the system sues transaction launcher to open it, the URL link defined in the back end is :
    sap/bc/gui/sap/its/webgui/!?~transaction=CRMD_TM_CLDIST
    but when the system calls the transaction, I got the error:
    Transaction CRMD_TM_CLDIST?SAP-C is unknown
    Then I have the SAP menu
    Regards
    Jacopo Françoise

    Hi
    i think this transaction can be called only in SAP GUI.
    SAP has left some transactions (especially those for managers) in SAP GUI.
    Regards
    Radek

  • Disturbing sounds during the calls / impossibility to finish the call then

    Dear Apple,
    always when any message comes or alarm is set upetc and I am having a phonecall at this moment, always all these sounds are disturbingme during this call. And the biggest problem is to finish the call then – i cantclick on „Finish“ because of previously incoming notifications shown on thescreen. How to solve this situation? Is there any chance not to be bothered bysounds during the calls?
    Thanks for your help. Pavel

    Flip the ring/silent switch while on a call.

  • WE DEMAND CALL RATES BACK DURING THE CALL!!! 6.20....

    Hi
    this has been going for some time now, i reported this with Skype's second tier level support at [e-mail removed for privacy and security], i was being told that the DEVs will implement this very soon, this was May and August, YET this feature is not back.
    Can someone else email them there please? They are nice answeering back but not much done for this since 5 months+.
    I think is one of the MOST USEFUL FEATURES to have, that is when you call that in the window you will display call costs!
    I recently upgraded to the very latest 6.20.0.104 yet the feature is not YET back!
    I am quite disappointed and i think it's a technique so that people will not see what they are spending during the calls!
    Anyone with me? Let's keep this thread active until someone at Skype does something!
    thanks
    Gabrio

    It also annoys me that the call credit is no longer shown during calls.  This was a helpful feature in a previous version of Skype, especially when overseas or when calling mobile numbers.  As I top up the credit manually, its handy to know when one is reaching $0.00 while a call is in progress.
    Bring back the call $ meter
    [Removed for privacy]

  • How can I get caller id to announce the caller from my contact list?

    My old Motorolla and LG phones had a setting to speak the caller id before ringing.  It took the names from the contact list or if not there would just call out the phone number and then go to the ringtone.  Does the Iphone 4 not have this setting?  I can't believe this "smart phone" which does just about everything would not have this function.  What am I missing here?

    I do have an iPhone 4S.  It does not provide a talking caller ID.  I too I'm surprised that such a feature is not on the iPhone.  There seems to be an "app" for just about everything, but I've yet to find one that does this very simple function.  There are some apps out there that do provide a form of caller ID, but they seem to require too much setting up for something so simple.  I do have a work a round, but it is a poor subsitute for what we are both looking for.  I have set different ringtones for some people in my contact list, so when I hear the tone, I do know who is calling.  However, if you have a great deal of contacts, this method really would not work.

Maybe you are looking for

  • Multiple SAP GUI version on one computer

    Hi, I am using Windows XP, professional. Can I have multiple versions of SAP GUI e.g. 6.40 & 7.10 on one computer? thanks, B Patil

  • Enable to  run .exe file which is created from .air file  in windows 7?

    Enable to  open .exe file which is created from .air file which is created from adt command in windows 7 . for run .exe file :: The user must right click and select "Run as Administrator" for run successfully. so How to remove this above permission i

  • Supressing the detail rows in a query

    Hi All, I need to display only result rows for the queries and supress as all the details. I need to start the query with details suppressed and then if user wants he can drill down on details. Can I do it ? For some reasons using   free characterist

  • How to download older version

    sorry, developers, i seriously do not like the new look of Firefox. it is too convoluted to find anything in it. how do i download an older version of Firefox? i was smart enough not to upgrade one at work, and it works fine for me. thank you.

  • Should xdodelivery.cfg be documented in the 5.6.2 Users Guide?

    Should xdodelivery.cfg be documented in the 5.6.2 Users Guide or has the functionality changed? Dale