IVR and FAC codes

Hello,We are upgrading from a CM 4 with an IVR in the same box to CM 7 with the IVR now on it's own server. Currently our IVR script forces the user to enter an authorization code along with an outbound phone number to place a tandem call through the CM.Has any one been able to pass the authcode to the CUCM and have it appear in the proper field of the CM's cdr record? (FAC). Without an authcode from the user placed in the cdr field we cannot bill the call back to the user in our telemanagement system since the orig id shows the IVR pilot number as making the outbound call.BTW, the only purpose for this IVR is to allow remote workers to get to things like voicemail, auto attendants, security, internal extension, and to make tandem phone calls.  Billing for the tandem calls is what we are trying to accomplish.John

Interop and IVR should work...the question becomes whether the Fab OS version you have on the Brocade is supported for Interop mode 2 or 3. If they are in Open Fabric Mode, or what Cisco calls interop mode 1 I see no problems with an IVR integration. If they are running one of the newer Fab Os versions, you may run into interop issues. Here is the MDS interop guide from CCO, it has a section on Interop with IVR.
http://www.cisco.com/en/US/docs/switches/datacenter/mds9000/interoperability/guide/ICGuide.pdf
Here is the firmware matrix used for the Interop testing.
http://www.cisco.com/en/US/docs/storage/san_switches/mds9000/interoperability/matrix/Matrix.pdf
I hope that between these 2 documents you can locate your specific firmware and models, and determine if it was tested.
Also, just because a specific firmware is not mentioned there, does not mean that it will not work. Just means it was not tested. It's almost impossible to test each possible combination.
Hope this helps,
Mike

Similar Messages

  • PIN code and FAC for billing purpose

    hi all,
    We are configuring call manager (CUCM) version 8.6 so, at this point we are facing some issues on the functionalities:
    A user has to be having a pin code associated to his phone then an authorization code that allow him to call OFFNET calls,
    Now the user must have one code for private phone calls and one code for official calls for billing purpose
    This user has to be able to change his pin code himself, but so long as it is associated to his phone they will still know that
    His the one who made the call. In fact event the admin is not supposed to know these.
    Can anyone please give me any idea on how to go on this. because CMC and FAC do not meet these requirement
    Thank you

    Here's my guide: How to: Unlock System Lock PIN Code

  • Is there a way to add, delete or change a FAC code via CLI in CUCM?

    Hi everyone,
    I was wondering if it is possible to add, delete or change a fac code(or client matter) via CLI?
    I know how to do it via BAT tool, but I want to do it via CLI(if it's possible).
    I´m using CUCM 6.
    I'll really appreciate your comments.
    Thanks..
    Dave.

    There are no instructions n how to do this and we do not support doing any kind of changes to the DB via CLI unless instructed by TAC.
    If you still want to do so, read the data dictionary for your CUCM version and work your CLI queries, again, if anything happens and the DB becomes corrupted or you have undesired results, we won't provide any level of support.
    Previously I mentioned which are the supported methods for adding elements to the DB, I encourage you to use any of them.
    Sent from Cisco Technical Support iPad App

  • Substitution rule for Business place and section code

    Hello Friends,
    We have a business place and a section code. I want to write a substituion rule for vendor invoice for business place and section code.
    When i see in header, i am not find BUPLA and SECCO in header. I am finding them in line item. How do i get these fields in header segment. I tried substution rule in line item, but the tds is not deducted.
    Thanks
    SK

    hi SK,
      i am not understand your problem. Previously i face one problem regarding business place and section code. While booking invoices and advance payments the user forgets to specify business place or section code and some times he specifys wrong business place also. Basing on business place or section code we cant restrict the users because there is no authorisation object.
    i created one validation that if my business area is 1000. then substitute the business place field with section code.
    we have business place individual business area wise so i created this substitution.
    Regards,
    Sankar

  • How to Join the Developer Preview - (Fusion and Face HD)

    Hi,
    If you are would like to join the Kinect for Windows Developer Preview Program to access the weekly SKD updates please send us an email. The Developer Preview will allow you access to
    weekly updates which will include Fusion and Face HD and related samples.
    Please email
    [email protected] with the subject line:
    “DPP Invitation Request” to get your invitation.
    Our support team will process your request and send you an invitation to the preview program.
    Thank you!

    Hello,
    I'm currently working on a project where I need face and Hd face.
    As mentioned in the Kinect Jump Start, please add me to the access list of code samples for the face and
    HD face.
    Thank you in advance,
    Wassef.

  • What is difference between ADF Task Flow and Faces-Config - when delpoy ?

    What is difference between ADF Task Flow and Faces-Config? When I create navigation between pages with ADF task flow then the navigation don't work when I deploy my application to Weblogic 10.3. When I use default server then navigation works fine. With Faces_config in both situations all works ok - on Stanalone server and default.
    Where is the problem?
    Best regards!

    Shay, I don't use both faces-config and adf task flow! When I failed with task flow I tried faces-config.
    I have active on my weblogic - adf.oracle.domain(1.0,11.1.1.0.0). This is the right ADF? If yes then where is the problem?
    Best regards!

  • Wht is diff b/w sy-ucomm and ok code

    hi,
    what is diff b/w sy-ucomm and ok-code
    Regards,
    Rani.

    Hi,
    sy-ucomm is for doing the functions what the user wishes to do at that particular event. You use it in menus and other place . this mainly in using <pfstatus>
    ok_code is generally used in screen as of I have used. You will define the function in the screen. and you can use it in the main program.
    ok_code acts just as a temporary variable that stores the value of sy-ucomm.
    When user interacts with the screen elements, the function code that you have assigned is filled in the sy-ucomm field which is turn gets reflected in OK_CODE.
    In your ABAP programs, you should work with the OK_CODE field instead of SY-UCOMM. There are two reasons for this: Firstly, the ABAP program has full control over fields declared within it, and secondly, you should never change the value of an ABAP system field. However, you should also always initialize the OK_CODE field in an ABAP program for the following reason:
    In the same way that the OK_CODE field in the ABAP program and the system field SY-UCOMM receive the contents of the corresponding screen fields in the PAI event, their contents are also assigned to the OK_CODE screen field and system field SYST-UCOMM in the PBO event. Therefore, you must clear the OK_CODE field in the ABAP program to ensure that the function code of a screen is not already filled in the PBO event with an unwanted value. This is particularly important when the next PAI event can be triggered with an empty function code (for example, using ENTER). Empty function codes do not affect SY-UCOMM or the OK_CODE field, and consequently, the old field contents are transported.
    Diff bet OK-CODE and SY-UCOMM
    Difference Between SY-UCOMM and OK_CODE
    ok_code/ sy-ucomm usage in dialog program

  • From which table i will get PO tax amont and tax code name.

    HI all
    I"m giving date to develop one Z report.Where i will get the PO tax amonut(not condition amount).i need total TAX amount and TAX code..from where i can get these two??
    plz help me
    thanks
    ramesh reddy

    Hi
    for excise check table J_1IEXCHDR for header
    J_1IEXCDTL for item excise
    The Table name used to find the Tax Values are
    KOMV: Pricing Communications-Condition Record
    KONV: Conditions (Transaction Data)
    From the above tables you can refer the fields below.
    KAWRT
    KBETR
    Fetch the corresponding records based on the field
    KNTYP
    Search net you will get many threads on this

  • How to do selective delete of the GL a/c, BA and Co Code from the BWrequest

    Hi,
    How to do selective delete of the GL a/c, BA and Co Code from the BW request ??
    Regards,
    Vivek

    Cube or DSO?
    Cube - manage - notedown the req number - selective deletion - enter req number at REQ ID and give the selection parameters as you need(GL a/c, BA and Co Code ) and execute.
    For DSo you can't do selective deletion on request id basis

  • Work Order list report that will includes Damage and Cause codes

    Is there a WO list report that includes fields of the Damage and Cause Codes?
    Thanks.

    Hi,
    Generally damages and causes  we update in notifications then i think there wont be a list which u r asking
    For notification  the t-code is iw69

  • Hi, my MacBook Pro cannot open Safari. nexpectedly while using the librooksbas.dylib plug-in" the report details the exception code as 'EXC_BAD_ACCESS (SIGSEGV)' and exception codes as: 'KERN_INVALID_ADDRESS at 0x0000000920

    Hi, my MacBook Pro cannot open Safari. It crashes and gives the message, ' Safari quit unexpectedly while using the librooksbas.dylib plug-in" the report details the exception code as 'EXC_BAD_ACCESS (SIGSEGV)' and exception codes as: 'KERN_INVALID_ADDRESS at 0x0000000920

    Remove "Rapport" by following the instructions on this page.
    Back up all data before making any changes.

  • My phone does not show contact names for country and area code while having in coming calls. Although, I have endorsed the name with numbers. How do I the problem. My one is a iphone 3s device with updated os. Please text to help

    My iphone does not recognize saved contact number while having incoming calls due to country and area code as auto prefix. How do i fix the problem. How do i ensure that the phone recognize calls with and without the country and area code. Please text to help.

    1) Open the Phone and dial *228. This is a Verizon over-the-air programming number.
    2) When the system answer press 1 for "Program or activate your phone"
    3) Wait for the call to disconnect. You should get a prompt stating something like, "Settings updated."
    4) Open the Task Manager and kill the Phone, Message, and Contacts Applications
    5) Wait a few minutes (I waited 3 just to be extra safe)
    6) Open the Message App to verify the fix

  • I bought a new iphone and as i was setting my apple ID account and i signed in to my account and confirmed two useres with diffrent numbers that were signed to the same apple ID and it messed up my i messege and face time. how do i fix that ?

    i bought a new iphone and as i was setting my apple ID account and i signed in to my account and confirmed two useres with diffrent numbers that were signed to the same apple ID and it messed up my i messege and face time. how do i fix that or delete one user ?

    Hello sapiii96,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    To sign out of your Apple ID
    Go to Settings > FaceTime, tap your Apple ID, and select Sign Out.
    Go to Settings > Messages > Send & Receive, tap your Apple ID, and select Sign Out.
    Best of luck,
    Mario

  • I bought my iPad mini two weeks ago and used my apple ID to make it synch with my iPhone. But so far I have not been able to activate iMessage and face time. It only gives me the option of signing i

    I bought my iPad mini two weeks ago and used my apple ID to make it sync with my iPhone. But so far I have not been able to activate iMessage and face time. It only gives me the option of signing in and when I do that I get an error message telling me that either my user name or password for my email is incorrect; even though I have been using my correct my apple ID in the password entry area. My apple ID works for every thing else. Please, can you help in this case?

    Have a look here...
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    SHARING iTunes MUSIC
    http://macmost.com/five-ways-to-share-music-in-itunes.html
    Also... Create your Own Apple ID for Your iPhone...
    It should be Noted that anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    Apple ID FAQs  >  http://support.apple.com/kb/HT5622
    And... Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    See Here for  >  How to Use Multiple iDevices with One Computer
    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha

  • I have an iPhone and my 9 year old has an iPad, they are both linked to my Apple ID however I want his to be separate now so that we can send messages and face time. Any suggestions how I do this???

    I have an iPhone and my 9 year old has an iPad, they are both linked to my Apple ID however I want his to be separate now so that we can send messages and face time. Any suggestions how I do this???

    Thank you. I tried changing his id but it changed it on both devices:( Don't really have a clue:( I have set up an email account so that he can get an Apple ID.
    Do you by chance know how I do this?!?

Maybe you are looking for